/* =====================================================================
   RAYVEN XPERIENCE — Design System (Reference-Matched v3)
   Fonts: Manrope (body) + Barlow Condensed (display)
   Style: Sharp corners · Large uppercase headings · Left-aligned hero
   Motion: Full animation system retained from v2
   ===================================================================== */

/* ── RESET ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }

/* ── DESIGN TOKENS ──────────────────────────────────────────────────── */
:root {
    --gold:          #D4AF37;
    --gold-rgb:      212, 175, 55;
    --gold-light:    #F4E5A3;
    --gold-dark:     #B8941F;
    --ink:           #050505;
    --ink-rgb:       5, 5, 5;
    --ink-2:         #0a0a0a;
    --ink-3:         #111111;
    --surface:       rgba(255,255,255,0.04);
    --border:        rgba(255,255,255,0.08);
    --text-main:     #ffffff;
    --text-muted:    rgba(255,255,255,0.50);
    --text-dim:      rgba(255,255,255,0.25);
    --nav-h:         68px;
    --container:     1440px;
    --font-body:     'Manrope', system-ui, sans-serif;
    --font-primary:  'Manrope', system-ui, sans-serif;
    --font-display:  'Barlow Condensed', sans-serif;
    --radius-sm:     3px;
    --radius:        4px;
    --radius-lg:     6px;
    --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── BASE BODY ──────────────────────────────────────────────────────── */
body {
    background: var(--ink);
    color: var(--text-main);
    font-family: var(--font-primary, var(--font-body, 'Manrope', sans-serif));
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────── */
.font-display {
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -0.01em;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
}

/* ── UTILITY ────────────────────────────────────────────────────────── */
.gold-text { color: var(--gold); }
.gold-gradient { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.dim { color: rgba(255,255,255,0.3); }

.glass {
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 4.5rem 1.5rem;
}
@media (min-width: 768px) {
    .section-padding {
        padding: 5.5rem 2.5rem;
    }
}

/* ── BUTTONS ────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, background 0.25s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn:active { transform: scale(0.98) !important; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    font-weight: 700;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(var(--gold-rgb), 0.35);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    background: transparent;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-gold-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
}
.btn-gold-outline:hover {
    background: var(--gold);
    color: #000;
}

/* ── SCROLL PROGRESS ────────────────────────────────────────────────── */
#scroll-progress {
    position: fixed; top: 0; left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    z-index: 9999; width: 0%;
    box-shadow: 0 0 10px rgba(var(--gold-rgb), 0.5);
    transition: width 0.12s linear;
}

/* ── CUSTOM CURSOR ──────────────────────────────────────────────────── */
#cursor-dot {
    position: fixed; top: 0; left: 0;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    pointer-events: none; z-index: 10001;
    will-change: transform;
}
#cursor-ring {
    position: fixed; top: 0; left: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(var(--gold-rgb), 0.55);
    pointer-events: none; z-index: 10000;
    transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), opacity 0.3s;
    will-change: transform;
    opacity: 0.65;
}
#cursor-ring.is-hover {
    width: 54px; height: 54px;
    opacity: 0.4;
    border-color: rgba(var(--gold-rgb), 0.3);
}
#cursor-ring.is-down { transform: scale(0.8) !important; }
@media (hover: none) { #cursor-dot, #cursor-ring { display: none; } }

/* ── PAGE VEIL ──────────────────────────────────────────────────────── */
#page-veil {
    position: fixed; inset: 0;
    background: var(--ink);
    z-index: 8000; opacity: 0; pointer-events: none;
}
#page-veil.active { pointer-events: all; }

/* ── LOADER ─────────────────────────────────────────────────────────── */
#loader {
    position: fixed; inset: 0;
    background: var(--ink);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}
#loader.out { opacity: 0; pointer-events: none; }

.loader-inner {
    display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.loader-lockup { display: flex; align-items: center; gap: 12px; }
.loader-mark {
    width: 46px; height: 46px;
    background: linear-gradient(145deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body);
    font-size: 1.2rem; font-weight: 900; color: #000;
    letter-spacing: 0.04em;
    box-shadow: 0 0 30px rgba(var(--gold-rgb), 0.3);
    animation: loaderPulse 2s ease-in-out infinite;
}
@keyframes loaderPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(var(--gold-rgb), 0.25); }
    50% { box-shadow: 0 0 40px rgba(var(--gold-rgb), 0.55); }
}
.loader-text { display: flex; flex-direction: column; }
.loader-text-top {
    font-family: var(--font-body);
    font-size: 1.1rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase; color: #fff;
    line-height: 1;
}
.loader-text-div {
    display: block; height: 1px; width: 100%;
    background: linear-gradient(90deg, rgba(var(--gold-rgb), 0.7) 0%, transparent 100%);
    margin: 4px 0;
}
.loader-text-sub {
    font-family: var(--font-body);
    font-size: 0.65rem; font-weight: 300;
    letter-spacing: 0.42em; text-transform: uppercase;
    color: rgba(255,255,255,0.45); line-height: 1;
}
.loader-bar {
    width: 110px; height: 2px;
    background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden;
}
.loader-bar-fill {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    border-radius: 2px;
    animation: loadFill 1.4s ease forwards;
}
@keyframes loadFill { to { width: 100%; } }

/* ── ANNOUNCEMENT BAR ───────────────────────────────────────────────── */
#announcement-bar:not(:empty) {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    background-size: 200%;
    animation: shimmerBar 4s linear infinite;
    color: #000;
    font-size: 0.78rem; font-weight: 700;
    text-align: center; padding: 0.5rem 1rem;
    position: relative; z-index: 60; letter-spacing: 0.04em;
}
@keyframes shimmerBar {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* ── NAVBAR ─────────────────────────────────────────────────────────── */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 2rem;
    transition: all 0.4s ease;
    background: rgba(var(--ink-rgb), 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
#navbar.scrolled {
    background: rgba(var(--ink-rgb), 0.95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
    max-width: var(--container); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: var(--nav-h); gap: 2rem;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.nav-logo-mark {
    width: 36px; height: 36px;
    background: linear-gradient(145deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body);
    font-size: 0.95rem; font-weight: 900; color: #000;
    letter-spacing: 0.04em;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 3px 12px rgba(var(--gold-rgb), 0.25);
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.nav-logo:hover .nav-logo-mark {
    transform: scale(1.06);
    box-shadow: 0 5px 18px rgba(var(--gold-rgb), 0.4);
}
.nav-wordmark { display: flex; flex-direction: column; justify-content: center; }
.nav-wordmark-top {
    font-family: var(--font-body);
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: #fff; line-height: 1;
}
.nav-wordmark-divider {
    display: block; width: 100%; height: 1px;
    background: linear-gradient(90deg, rgba(var(--gold-rgb), 0.6) 0%, transparent 100%);
    margin: 3px 0;
}
.nav-wordmark-sub {
    font-family: var(--font-body);
    font-size: 0.58rem; font-weight: 300;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); line-height: 1;
}
#nav-links {
    display: flex; align-items: center; gap: 1.6rem;
    flex: 1; justify-content: center;
}
.nav-link {
    font-family: var(--font-body);
    font-size: 16px; font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.72);
    transition: color 0.25s;
    position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.35s var(--ease-out);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }

#nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

#mobile-menu-btn {
    display: none; background: none; border: none; color: #fff; cursor: pointer;
    padding: 6px;
    transition: color 0.2s;
}
#mobile-menu-btn:hover { color: var(--gold); }

#mobile-menu {
    display: none;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(5,5,5,0.98);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 2rem 2rem;
    animation: slideDown 0.35s var(--ease-out);
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
#mobile-menu.open { display: block; }
#mobile-nav-links {
    display: flex; flex-direction: column; gap: 0;
}
#mobile-nav-links a {
    font-size: 0.95rem; font-weight: 500;
    color: rgba(255,255,255,0.8);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: space-between;
    transition: color 0.25s;
}
#mobile-nav-links a:hover { color: var(--gold); }
.mobile-cta { margin-top: 1.5rem; }

/* ── HERO ───────────────────────────────────────────────────────────── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
}
#hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    will-change: transform;
}
#hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85) contrast(1.05);
}
#hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: 
        linear-gradient(to right, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.65) 45%, rgba(5,5,5,0.25) 100%),
        linear-gradient(to bottom, rgba(5,5,5,0.35) 0%, rgba(5,5,5,0.85) 100%);
}
.hero-content {
    position: relative;
    z-index: 10;
    max-width: var(--container);
    margin: 0 auto;
    padding: calc(var(--nav-h) + 60px) 2rem 100px;
    width: 100%;
}
.hero-eyebrow {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.eyebrow-spark {
    color: var(--gold);
    font-size: 0.85rem;
}
.hero-heading {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7.5vw, 5.8rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.0;
    letter-spacing: -0.01em;
    max-width: 820px;
    margin-bottom: 1.25rem;
    color: #ffffff;
}
.hero-heading .gold-text, .hero-heading span.gold-text {
    color: var(--gold) !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}
.hero-accent-bar {
    width: 120px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 1.75rem;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(var(--gold-rgb), 0.5);
}
.hero-sub {
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    color: rgba(255,255,255,0.72);
    max-width: 500px;
    line-height: 1.65;
    margin-bottom: 2.25rem;
    font-weight: 400;
}
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.hero-btns .btn-gold {
    background: var(--gold);
    color: #000000;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 4px;
}
.hero-btns .btn-outline {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.25);
    color: #ffffff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 4px;
}
.hero-play {
    position: absolute;
    bottom: 3.5rem;
    right: 4rem;
    z-index: 10;
}
.play-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    transition: all 0.35s var(--ease-out);
    cursor: pointer;
}
.play-ring:hover {
    border-color: var(--gold);
    background: rgba(var(--gold-rgb), 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(var(--gold-rgb), 0.4);
}
.play-ring:hover svg { color: var(--gold); }

/* ── CLIENTS MARQUEE ────────────────────────────────────────────────── */
#clients {
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    background: rgba(0,0,0,0.3);
    overflow: hidden;
}
.clients-label {
    text-align: center; margin-bottom: 1.25rem;
}
.marquee-wrap { overflow: hidden; }
.marquee-track {
    display: flex; gap: 0;
    animation: marquee 30s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
    flex-shrink: 0; padding: 0 2.5rem;
    display: flex; align-items: center; justify-content: center;
    height: 44px; opacity: 0.5;
    transition: opacity 0.35s, transform 0.3s;
}
.marquee-item:hover { opacity: 1; transform: scale(1.05); }
.marquee-item img {
    height: 24px; width: auto; object-fit: contain;
    filter: brightness(0) invert(1);
}
.marquee-item span {
    font-family: var(--font-display);
    font-size: 1.0rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ── STATS ──────────────────────────────────────────────────────────── */
#stats {
    padding: 1.5rem 1.5rem;
    background: var(--ink-2);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
    max-width: 1280px; margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}
.stat-item {
    flex: 1;
    text-align: center;
    padding: 0.25rem 0.5rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    position: relative;
    cursor: default;
    transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.02); }
.stat-item::after {
    content: '';
    position: absolute; bottom: -1px; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: transform 0.4s var(--ease-out);
}
.stat-item:hover::after { transform: translateX(-50%) scaleX(1); }
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.1vw, 2.1rem);
    font-weight: 800; line-height: 1;
    color: var(--gold); display: block;
    letter-spacing: -0.01em;
}
.stat-divider {
    display: block; width: 16px; height: 1px;
    background: var(--gold); margin: 0.3rem auto; opacity: 0.4;
    transition: width 0.3s, opacity 0.3s;
}
.stat-item:hover .stat-divider { width: 28px; opacity: 0.8; }
.stat-label {
    font-size: 0.525rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(255,255,255,0.45);
    font-weight: 600;
    white-space: nowrap;
}

/* ── SERVICES SECTION ────────────────────────────────────────────────── */
#services {
    padding: 6rem 0;
    overflow: hidden;
    background: var(--ink);
    position: relative;
}
.services-header {
    max-width: var(--container); margin: 0 auto 2.5rem; padding: 0 2rem;
}
.services-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800; text-transform: uppercase; line-height: 0.93;
    margin-top: 0.6rem;
    letter-spacing: -0.01em;
}
.services-heading .dim { color: rgba(255,255,255,0.3); }
.services-track-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}
.services-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    width: 100%;
}
@media (max-width: 1200px) {
    .services-track { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .services-track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .services-track { grid-template-columns: 1fr; }
}
.service-card {
    width: 100%;
    position: relative; overflow: hidden; border-radius: var(--radius-lg);
    cursor: pointer;
    transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s, border-color 0.4s;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.5);
    border-color: rgba(var(--gold-rgb), 0.35);
}
.service-card-img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover;
    transition: transform 0.7s var(--ease-smooth);
    display: block;
}
.service-card:hover .service-card-img { transform: scale(1.08); }
.service-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.3) 55%, transparent 100%);
}
.service-card-body {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem; z-index: 2;
}
.service-card-icon {
    width: 34px; height: 34px; border-radius: 6px;
    background: rgba(var(--gold-rgb), 0.15);
    border: 1px solid rgba(var(--gold-rgb), 0.3);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.75rem;
    transition: background 0.3s, transform 0.3s var(--ease-spring);
}
.service-card-icon svg { width: 16px; height: 16px; color: var(--gold); }
.service-card:hover .service-card-icon {
    background: rgba(var(--gold-rgb), 0.3);
    transform: scale(1.1);
}
.service-card-title {
    font-family: var(--font-display);
    font-size: 0.85rem; font-weight: 800;
    letter-spacing: 0.04em; text-transform: uppercase;
    color: #fff; line-height: 1.25;
}

/* ── PROJECTS CAROUSEL ──────────────────────────────────────────────── */
#projects {
    padding: 6.5rem 0;
    background: var(--ink-2);
}
.projects-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.projects-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 1rem; margin-bottom: 2.5rem;
}
.projects-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800; text-transform: uppercase; line-height: 0.93;
    margin-top: 0.6rem; letter-spacing: -0.01em;
}
.projects-heading .dim { color: rgba(255,255,255,0.3); }
.projects-arrows { display: flex; gap: 8px; flex-shrink: 0; margin-bottom: 0.25rem; }
.arr-btn {
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    background: transparent;
    display: flex; align-items: center; justify-content: center;
    color: #fff; cursor: pointer;
    transition: all 0.3s var(--ease-out);
}
.arr-btn:hover, .arr-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: transparent; color: #000;
    transform: scale(1.08);
}
.projects-overflow { overflow: hidden; }
.projects-track {
    display: flex; gap: 18px;
    transition: transform 0.7s var(--ease-smooth);
}
.project-card {
    flex-shrink: 0; width: clamp(300px, 40vw, 520px);
    border-radius: var(--radius-lg); overflow: hidden; position: relative;
    cursor: pointer;
    transition: box-shadow 0.4s, transform 0.4s var(--ease-out);
}
.project-card:hover {
    box-shadow: 0 30px 70px rgba(0,0,0,0.5);
    transform: translateY(-4px);
}
.project-card-img {
    width: 100%; aspect-ratio: 16/10; object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease-smooth);
}
.project-card:hover .project-card-img { transform: scale(1.05); }
.project-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 55%);
}
.project-card-body {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 1.4rem;
}
.project-client {
    font-size: 0.575rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 0.35rem; display: block;
}
.project-category {
    font-size: 0.525rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.14);
    padding: 2px 8px; border-radius: 100px;
    float: right; margin-top: -18px;
}
.project-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; text-transform: uppercase;
    line-height: 1.0; margin-bottom: 0.5rem; clear: both;
    letter-spacing: -0.01em;
}
.project-desc {
    font-size: 0.72rem; color: rgba(255,255,255,0.5); line-height: 1.5;
    margin-bottom: 0.65rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.project-meta { display: flex; gap: 1rem; align-items: center; }
.project-meta-item {
    display: flex; align-items: center; gap: 4px;
    font-size: 0.685rem; color: rgba(255,255,255,0.4);
}
.project-meta-item svg { width: 11px; height: 11px; }
.project-dots { display: flex; gap: 6px; justify-content: center; margin-top: 1.75rem; }
.proj-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: rgba(255,255,255,0.18); border: none; cursor: pointer;
    transition: all 0.35s var(--ease-out); padding: 0;
}
.proj-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

/* ── VIDEO REEL ─────────────────────────────────────────────────────── */
#video-reel {
    position: relative; padding: 8rem 2rem;
    overflow: hidden;
}
#video-reel-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    will-change: transform;
}
#video-reel-overlay {
    position: absolute; inset: 0;
    background: rgba(5,5,5,0.6);
}
.video-reel-content {
    position: relative; z-index: 10;
    text-align: center;
}
.video-reel-label {
    font-size: 0.625rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: rgba(255,255,255,0.6);
    margin-top: 1.25rem;
}

/* ── PROCESS ────────────────────────────────────────────────────────── */
#process { padding: 6.5rem 2rem; background: var(--ink-2); }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 4rem; }
.process-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800; text-transform: uppercase; margin-top: 0.6rem;
    letter-spacing: -0.01em;
}
.process-steps {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 0; position: relative;
}
.process-connector {
    position: absolute; top: 29px; left: 0; right: 0; height: 1px;
    display: flex; align-items: center;
    padding: 0 10%; z-index: 0;
}
.process-connector-line {
    flex: 1; height: 1px;
    background: repeating-linear-gradient(90deg,
        rgba(var(--gold-rgb),0.3) 0px, rgba(var(--gold-rgb),0.3) 4px,
        transparent 4px, transparent 10px);
}
.process-step {
    text-align: center; position: relative; z-index: 1; padding: 0 0.75rem;
    transition: transform 0.35s var(--ease-out);
}
.process-step:hover { transform: translateY(-6px); }
.step-icon-wrap {
    width: 58px; height: 58px; margin: 0 auto 1rem;
    border-radius: 50%;
    border: 1px solid rgba(var(--gold-rgb), 0.3);
    background: rgba(var(--gold-rgb), 0.07);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s, border-color 0.3s, transform 0.4s var(--ease-spring);
}
.step-icon-wrap svg { width: 22px; height: 22px; color: var(--gold); }
.process-step:hover .step-icon-wrap {
    background: rgba(var(--gold-rgb), 0.15);
    border-color: rgba(var(--gold-rgb), 0.55);
    transform: scale(1.1) rotate(5deg);
}
.step-num {
    font-size: 0.525rem; letter-spacing: 0.14em;
    color: rgba(255,255,255,0.28); margin-bottom: 0.35rem; display: block;
}
.step-title {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    margin-bottom: 0.5rem; color: #fff;
}
.step-desc { font-size: 0.72rem; color: rgba(255,255,255,0.42); line-height: 1.55; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.rx-float { animation: float 4.5s ease-in-out infinite; }

/* ── GALLERY ────────────────────────────────────────────────────────── */
#gallery { padding: 0; }
.gallery-header {
    max-width: var(--container); margin: 0 auto; padding: 3.5rem 2rem 1.75rem;
    display: flex; align-items: center; justify-content: space-between;
}
.gallery-title {
    font-size: 0.575rem; letter-spacing: 0.26em;
    text-transform: uppercase; color: rgba(255,255,255,0.4);
}
.gallery-ig {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.72rem; font-weight: 500;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
    padding: 0.4rem 0.85rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
}
.gallery-ig:hover { color: var(--gold); border-color: rgba(var(--gold-rgb), 0.3); }
.gallery-track {
    display: flex; gap: 3px; padding: 0;
    overflow-x: auto; scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
    flex-shrink: 0;
    width: calc((100vw - 24px) / 8);
    min-width: 120px;
    aspect-ratio: 1/1;
    overflow: hidden; cursor: pointer; position: relative;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease-smooth); display: block;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0); transition: background 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.4); }
.gallery-item-overlay svg { opacity: 0; transition: opacity 0.3s, transform 0.35s var(--ease-spring); transform: scale(0.8); color: #fff; }
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; transform: scale(1); }

/* ── TESTIMONIALS ───────────────────────────────────────────────────── */
.testimonials-inner { max-width: var(--container); margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-heading {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800; color: #fff;
    text-transform: uppercase; letter-spacing: -0.01em; margin-top: 0.6rem;
}
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
    padding: 2.25rem; border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 1.25rem;
    transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
    position: relative; overflow: hidden;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute; top: 0.75rem; right: 1.25rem;
    font-family: Georgia, serif; font-size: 5rem;
    color: rgba(var(--gold-rgb), 0.05); line-height: 1; pointer-events: none;
}
.testimonial-card:hover {
    border-color: rgba(var(--gold-rgb), 0.3);
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.05em; }
.testimonial-quote {
    font-size: 0.875rem; color: var(--text-muted);
    line-height: 1.75; flex: 1; font-style: italic;
}
.testimonial-author {
    display: flex; align-items: center; gap: 0.75rem;
    padding-top: 1rem; border-top: 1px solid var(--border);
}
.testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    object-fit: cover; border: 1.5px solid rgba(var(--gold-rgb), 0.3);
    transition: border-color 0.3s;
}
.testimonial-card:hover .testimonial-avatar { border-color: var(--gold); }
.testimonial-name { font-size: 0.875rem; font-weight: 700; color: #fff; }
.testimonial-role { font-size: 0.72rem; color: var(--gold); margin-top: 2px; }

/* ── CTA ────────────────────────────────────────────────────────────── */
#cta { padding: 7rem 2rem; position: relative; overflow: hidden; }
#cta-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center; opacity: 0.14;
    will-change: transform;
}
#cta-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(110deg, var(--ink) 35%, rgba(5,5,5,0.75) 100%);
}
.cta-inner {
    max-width: var(--container); margin: 0 auto;
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: space-between;
    gap: 3rem; flex-wrap: wrap;
}
.cta-heading {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900; text-transform: uppercase;
    line-height: 0.93; letter-spacing: -0.01em;
}
.cta-heading .gold-text { color: var(--gold); font-style: italic; }
.cta-btn-wrap { display: flex; flex-direction: column; gap: 10px; }

/* ── FOOTER ─────────────────────────────────────────────────────────── */
#footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 4rem 2rem 2rem;
    background: #000;
    position: relative;
}
#footer::before {
    content: '';
    position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.3), transparent);
}
.footer-grid {
    max-width: var(--container); margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-logo {
    display: flex; align-items: center; gap: 10px; margin-bottom: 1.1rem;
}
.footer-brand-mark {
    width: 32px; height: 32px; border-radius: 4px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body);
    font-size: 0.85rem; font-weight: 900; color: #000;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.footer-brand-logo:hover .footer-brand-mark {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(var(--gold-rgb), 0.35);
}
.footer-brand-name {
    font-family: var(--font-body);
    font-size: 1.0rem; font-weight: 800; letter-spacing: 0.06em;
    text-transform: uppercase; color: #fff;
}
.footer-subsidiary {
    font-size: 0.68rem; color: rgba(255,255,255,0.32);
    margin-bottom: 1.25rem; line-height: 1.5;
}
.footer-desc {
    font-size: 0.78rem; color: rgba(255,255,255,0.4);
    line-height: 1.7; max-width: 300px; margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4);
    transition: all 0.35s var(--ease-spring);
}
.footer-social a:hover {
    border-color: var(--gold); color: var(--gold);
    background: rgba(var(--gold-rgb), 0.08);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 16px rgba(var(--gold-rgb), 0.2);
}
.footer-social a svg { width: 13px; height: 13px; }
.footer-col-title {
    font-size: 0.575rem; font-weight: 700; letter-spacing: 0.22em;
    text-transform: uppercase; color: #fff; margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
    font-size: 0.8rem; color: rgba(255,255,255,0.42);
    transition: color 0.25s, transform 0.25s; display: inline-block;
}
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 0.8rem; color: rgba(255,255,255,0.42);
}
.footer-contact svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
    max-width: var(--container); margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.22); }

/* ── LIGHTBOX ───────────────────────────────────────────────────────── */
#lightbox {
    position: fixed; inset: 0; z-index: 9000;
    background: rgba(0,0,0,0.95);
    display: none; align-items: center; justify-content: center;
    padding: 2rem;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
#lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: none; border: none; color: rgba(255,255,255,0.6);
    cursor: pointer; transition: color 0.2s;
}
#lightbox-close:hover { color: #fff; }
#lightbox-close svg { width: 30px; height: 30px; }

/* ── VIDEO MODAL ────────────────────────────────────────────────────── */
#video-modal {
    position: fixed; inset: 0; z-index: 9001;
    background: rgba(0,0,0,0.96);
    display: none; align-items: center; justify-content: center;
    padding: 2rem;
}
#video-modal.open { display: flex; }
.video-modal-inner { width: 100%; max-width: 1000px; position: relative; }
.video-modal-close {
    position: absolute; top: -2.5rem; right: 0;
    background: none; border: none; color: rgba(255,255,255,0.6);
    cursor: pointer; transition: color 0.2s;
}
.video-modal-close:hover { color: #fff; }
.video-modal-close svg { width: 28px; height: 28px; }
.video-modal-frame { aspect-ratio: 16/9; width: 100%; }
.video-modal-frame iframe { width: 100%; height: 100%; border: none; border-radius: var(--radius); }

/* ── PROJECT MODAL ─────────────────────────────────────────────────── */
#project-modal {
    position: fixed; inset: 0; z-index: 9002;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: none; align-items: center; justify-content: center;
    padding: 2rem;
}
#project-modal.open { display: flex; }
.project-modal-inner {
    width: 100%; max-width: 860px; max-height: 90vh;
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative; overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}
.project-modal-close {
    position: absolute; top: 1.25rem; right: 1.25rem; z-index: 20;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(0,0,0,0.7); border: 1px solid rgba(255,255,255,0.15);
    color: #fff; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s;
}
.project-modal-close:hover { border-color: var(--gold); color: var(--gold); background: rgba(var(--gold-rgb), 0.15); }

/* ── TOAST ──────────────────────────────────────────────────────────── */
#toast {
    position: fixed; bottom: 2.25rem; right: 2.25rem;
    z-index: 9500; max-width: 380px;
    padding: 1.1rem 1.6rem;
    border-radius: var(--radius-lg); font-size: 0.875rem; font-weight: 500;
    color: #fff; background: var(--ink-3);
    border: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    transform: translateY(140%); opacity: 0;
    transition: transform 0.5s var(--ease-spring), opacity 0.35s;
}
#toast.show { transform: translateY(0); opacity: 1; }
#toast.success { border-color: #22c55e; }
#toast.error   { border-color: #ef4444; }

/* ── ANIMATIONS ─────────────────────────────────────────────────────── */
.rx-fade { opacity: 0; transform: translateY(32px); }
.rx-lift {
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.rx-lift:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }

/* ── SCROLLBAR ──────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink-2); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ── SELECTION ──────────────────────────────────────────────────────── */
::selection { background: rgba(var(--gold-rgb), 0.25); color: #fff; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 2rem; }
}
@media (max-width: 1024px) {
    .process-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .process-connector { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
    .service-row { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem 0; }
    .stat-item { border-right: 1px solid rgba(255,255,255,0.08); padding: 0.5rem 0.25rem; }
    .stat-item:nth-child(3n), .stat-item:last-child { border-right: none; }
    .stat-label { white-space: normal; }
    #nav-links, #nav-cta { display: none !important; }
    #mobile-menu-btn { display: block !important; }
    .hero-play { bottom: 2rem; right: 1.5rem; }
    .hero-play .play-ring { width: 56px; height: 56px; }
    .projects-header { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .gallery-item { width: calc((100vw - 9px) / 4); min-width: 90px; }
}
@media (max-width: 480px) {
    #navbar { padding: 0 1rem; }
    .hero-content { padding-left: 1rem; padding-right: 1rem; }
    .services-header, .projects-inner { padding: 0 1rem; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .gallery-item { width: calc((100vw - 6px) / 3); }
    .cta-heading { font-size: 2.5rem; }
}

/* ── BLOG ───────────────────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem; margin-top: 2rem;
}
.blog-card {
    display: flex; flex-direction: column; height: 100%;
    border-radius: var(--radius-lg); overflow: hidden;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
    border: 1px solid var(--border); background: rgba(255,255,255,0.02);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 15px 35px rgba(0,0,0,0.4); }
.blog-card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-body {
    padding: 1.5rem; flex: 1;
    display: flex; flex-direction: column; justify-content: space-between;
    background: rgba(var(--ink-rgb), 0.3);
}
.blog-post-header { margin-bottom: 2rem; text-align: left; }
.blog-post-meta { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-size: 13px; }
.blog-post-body { font-size: 18px; line-height: 1.8; color: var(--text-muted); }
.blog-post-body h2 {
    font-family: var(--font-display); font-size: 32px; font-weight: 700;
    margin: 2rem 0 1rem; color: #fff; text-transform: uppercase;
}
.blog-post-body p { margin-bottom: 1.5rem; }
.blog-post-body blockquote {
    border-left: 3px solid var(--gold); padding-left: 1.5rem;
    margin: 2rem 0; font-style: italic; color: #fff;
}

.glass {
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: border-color 0.3s ease, box-shadow 0.35s ease, transform 0.35s var(--ease-out);
}
.glass:hover {
    border-color: rgba(var(--gold-rgb), 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(var(--gold-rgb), 0.08);
}

/* Custom Sleek Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #050505;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(212,175,55,0.7), rgba(184,148,31,0.85));
    border-radius: 4px;
    border: 2px solid #050505;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Gold Sweep Micro-interaction on Primary Buttons */
.btn-gold::after {
    content: '';
    position: absolute;
    top: -50%; left: -60%;
    width: 50%; height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: rotate(25deg);
    transition: left 0.65s var(--ease-out);
}
.btn-gold:hover::after {
    left: 130%;
}

/* FAQ Accordion & Timeline Extensions */
.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
}
.faq-accordion-item.active .faq-accordion-content {
    max-height: 400px;
    opacity: 1;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-accordion-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--gold);
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.animate-float {
    animation: floatSlow 5s ease-in-out infinite;
}
