:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.35);
    --accent: #c8a97e;
    --accent-light: #e8d5b5;
    --accent-glow: rgba(200, 169, 126, 0.3);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --gradient-accent: linear-gradient(135deg, #c8a97e, #a67c52);
    --gradient-dark: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,1) 100%);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-primary: 'Outfit', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-primary);
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: default;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--accent);
    color: var(--bg-primary);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

a {
    text-decoration: none;
    color: inherit;
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0;
    transition: opacity 1.8s ease, transform 4s ease;
    object-fit: cover;
}

.bg-video.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.bg-video.fade-out {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, 
            rgba(10,10,10,0.7) 0%, 
            rgba(10,10,10,0.4) 30%, 
            rgba(10,10,10,0.5) 70%, 
            rgba(10,10,10,0.95) 100%
        );
    z-index: 1;
}

.grain-overlay {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    z-index: 2;
    pointer-events: none;
    animation: grain 0.5s steps(1) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    mix-blend-mode: soft-light;
}

.cursor-glow.visible {
    opacity: 0.6;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.5s var(--ease-out-expo);
    backdrop-filter: blur(0px);
}

.nav.scrolled {
    padding: 16px 48px;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 10, 0.7);
    border-bottom: 1px solid var(--border);
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--accent);
    position: relative;
}

.nav-brand::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-brand:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 48px;
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    background: rgba(200, 169, 126, 0.05);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    margin-bottom: 32px;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--text-primary);
}

.title-accent {
    color: var(--accent); /* Fallback */
}

.title-accent .char {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.animated-title {
    font-size: clamp(2rem, 5vw, 4rem);
    min-height: 1.2em;
    position: relative;
    width: 100%;
}

.title-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    text-align: center;
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--text-primary);
    white-space: nowrap;
    text-transform: uppercase;
    opacity: 0;
}

.title-slide.active,
.title-slide.exiting {
    opacity: 1;
}

.title-slide .title-accent {
    margin: 0 12px;
    display: inline-block;
    vertical-align: top;
}

.char-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.char-wrap.space {
    width: 0.25em;
}

.char {
    display: inline-block;
    transform: translateY(120%);
    transition: none;
}

.title-slide.active .char {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.title-slide.exiting .char {
    transform: translateY(-120%);
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--gradient-accent);
    color: var(--bg-primary);
    border-radius: 100px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary svg {
    transition: transform 0.3s var(--ease-spring);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--accent);
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% { top: -50%; }
    100% { top: 100%; }
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.section {
    position: relative;
    z-index: 10;
    padding: 140px 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.section-header {
    margin-bottom: 80px;
    position: relative;
}

.section-tag {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.section-line {
    width: 60px;
    height: 2px;
    background: var(--gradient-accent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-lead {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.about-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.stat-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.5s var(--ease-out-expo);
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-percent,
.stat-ratio,
.stat-plus {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 48px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: rgba(200, 169, 126, 0.1);
    border: 1px solid rgba(200, 169, 126, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--accent);
    transition: all 0.4s var(--ease-out-expo);
}

.service-card:hover .service-icon {
    background: rgba(200, 169, 126, 0.15);
    transform: scale(1.05);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.marquee-section {
    position: relative;
    z-index: 10;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 48px;
    padding-right: 48px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--text-muted);
    white-space: nowrap;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover, .faq-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--text-primary);
    transition: transform 0.3s ease, background 0.3s ease;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::before {
    width: 14px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 14px;
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.social-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.social-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.5s var(--ease-out-expo);
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.social-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tiktok-card .social-card-bg {
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.08) 0%, rgba(0, 242, 234, 0.05) 100%);
}

.snap-card .social-card-bg {
    background: linear-gradient(135deg, rgba(255, 252, 0, 0.08) 0%, rgba(255, 200, 0, 0.05) 100%);
}

.social-card:hover .social-card-bg {
    opacity: 1;
}

.social-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.social-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-spring);
}

.tiktok-card .social-icon {
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.15), rgba(0, 242, 234, 0.1));
    color: #ff0050;
}

.snap-card .social-icon {
    background: linear-gradient(135deg, rgba(255, 252, 0, 0.15), rgba(255, 200, 0, 0.1));
    color: #FFFC00;
}

.social-card:hover .social-icon {
    transform: scale(1.08) rotate(-3deg);
}

.social-info {
    position: relative;
    z-index: 1;
    flex: 1;
}

.social-platform {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.social-handle {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.social-arrow {
    position: relative;
    z-index: 1;
    color: var(--text-muted);
    transition: all 0.4s var(--ease-spring);
}

.social-card:hover .social-arrow {
    color: var(--accent);
    transform: translate(4px, -4px);
}

.footer {
    position: relative;
    z-index: 10;
    padding: 48px;
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--accent);
}

.footer-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s var(--ease-out-expo);
    transition-delay: var(--delay, 0s);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 1s var(--ease-out-expo);
    transition-delay: var(--delay, 0s);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-width {
    width: 0;
    transition: width 1s var(--ease-out-expo);
    transition-delay: 0.3s;
}

.reveal-width.revealed {
    width: 60px;
}

.section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.15;
    pointer-events: none;
    filter: blur(60px);
}

.about::before {
    top: 10%;
    right: -5%;
}

.services::before {
    bottom: 10%;
    left: -5%;
}

.contact::before {
    top: 20%;
    right: 10%;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0 24px;
        padding-top: 80px;
    }

    .nav {
        padding: 16px 24px;
    }

    .nav.scrolled {
        padding: 12px 24px;
    }

    .nav-links {
        gap: 20px;
    }

    .section-container {
        padding: 0 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .social-cards {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .scroll-indicator {
        left: 24px;
        bottom: 24px;
    }

    .title-line {
        letter-spacing: -1px;
    }

    .title-slide {
        width: 100%;
        white-space: normal;
        padding: 0 16px;
    }

    .title-slide .title-accent {
        margin: 0 6px;
    }

    .animated-title {
        min-height: 2.5em;
    }

    .faq-question {
        padding: 16px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 16px 16px 16px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 0 16px;
        padding-top: 60px;
    }

    .section-container {
        padding: 0 16px;
    }

    .section {
        padding: 100px 0;
    }

    .social-card {
        padding: 24px;
        gap: 16px;
    }

    .social-icon {
        width: 56px;
        height: 56px;
    }

    .animated-title {
        min-height: 3em;
        font-size: clamp(1.5rem, 8vw, 2.5rem);
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
        margin-bottom: 24px;
    }
}
