/* ============================================
   THE OFFBEAT STORY — Premium Design System
   Dark · Futuristic · Unforgettable
   ============================================ */

/* ----- Variables ----- */
:root {
    --bg: #06060e;
    --bg2: #0a0a16;
    --bg3: #0f0f1e;
    --surface: #141428;
    --card: #18182e;
    --card-hover: #1e1e3a;

    --gold: #f0c040;
    --gold-light: #ffe06b;
    --gold-dark: #c49a20;
    --blue: #3a5fff;
    --blue-light: #6b8aff;
    --purple: #a67edf;
    --purple-light: #c4a6f0;

    --text: #ebe8f0;
    --text2: #959aaa;
    --text3: #5a5e70;

    --border: rgba(255, 255, 255, 0.05);
    --glow: rgba(240, 192, 64, 0.15);

    --font-h: 'Outfit', sans-serif;
    --font-b: 'Inter', sans-serif;
    --font-m: 'Space Mono', monospace;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

/* ----- Light Mode Overrides ----- */
[data-theme="light"] {
    --bg: #f8f9fa;
    --bg2: #ffffff;
    --bg3: #f1f3f5;
    --surface: #e9ecef;
    --card: #ffffff;
    --card-hover: #f8f9fa;

    --gold: #d4a017;
    --gold-light: #f0c040;
    --gold-dark: #b8860b;
    --blue: #2b50d9;
    --blue-light: #4c6ef5;
    --purple: #8e5bd9;
    --purple-light: #a67edf;

    --text: #111118;
    --text2: #495057;
    --text3: #6c757d;

    --border: rgba(0, 0, 0, 0.08);
    --glow: rgba(212, 160, 23, 0.15);
}

/* ----- Reset ----- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

ul {
    list-style: none;
}

button,
input,
textarea,
select {
    cursor: none;
}

::selection {
    background: rgba(240, 192, 64, 0.25);
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s, opacity 0.3s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(240, 192, 64, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s, opacity 0.3s;
    transform: translate(-50%, -50%);
}

body.cursor-hover .cursor-dot {
    width: 60px;
    height: 60px;
    background: rgba(240, 192, 64, 0.12);
    mix-blend-mode: normal;
}

body.cursor-hover .cursor-ring {
    width: 64px;
    height: 64px;
    border-color: var(--gold);
    opacity: 0.6;
}

/* ============================================
   GRAIN OVERLAY
   ============================================ */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    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)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px;
    animation: grainShift 0.5s steps(4) infinite;
}

@keyframes grainShift {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-2px, 2px);
    }

    50% {
        transform: translate(2px, -2px);
    }

    75% {
        transform: translate(-1px, -1px);
    }

    100% {
        transform: translate(1px, 1px);
    }
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.preloader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-h);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.pl-the {
    color: var(--text3);
    font-size: 0.8rem;
    letter-spacing: 5px;
    font-weight: 500;
}

.pl-offbeat {
    color: var(--gold);
}

.pl-story {
    color: var(--text);
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 16px;
}

.preloader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--blue-light));
    border-radius: 2px;
    transition: width 0.1s linear;
}

.preloader-percent {
    font-family: var(--font-m);
    font-size: 0.8rem;
    color: var(--text3);
    letter-spacing: 2px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(6, 6, 14, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
}

.logo-the {
    color: var(--text3);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 4px;
}

.logo-offbeat {
    color: var(--gold);
}

.logo-story {
    color: var(--text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text2);
    border-radius: 50px;
    transition: all 0.3s var(--ease);
    position: relative;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: #0a0a0f !important;
    font-weight: 700 !important;
    padding: 10px 28px !important;
}

.nav-cta:hover {
    box-shadow: 0 4px 24px rgba(240, 192, 64, 0.35);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--text);
    border-radius: 4px;
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* ============================================
   TEXT UTILITIES
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-m);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--gold);
    transform: translateY(-50%);
}

.section-title {
    font-family: var(--font-h);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 60px;
    font-family: var(--font-b);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
    display: flex;
    transition: transform 0.3s var(--ease);
}

.btn-bg {
    position: absolute;
    inset: 0;
    border-radius: 60px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a0f;
    box-shadow: 0 4px 30px rgba(240, 192, 64, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 8px 40px rgba(240, 192, 64, 0.4);
    transform: translateY(-3px);
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 30px rgba(240, 192, 64, 0.08);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

#globalCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}



.hero-gradient-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(240, 192, 64, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 80% 70%, rgba(58, 95, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(166, 126, 223, 0.06) 0%, transparent 50%);
    animation: meshShift 12s ease-in-out infinite alternate;
}

@keyframes meshShift {
    0% {
        filter: hue-rotate(0deg);
        opacity: 1;
    }

    50% {
        filter: hue-rotate(15deg);
        opacity: 0.8;
    }

    100% {
        filter: hue-rotate(-10deg);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 960px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(240, 192, 64, 0.15);
    background: rgba(240, 192, 64, 0.04);
    font-family: var(--font-m);
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(240, 192, 64, 0.5);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(240, 192, 64, 0);
    }
}

.hero-title {
    font-family: var(--font-h);
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    transition: all 0.4s var(--ease);
}

.title-gold {
    color: var(--gold);
    text-shadow: 0 0 60px rgba(240, 192, 64, 0.3);
}

.title-glow {
    background: linear-gradient(135deg, var(--blue-light), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(107, 138, 255, 0.3));
}

.hero-tagline {
    font-family: var(--font-h);
    font-size: 1.25rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.hero-sub {
    font-size: 1.08rem;
    color: var(--text2);
    max-width: 620px;
    margin: 0 auto 44px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.scroll-text {
    font-family: var(--font-m);
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: var(--text3);
    writing-mode: vertical-lr;
}

.scroll-line-wrap {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.scroll-line-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(100%);
    }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--bg2);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-track-reverse {
    animation: marqueeScrollReverse 35s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.marquee-content span {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text2);
    white-space: nowrap;
    padding: 0 20px;
    transition: color 0.3s;
}

.marquee-dot {
    font-size: 0.5rem !important;
    color: var(--gold) !important;
    padding: 0 8px !important;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeScrollReverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ============================================
   THEME TOGGLE
   ============================================ */
.theme-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s var(--ease);
    margin-left: 12px;
}

[data-theme="light"] .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
}

.theme-toggle:hover {
    background: var(--surface);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.theme-toggle .icon-sun {
    display: none;
}

.theme-toggle .icon-moon {
    display: block;
}

[data-theme="light"] .theme-toggle .icon-sun {
    display: block;
}

[data-theme="light"] .theme-toggle .icon-moon {
    display: none;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 500px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(150%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s var(--ease-out);
}

[data-theme="light"] .cookie-banner {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-icon {
    font-size: 1.5rem;
}

.cookie-title {
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text2);
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.cookie-btn {
    flex: 1;
    padding: 10px 0;
    border-radius: 8px;
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease);
}

.cookie-accept {
    background: var(--gold);
    color: #000;
    border: none;
}

.cookie-accept:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.cookie-reject {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.cookie-reject:hover {
    background: var(--surface);
    border-color: var(--text3);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        max-width: none;
    }
}


/* ============================================
   CLIENTS MARQUEE
   ============================================ */
.clients-section {
    padding: 120px 0;
    background: var(--bg);
}

.clients-marquee {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.clients-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.client-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 40px;
    font-family: var(--font-h);
    font-weight: 600;
    color: var(--text2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.client-card:hover {
    transform: translateY(-5px);
    color: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(240, 192, 64, 0.1);
}

.clients-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text3);
    font-size: 0.9rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 120px 0;
    background: var(--bg2);
}

.testimonials-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s var(--ease);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .testimonial-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(240, 192, 64, 0.4);
    box-shadow: 0 20px 50px rgba(240, 192, 64, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 24px;
    right: 32px;
    font-family: var(--font-h);
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-h);
    font-weight: 700;
    color: #000;
    font-size: 1.2rem;
}

.author-info h4 {
    font-family: var(--font-h);
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text2);
}

@media (max-width: 768px) {

    .clients-section,
    .testimonials-section {
        padding: 80px 0;
    }
}

[data-theme="light"] .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
}

.theme-toggle:hover {
    background: var(--surface);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.theme-toggle .icon-sun {
    display: none;
}

.theme-toggle .icon-moon {
    display: block;
}

[data-theme="light"] .theme-toggle .icon-sun {
    display: block;
}

[data-theme="light"] .theme-toggle .icon-moon {
    display: none;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 500px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(150%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s var(--ease-out);
}

[data-theme="light"] .cookie-banner {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-icon {
    font-size: 1.5rem;
}

.cookie-title {
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text2);
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.cookie-btn {
    flex: 1;
    padding: 10px 0;
    border-radius: 8px;
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease);
}

.cookie-accept {
    background: var(--gold);
    color: #000;
    border: none;
}

.cookie-accept:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.cookie-reject {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.cookie-reject:hover {
    background: var(--surface);
    border-color: var(--text3);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        max-width: none;
    }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 140px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-left .section-title {
    text-align: left;
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--text);
}

.about-lead strong {
    color: var(--gold);
}

.about-left p {
    color: var(--text2);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-left strong {
    color: var(--gold);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-stat-card {
    padding: 36px 28px;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--blue-light));
    opacity: 0;
    transition: opacity 0.4s;
}

.about-stat-card:hover {
    border-color: rgba(240, 192, 64, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-stat-card:hover::before {
    opacity: 1;
}

.about-stat-card .stat-number {
    font-family: var(--font-h);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-h);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.82rem;
    color: var(--text3);
    letter-spacing: 0.5px;
}

/* ============================================
   SERVICES — HORIZONTAL SCROLL
   ============================================ */
.services {
    padding: 140px 0 100px;
    position: relative;
}

.services-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 24px 24px;
    scrollbar-width: none;
}

.services-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.services-scroll-track {
    display: flex;
    gap: 24px;
    padding: 12px 0;
    width: max-content;
}

.service-card {
    display: flex;
    flex-direction: column;
    width: 340px;
    padding: 40px 32px;
    border-radius: 24px;
    background: var(--card);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    text-decoration: none;
    color: var(--text);
    flex-shrink: 0;
}

.card-glow-effect {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 192, 64, 0.1), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
    transform: translate(-50%, -50%);
}

.service-card:hover .card-glow-effect,
.why-card:hover .card-glow-effect {
    opacity: 1;
}

.service-card:hover {
    border-color: rgba(240, 192, 64, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.card-number {
    font-family: var(--font-m);
    font-size: 0.7rem;
    color: var(--text3);
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(240, 192, 64, 0.06);
    border: 1px solid rgba(240, 192, 64, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold);
    transition: all 0.3s var(--ease);
}

.service-card:hover .card-icon {
    background: rgba(240, 192, 64, 0.12);
    border-color: rgba(240, 192, 64, 0.2);
    transform: scale(1.05);
}

.service-card h3 {
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.card-tags span {
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(240, 192, 64, 0.05);
    border: 1px solid rgba(240, 192, 64, 0.1);
    color: var(--gold);
}

.card-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text3);
    transition: all 0.3s var(--ease);
}

.service-card:hover .card-link {
    color: var(--gold);
    gap: 12px;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
    padding: 140px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    padding: 40px 28px;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    transition: all 0.4s var(--ease);
}

.process-card:hover {
    border-color: rgba(240, 192, 64, 0.15);
    transform: translateY(-4px);
}

.process-num {
    font-family: var(--font-h);
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(240, 192, 64, 0.15), rgba(58, 95, 255, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.process-line-h {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--blue));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.process-card h3 {
    font-family: var(--font-h);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 0.88rem;
    color: var(--text2);
    line-height: 1.7;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
    padding: 140px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    padding: 40px 28px;
    border-radius: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.why-card:hover {
    border-color: rgba(240, 192, 64, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.why-emoji {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text2);
    line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 140px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-left .section-title {
    text-align: left;
}

.contact-desc {
    color: var(--text2);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ci-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(240, 192, 64, 0.06);
    border: 1px solid rgba(240, 192, 64, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-info-item strong {
    font-family: var(--font-h);
    font-size: 0.92rem;
    font-weight: 600;
}

.contact-info-item span {
    font-size: 0.85rem;
    color: var(--text2);
}

.social-row {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text2);
    transition: all 0.3s var(--ease);
}

.social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(240, 192, 64, 0.04);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    padding: 44px;
    border-radius: 24px;
    background: var(--card);
    border: 1px solid var(--border);
    position: relative;
}

.form-group {
    position: relative;
    margin-bottom: 28px;
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 0;
    font-size: 0.9rem;
    color: var(--text3);
    pointer-events: none;
    transition: all 0.3s var(--ease);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 0 8px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-b);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--gold);
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -2px;
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--blue-light));
    transition: width 0.4s var(--ease);
}

.form-group input:focus~.input-line,
.form-group textarea:focus~.input-line,
.form-group select:focus~.input-line {
    width: 100%;
}

.form-group select {
    width: 100%;
    padding: 18px 0 8px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-b);
    font-size: 0.95rem;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a5e70' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    transition: border-color 0.3s;
}

.form-group select:focus {
    border-bottom-color: var(--gold);
}

.form-group select option {
    background: var(--card);
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-error {
    display: block;
    font-size: 0.75rem;
    color: #ff5c5c;
    margin-top: 6px;
    min-height: 16px;
}

.form-success {
    display: none;
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: var(--card);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 10;
    text-align: center;
}

.form-success.show {
    display: flex;
}

.success-check {
    animation: checkBounce 0.6s var(--ease);
}

@keyframes checkBounce {
    0% {
        transform: scale(0);
    }

    60% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.form-success h3 {
    font-family: var(--font-h);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.form-success p {
    color: var(--text2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand p {
    color: var(--text2);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-top: 20px;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-h);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--text2);
    transition: all 0.3s var(--ease);
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text3);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text2);
    transition: all 0.3s var(--ease);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(240, 192, 64, 0.15);
}

/* ============================================
   HAPPY CLIENTS / LOGO STRIP
   ============================================ */
.clients-section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
}

.clients-grid {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    overflow-x: auto;
    padding-bottom: 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.clients-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.client-card {
    flex: 0 0 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--surface);
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text2);
    text-align: center;
    transition: all 0.4s var(--ease);
    min-height: 100px;
    scroll-snap-align: start;
}

.client-card:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(240, 192, 64, 0.08);
}

/* ============================================
   TESTIMONIALS / WHAT CLIENTS SAY
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg);
    overflow: hidden;
}

.testimonials-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 40px 0;
    margin-top: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-scroll::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 400px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    scroll-snap-align: start;
    transition: all 0.4s var(--ease);
}

.testimonial-card:hover {
    border-color: rgba(240, 192, 64, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
    color: var(--text2);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-family: var(--font-h);
    font-size: 4rem;
    color: rgba(240, 192, 64, 0.15);
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-h);
    font-weight: 700;
    color: var(--text3);
    font-size: 1.2rem;
}

.author-info h4 {
    font-family: var(--font-h);
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text3);
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 300px;
        padding: 32px 24px;
    }
}

.clients-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.88rem;
    color: var(--text3);
    font-style: italic;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {

    /* Disable custom cursor on touch/small */
    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }

    body {
        cursor: auto;
    }

    a,
    button,
    input,
    textarea,
    select {
        cursor: auto;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(6, 6, 14, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        padding: 48px;
        gap: 8px;
        transition: right 0.5s var(--ease);
        border-left: 1px solid var(--border);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 16px 24px;
    }

    .nav-links .nav-cta {
        margin-top: 16px;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2.4rem, 10vw, 4rem);
    }

    .services-scroll-track {
        gap: 16px;
    }

    .service-card {
        width: 300px;
        padding: 32px 24px;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .about,
    .services,
    .process,
    .why-us,
    .contact {
        padding: 100px 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
    }

    .service-card {
        width: 280px;
    }
}

/* ============================================
   SERVICE PAGE STYLES (shared)
   ============================================ */
.service-hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 30%, rgba(240, 192, 64, 0.08), transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 70%, rgba(58, 95, 255, 0.06), transparent 50%);
}

.service-hero .section-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 24px;
}

.service-hero p {
    font-size: 1.1rem;
    color: var(--text2);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

.service-section {
    padding: 100px 0;
}

.service-section:nth-child(even) {
    background: var(--bg2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px 28px;
    border-radius: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.feature-card:hover {
    border-color: rgba(240, 192, 64, 0.12);
    transform: translateY(-4px);
}

.feature-card .feature-emoji {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text2);
    line-height: 1.7;
}

/* FAQ Accordion */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 0;
    background: transparent;
    border: none;
    color: var(--text);
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-answer p {
    padding: 0 0 24px;
    color: var(--text2);
    font-size: 0.92rem;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.service-cta-section {
    padding: 100px 0;
    text-align: center;
}

.service-cta-section .section-title {
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .service-hero {
        padding: 140px 0 80px;
    }
}

/* ============================================
   NAV DROPDOWN (What We Do hover)
   ============================================ */
.nav-dropdown-wrap {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-trigger svg {
    transition: transform 0.3s var(--ease);
}

.nav-dropdown-wrap:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 280px;
    background: rgba(14, 14, 30, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
    z-index: 1005;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.nav-dropdown-wrap:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 10px 24px !important;
    font-size: 0.82rem !important;
    color: var(--text2) !important;
    border-radius: 0 !important;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
}

.nav-dropdown a:hover {
    color: var(--gold) !important;
    background: rgba(240, 192, 64, 0.05);
    padding-left: 30px !important;
}

/* ============================================
   QUOTE STRIPS
   ============================================ */
.quote-strip {
    padding: 56px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.quote-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 100% at 50% 50%, rgba(240, 192, 64, 0.03), transparent);
    pointer-events: none;
}

.quote-strip-alt {
    background: var(--bg2);
}

.quote-text {
    font-family: var(--font-h);
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.about-quote {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--gold);
    opacity: 0.8;
}

/* ============================================
   SECTION SUBTITLE & CTA
   ============================================ */
.section-subtitle {
    font-size: 1rem;
    color: var(--text2);
    margin-top: -8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: 56px;
}

/* ============================================
   SERVICE CARD CTA (View All)
   ============================================ */
.service-card-cta {
    background: linear-gradient(135deg, rgba(240, 192, 64, 0.06), rgba(58, 95, 255, 0.04));
    border: 1px dashed rgba(240, 192, 64, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 300px;
}

.cta-card-inner {
    position: relative;
    z-index: 2;
}

.cta-card-emoji {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card-cta h3 {
    font-family: var(--font-h);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card-cta p {
    font-size: 0.88rem;
    color: var(--text2);
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 0;
}

.btn-sm {
    padding: 12px 28px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 20px 44px;
    font-size: 1.05rem;
}

/* ============================================
   CONTACT CTA SECTION (homepage)
   ============================================ */
.contact-cta-section {
    padding: 120px 0;
    text-align: center;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(240, 192, 64, 0.04), transparent 60%);
    pointer-events: none;
}

.contact-cta-inner {
    position: relative;
    z-index: 2;
}

.contact-cta-desc {
    font-size: 1.05rem;
    color: var(--text2);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* ============================================
   CONTACT PAGE HERO
   ============================================ */
.contact-page-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 30%, rgba(240, 192, 64, 0.1), transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 70%, rgba(58, 95, 255, 0.06), transparent 50%);
    pointer-events: none;
}

.contact-hero-sub {
    font-size: 1.1rem;
    color: var(--text2);
    max-width: 640px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.contact-hero-quotes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.contact-quote {
    padding: 20px 32px;
    border-radius: 16px;
    background: rgba(240, 192, 64, 0.04);
    border: 1px solid rgba(240, 192, 64, 0.1);
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    max-width: 400px;
}

/* ============================================
   HOW WE DO PAGE — Step Detail Layout
   ============================================ */
.how-detail-section {
    padding: 80px 0;
}

.how-step-detail {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.how-step-detail:last-child {
    border-bottom: none;
}

.how-step-num {
    font-family: var(--font-h);
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(240, 192, 64, 0.2), rgba(58, 95, 255, 0.12));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.how-step-title {
    font-family: var(--font-h);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.how-step-right p {
    color: var(--text2);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.how-checklist {
    list-style: none;
    margin-bottom: 24px;
}

.how-checklist li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text2);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.how-checklist li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
}

.how-quote {
    font-size: 0.95rem !important;
    color: var(--gold) !important;
    opacity: 0.8;
}

/* ============================================
   RESPONSIVE — NEW ELEMENTS
   ============================================ */
@media (max-width: 1024px) {
    .how-step-detail {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .nav-dropdown {
        position: static;
        transform: none;
        display: none;
        min-width: 100%;
        background: rgba(14, 14, 30, 0.6);
        border: none;
        border-radius: 12px;
        padding: 8px 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        margin-top: 4px;
    }

    .nav-dropdown-wrap:hover .nav-dropdown,
    .nav-dropdown-wrap.active .nav-dropdown {
        display: block;
        transform: none;
    }

    .nav-dropdown a {
        font-size: 0.95rem !important;
        padding: 12px 32px !important;
    }

    .contact-hero-quotes {
        flex-direction: column;
        align-items: center;
    }

    .quote-text {
        font-size: clamp(1.1rem, 5vw, 1.5rem);
    }

    .how-step-num {
        font-size: 3rem;
    }

    .how-step-title {
        font-size: 1.4rem;
    }

    .contact-cta-section {
        padding: 80px 0;
    }
}