/* ============================================
   RESET & BASE
   ============================================ */

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

:root {
    /* Dark palette */
    --navy:         #040B16;
    --navy-mid:     #0B192C;
    --navy-light:   #112240;
    --navy-card:    rgba(11, 25, 44, 0.7);

    /* Accent */
    --lime:         #CCFF00;
    --lime-dark:    #AADD00;
    --lime-glow:    rgba(204, 255, 0, 0.15);
    --lime-text:    #0B192C;

    /* Light sections */
    --light-bg:     #F8F9FA;
    --light-card:   #FFFFFF;
    --light-border: #E5E7EB;

    /* Text */
    --text-on-dark:        #FFFFFF;
    --text-on-dark-muted:  rgba(255,255,255,0.55);
    --text-on-dark-mid:    rgba(255,255,255,0.75);
    --text-on-light:       #0F172A;
    --text-on-light-muted: #64748B;

    --radius-sm:   6px;
    --radius:      12px;
    --radius-lg:   20px;

    --shadow-sm:    0 1px 3px rgba(0,0,0,0.12);
    --shadow:       0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg:    0 20px 60px rgba(0,0,0,0.3);
    --shadow-lime:  0 8px 32px rgba(204,255,0,0.25);
    --glow-lime:    0 0 40px rgba(204,255,0,0.12);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--navy);
    color: var(--text-on-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.7;
    max-width: 560px;
    margin-top: 12px;
    margin-bottom: 56px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--lime) 0%, #AAFF44 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

section { padding: 96px 0; }

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lime);
    color: var(--lime-text);
    padding: 14px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-lime);
}

.btn-primary:hover {
    background: var(--lime-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(204,255,0,0.4);
}

.btn-large { padding: 18px 36px; font-size: 16px; }

.btn-white {
    background: var(--text-on-dark);
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-white:hover {
    background: #F0F0F0;
    color: var(--navy);
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(4, 11, 22, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    border-bottom-color: rgba(204,255,0,0.15);
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    padding-bottom: 18px;
}

.nav-brand {
    text-decoration: none;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.brand-auto  { color: var(--lime); }
.brand-myrix { color: var(--text-on-dark); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-on-dark-mid);
    transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--lime); }

.btn-nav {
    background: var(--lime) !important;
    color: var(--lime-text) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-sm) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    transition: all 0.2s ease !important;
}

.btn-nav:hover {
    background: var(--lime-dark) !important;
    color: var(--lime-text) !important;
    box-shadow: var(--shadow-lime) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-on-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO — full-bleed centered
   ============================================ */

.hero {
    position: relative;
    background: var(--navy);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 110px 40px 0;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Dot grid — full coverage */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

/* Radial glow — vivid blue centered, full bleed */
.hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 10%, rgba(15,80,200,0.80) 0%, rgba(8,30,100,0.50) 45%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0,40,120,0.3) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 80% 70%, rgba(204,255,0,0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-glow--right { display: none; }

/* Centered hero content */
.hero-centered {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 820px;
}

.hero-centered h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--text-on-dark);
}

.hero-subtitle {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 15px;
    color: var(--text-on-dark-muted);
    line-height: 1.8;
    margin: 0 auto 44px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.cta-subtext {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-on-dark-muted);
    letter-spacing: 0.04em;
    margin: 0;
}

/* Floating stat cards */
.hero-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 820px;
    margin: 56px auto 0;
}

.hero-stat-card {
    background: rgba(11,25,44,0.65);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 28px 28px 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero-stat-card--accent {
    border-color: rgba(204,255,0,0.15);
    background: rgba(11,25,44,0.8);
}

.hsc-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-on-dark-muted);
    margin-bottom: 12px;
}

.hsc-quote {
    font-size: 14px;
    color: var(--text-on-dark-mid);
    line-height: 1.7;
    margin-bottom: 16px;
}

.hsc-highlight {
    color: var(--lime);
    font-weight: 600;
}

.hsc-company {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-on-dark-mid);
    margin-bottom: 20px;
    cursor: pointer;
    transition: color 0.2s;
}
.hsc-company:hover { color: var(--lime); }

.hsc-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 16px;
}

.hsc-metrics div { display: flex; flex-direction: column; gap: 3px; }

.hsc-metrics strong {
    font-size: 22px;
    font-weight: 900;
    color: var(--lime);
    letter-spacing: -0.02em;
    line-height: 1;
}

.hsc-metrics span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-on-dark-muted);
    letter-spacing: 0.04em;
}


/* ============================================
   TRUST BAR — scrolling marquee
   ============================================ */

.trust-bar {
    background: var(--navy-mid);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 16px 0;
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    position: relative;
}

/* Fade edges */
.trust-bar::before,
.trust-bar::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.trust-bar::before {
    left: 0;
    background: linear-gradient(to right, var(--navy-mid), transparent);
}
.trust-bar::after {
    right: 0;
    background: linear-gradient(to left, var(--navy-mid), transparent);
}

.trust-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-on-dark-muted);
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0 32px 0 24px;
    position: relative;
    z-index: 3;
}

.trust-marquee-wrap {
    flex: 1;
    overflow: hidden;
}

.trust-marquee {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
    width: max-content;
}

.trust-marquee:hover { animation-play-state: paused; }

.trust-marquee span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-on-dark-mid);
    padding: 0 20px;
    white-space: nowrap;
}

.trust-dot {
    color: var(--lime) !important;
    padding: 0 4px !important;
    font-size: 18px !important;
    opacity: 0.5;
}

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

/* ============================================
   USP SECTION  — light bg
   ============================================ */

.usp { background: var(--light-bg); }
.usp .section-label { color: var(--navy-mid); }
.usp h2 { color: var(--text-on-light); }
.usp .section-subtitle { color: var(--text-on-light-muted); }

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

.usp-card {
    padding: 36px 32px;
    background: var(--light-card);
    border: 1px solid var(--light-border);
    border-radius: 0;
    transition: all 0.3s ease;
}

.usp-card:hover {
    border-color: var(--lime);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lime);
}

.usp-icon-wrap {
    width: 44px;
    height: 44px;
    background: var(--light-bg);
    border: 1px solid var(--light-border);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--navy-mid);
    transition: all 0.3s ease;
}

.usp-card:hover .usp-icon-wrap {
    background: var(--lime);
    color: var(--navy);
    border-color: var(--lime);
}

.usp-card h3 { color: var(--text-on-light); }
.usp-card p { font-size: 15px; color: var(--text-on-light-muted); line-height: 1.7; }

/* ============================================
   SERVICES SECTION — stacked card deck
   ============================================ */

.services {
    background: var(--navy-mid);
    padding-bottom: 96px;
}

.services .container { padding-bottom: 0; }

/* Stack wrapper */
.card-stack-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 48px;
    padding-bottom: 0;
    user-select: none;
}

/* The stack container — fixed height so cards layer inside */
.card-stack {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 320px;
}

/* All cards sit on top of each other */
.service-card {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: rgba(17, 34, 64, 0.85);
    padding: 36px 32px 28px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.09);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.45s ease,
                box-shadow 0.45s ease;
    cursor: grab;
    will-change: transform;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

/* Card states based on position in stack */
.service-card[data-pos="0"] {
    transform: translateY(0) scale(1);
    opacity: 1;
    z-index: 5;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5), var(--glow-lime);
    border-color: rgba(204,255,0,0.15);
    cursor: grab;
}
.service-card[data-pos="0"]::before { transform: scaleX(1); }

.service-card[data-pos="1"] {
    transform: translateY(18px) scale(0.97);
    opacity: 0.7;
    z-index: 4;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.service-card[data-pos="2"] {
    transform: translateY(34px) scale(0.94);
    opacity: 0.45;
    z-index: 3;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.service-card[data-pos="3"],
.service-card[data-pos="4"] {
    transform: translateY(46px) scale(0.91);
    opacity: 0.2;
    z-index: 2;
}

/* Swiping animation */
.service-card.swiping-out {
    transform: translateX(-120%) translateY(-20px) rotate(-8deg) !important;
    opacity: 0 !important;
    transition: transform 0.35s ease, opacity 0.3s ease;
}

.service-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--lime);
    margin-bottom: 14px;
    opacity: 0.5;
}

.service-icon { font-size: 34px; margin-bottom: 14px; }
.service-card h3 { color: var(--text-on-dark); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-on-dark-muted); line-height: 1.7; margin-bottom: 20px; }

.service-tags { display: flex; gap: 6px; flex-wrap: wrap; }

.service-tags span {
    font-size: 11px;
    font-weight: 600;
    color: var(--lime);
    background: rgba(204,255,0,0.07);
    border: 1px solid rgba(204,255,0,0.14);
    padding: 3px 9px;
    border-radius: 4px;
}

/* Dot indicators */
.stack-dots {
    display: flex;
    gap: 8px;
    margin-top: 72px;
    align-items: center;
}

.stack-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stack-dot.active {
    width: 24px;
    border-radius: 3px;
    background: var(--lime);
}

/* ============================================
   PROCESS SECTION — light bg
   ============================================ */

.process { background: var(--light-bg); }
.process .section-label { color: var(--navy-mid); }
.process h2 { color: var(--text-on-light); }

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
    margin-top: 16px;
}

.step-card {
    background: var(--light-card);
    border: 1px solid var(--light-border);
    border-radius: 0;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--lime);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lime);
}

.step-num {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--navy-mid);
    margin-bottom: 14px;
}

.step-time {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy-mid);
    background: rgba(11,25,44,0.08);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.step-card h3 { color: var(--text-on-light); }
.step-card p:last-child { font-size: 14px; color: var(--text-on-light-muted); line-height: 1.6; }

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    color: var(--text-on-light-muted);
    margin-top: 60px;
    opacity: 0.3;
}

/* ============================================
   GUARANTEE SECTION — deep dark
   ============================================ */

.guarantee {
    background: var(--navy);
    border-top: 1px solid rgba(204,255,0,0.08);
    border-bottom: 1px solid rgba(204,255,0,0.08);
    padding: 96px 0;
}

.guarantee-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.guarantee-icon { font-size: 48px; margin-bottom: 20px; }
.guarantee-text h2 { color: var(--text-on-dark); margin-bottom: 16px; }
.guarantee-text p { font-size: 17px; color: var(--text-on-dark-muted); line-height: 1.7; }

.guarantee-badges { display: flex; flex-direction: column; gap: 12px; }

.g-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-on-dark-mid);
    padding: 16px 20px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.g-badge:hover {
    background: rgba(204,255,0,0.06);
    border-color: rgba(204,255,0,0.2);
    color: var(--text-on-dark);
    transform: translateX(4px);
}

.g-badge svg { color: var(--lime); flex-shrink: 0; }

/* ============================================
   TESTIMONIALS — light bg
   ============================================ */

.testimonials { background: var(--light-bg); }
.testimonials .section-label { color: var(--navy-mid); }
.testimonials h2 { color: var(--text-on-light); }

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

.testimonial-card {
    background: var(--light-card);
    border: 1px solid var(--light-border);
    border-radius: 0;
    padding: 36px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--lime);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lime);
}

.testimonial-card--featured {
    background: var(--navy);
    border-color: rgba(204,255,0,0.2);
    box-shadow: var(--glow-lime);
    border-radius: 0;
}

.testimonial-card--featured p,
.testimonial-card--featured .t-meta strong { color: var(--text-on-dark) !important; }
.testimonial-card--featured .t-meta span  { color: var(--text-on-dark-muted) !important; }
.testimonial-card--featured .t-stars      { color: var(--lime) !important; }
.testimonial-card--featured .t-avatar     { background: rgba(204,255,0,0.12); color: var(--lime); }

.t-stars {
    font-size: 16px;
    color: #F59E0B;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text-on-light-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.t-meta { display: flex; align-items: center; gap: 14px; }

.t-avatar {
    width: 44px;
    height: 44px;
    background: var(--light-bg);
    color: var(--navy-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.t-meta strong { display: block; font-size: 14px; color: var(--text-on-light); margin-bottom: 2px; }
.t-meta span   { font-size: 12px; color: var(--text-on-light-muted); }

/* ============================================
   FAQ — dark
   ============================================ */

.faq { background: var(--navy-mid); }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 0;
    overflow: hidden;
    transition: border-color 0.2s;
    background: rgba(255,255,255,0.02);
}

.faq-item.open { border-color: rgba(204,255,0,0.3); }

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-on-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.2s;
    font-family: inherit;
}

.faq-question:hover { background: rgba(255,255,255,0.04); }
.faq-item.open .faq-question { background: rgba(204,255,0,0.06); color: var(--lime); }

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-on-dark-muted);
}

.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--lime); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-on-dark-muted);
    line-height: 1.7;
}

/* ============================================
   BOOKING SECTION — light bg
   ============================================ */

.booking { background: var(--light-bg); padding: 96px 0; }
.booking .section-label { color: var(--navy-mid); }
.booking h2 { color: var(--text-on-light); }

.booking-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.booking-copy > p { font-size: 16px; color: var(--text-on-light-muted); line-height: 1.7; margin-bottom: 32px; }

.booking-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }

.booking-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-on-light);
}

.booking-list li svg { color: var(--navy-mid); flex-shrink: 0; }

.booking-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid var(--light-border);
}

.booking-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-mid);
    transition: color 0.2s;
}

.booking-contact a:hover { color: var(--navy); }
.booking-contact a svg { color: var(--lime-dark); flex-shrink: 0; }

.booking-widget {
    background: var(--light-card);
    border: 1px solid var(--light-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ============================================
   FINAL CTA — lime
   ============================================ */

.final-cta {
    background: var(--lime);
    padding: 96px 0;
    text-align: center;
}

.final-cta h2 { color: var(--navy); margin-bottom: 36px; }
.final-subtext { font-size: 14px; color: rgba(4,11,22,0.5); margin-top: 16px; }

.final-cta .btn-primary {
    background: var(--navy);
    color: var(--lime);
    box-shadow: 0 8px 32px rgba(4,11,22,0.3);
}

.final-cta .btn-primary:hover {
    background: var(--navy-mid);
    color: var(--lime);
    box-shadow: 0 12px 40px rgba(4,11,22,0.4);
}

/* ============================================
   FOOTER
   ============================================ */

.footer { background: var(--navy); border-top: 1px solid rgba(204,255,0,0.08); padding: 60px 0 40px; }

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer-brand .nav-brand { display: inline-block; text-decoration: none; font-size: 20px; font-weight: 900; margin-bottom: 12px; }
.footer-brand .brand-myrix { color: var(--text-on-dark-muted); }
.footer-brand p { font-size: 14px; color: var(--text-on-dark-muted); line-height: 1.6; }

.footer-links { display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
    text-decoration: none;
    font-size: 14px;
    color: var(--text-on-dark-muted);
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--lime); }

.footer-contact-info { display: flex; flex-direction: column; gap: 10px; }

.footer-contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    color: var(--text-on-dark-muted);
    transition: color 0.2s;
}

.footer-contact-info a:hover { color: var(--lime); }
.footer-contact-info a svg { color: var(--lime); flex-shrink: 0; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.2); margin-top: 20px; }

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .steps-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .step-arrow { display: none; }
    .guarantee-inner { grid-template-columns: 1fr; gap: 48px; }
    .booking-inner { grid-template-columns: 1fr; gap: 48px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    section { padding: 64px 0; }

    .hero { padding: 80px 20px 0; min-height: auto; }
    .hero-centered h1 { font-size: 36px; }
    .hero-subtitle { font-size: 13px; }
    .hero-side-label { display: none; }

    .usp-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--navy);
        border-top: 1px solid rgba(255,255,255,0.05);
        border-bottom: 1px solid rgba(255,255,255,0.05);
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 24px; width: 100%; }
    .btn-nav { margin: 8px 24px 4px !important; text-align: center !important; width: calc(100% - 48px) !important; }
    .nav-toggle { display: flex; }
    .navbar { position: relative; }

    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .final-cta h2 { font-size: 22px; }
    .guarantee-inner { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
    .hero-stats { grid-template-columns: 1fr; margin-top: 40px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    h2 { font-size: 26px; }
    .section-subtitle { font-size: 16px; }
    .hero-centered h1 { font-size: 28px; }
    .booking-widget .calendly-inline-widget { height: 600px !important; }
}
