/* =========================================
   CSS Variables & Theming - Premium World-Class
   ========================================= */
:root {
    /* Colors - Deep Obsidian & Refined Gold */
    --bg-base: #0D1117;
    /* Elegant deep dark */
    --bg-surface: #161B22;
    /* Elevated surface */
    --bg-surface-border: rgba(255, 255, 255, 0.06);

    --gold-start: #F9C067;
    --gold-end: #D69735;
    --gold-solid: #E5A93C;
    /* Refined, non-neon gold */

    /* Neutrals / Text */
    --text-main: #F4F5F7;
    /* Crisp, readable off-white */
    --text-muted: #8B949E;
    /* High-contrast muted text */

    /* Typography */
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Spacing System (8pt scale) */
    --sp-1: 8px;
    --sp-2: 16px;
    --sp-3: 24px;
    --sp-4: 32px;
    --sp-6: 48px;
    --sp-8: 64px;
    --sp-10: 80px;
    --sp-12: 96px;
    --sp-16: 128px;
    --sp-20: 160px;

    /* Layout */
    --container-width: 1140px;
    --section-pad: var(--sp-12) 0;

    /* Transitions (Premium Cubic Beziers) */
    --trans-fast: 0.15s cubic-bezier(0.2, 0.8, 0.2, 1);
    --trans-base: 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    --trans-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Base 16px */
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-stack);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 60px;
    /* Space for the fixed scarcity banner */
}

/* Type Scale */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-stack);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--trans-base);
}

img {
    max-width: 100%;
}

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

/* Utility Classes */
.text-gold {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold-solid {
    color: var(--gold-solid);
}

.text-muted {
    color: var(--text-muted);
}

.mt-5 {
    margin-bottom: var(--sp-8);
}

.justify-center {
    justify-content: center;
}

/* Subtly colored ambient corner glows */
.scarcity-banner {
    background: rgba(244, 168, 37, 0.15);
    border-top: 1px solid rgba(244, 168, 37, 0.3);
    color: var(--text-main);
    text-align: center;
    padding: 10px 24px;
    font-size: 0.9rem;
    z-index: 1000;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.scarcity-banner i {
    color: var(--gold-solid);
    font-size: 1.1rem;
}

.scarcity-banner strong {
    color: var(--gold-solid);
}

.ambient-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 35, 65, 0.4) 0%, rgba(10, 14, 20, 0) 70%);
    z-index: -1;
    pointer-events: none;
    animation: slowPulse 12s ease-in-out infinite alternate;
}

.glow-top-left {
    top: -200px;
    left: -200px;
}

.glow-bottom-right {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(207, 115, 23, 0.08) 0%, rgba(10, 14, 20, 0) 70%);
    animation: slowPulse 15s ease-in-out infinite alternate-reverse;
}

/* =========================================
   Glassmorphism / Card Component
   ========================================= */
.glass-card {
    background: var(--bg-surface);
    border: 1px solid var(--bg-surface-border);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, -10%), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

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

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 24px rgba(229, 169, 60, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-1);
    padding: 14px var(--sp-3);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--trans-base);
    border: none;
    outline: none;
    text-decoration: none;
}

.btn-sm {
    padding: 10px var(--sp-2);
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px var(--sp-4);
    font-size: 1.05rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: #000;
    /* Max contrast */
    box-shadow: 0 4px 14px rgba(229, 169, 60, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg) translateX(-200%);
    animation: shimmer 5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(229, 169, 60, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.5);
    filter: brightness(1.05);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    z-index: 100;
    transition: var(--trans-slow);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    height: 72px;
    background: rgba(13, 17, 23, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--bg-surface-border);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

/* Hamburger Toggle Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--trans-base);
    transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--trans-fast);
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 60px;
    /* Adjust as necessary for aspect ratio */
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: var(--sp-4);
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--trans-fast);
}

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

/* Hide nav-cta in mobile dropdown by default if we want it custom, but here we just let it be styled */
.nav-cta {
    margin-left: 8px;
    /* Extra space from last link on desktop */
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    padding: var(--sp-20) 0 var(--sp-12);
    text-align: center;
}

.hero-content {
    max-width: 860px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    color: var(--gold-solid);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--sp-3);
    padding: 6px 16px;
    background: rgba(229, 169, 60, 0.1);
    border: 1px solid rgba(229, 169, 60, 0.2);
    border-radius: 100px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: var(--sp-4);
    line-height: 1.05;
    background: linear-gradient(to bottom right, #FFFFFF, #B0B5C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: var(--sp-6);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: var(--sp-2);
}

.mb-5 {
    margin-bottom: var(--sp-8);
}

/* VSL Wrapper Styles */
.vsl-wrapper {
    max-width: 800px;
    /* Increased for horizontal video */
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--bg-surface-border);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 horizontal Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: var(--bg-surface);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    z-index: 10;
    transition: var(--trans-base);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    z-index: 15;
    transition: var(--trans-base);
    pointer-events: none;
}

.video-container:hover .video-overlay {
    background: rgba(0, 0, 0, 0.1); /* clears gently on hover */
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-base);
    pointer-events: none;
}

.play-button i {
    font-size: 3rem;
    color: white;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
    transition: var(--trans-base);
}

.video-container:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--gold-solid);
}

/* =========================================
   Authority Bar
   ========================================= */
.authority-bar {
    padding: var(--sp-4) 0;
    border-top: 1px solid var(--bg-surface-border);
    border-bottom: 1px solid var(--bg-surface-border);
    background: linear-gradient(90deg, transparent, rgba(229, 169, 60, 0.05), transparent);
    text-align: center;
}

.authority-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: var(--sp-2);
}

.authority-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--trans-fast);
}

.logo-item i {
    font-size: 1.5rem;
}

.logo-item:hover {
    color: var(--text-main);
}

/* =========================================
   Sections General
   ========================================= */
section {
    padding: var(--section-pad);
}

.section-header {
    text-align: center;
    margin-bottom: var(--sp-10);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    color: var(--gold-solid);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--sp-2);
}

.section-title {
    font-size: 3rem;
    margin-bottom: var(--sp-2);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.6;
}

/* =========================================
   Features Grid (3 Columns)
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-4);
}

.feature-card {
    padding: var(--sp-6) var(--sp-4);
    transition: var(--trans-base);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(229, 169, 60, 0.1), rgba(229, 169, 60, 0.05));
    color: var(--gold-solid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: var(--sp-4);
    transition: var(--trans-base);
    border: 1px solid rgba(229, 169, 60, 0.2);
}

.feature-card:hover .feature-icon {
    background: rgba(229, 169, 60, 0.15);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 16px rgba(229, 169, 60, 0.15);
}

/* Process Steps Section */
.process-steps-section {
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.process-steps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-solid), transparent);
    opacity: 0.2;
}

/* =========================================
   Process Timeline
   ========================================= */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

/* The vertical connecting line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 40px;
    /* offset to center under the dot */
    width: 2px;
    background: linear-gradient(180deg, var(--gold-start) 0%, rgba(197, 161, 95, 0.1) 100%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    width: 80px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.timeline-dot {
    width: 56px;
    height: 56px;
    background: var(--bg-surface);
    border: 2px solid var(--gold-solid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-solid);
    box-shadow: 0 0 20px rgba(244, 168, 37, 0.2);
    position: relative;
    z-index: 2;
    transition: var(--trans-base);
}

.timeline-item:hover .timeline-dot {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: #111;
    box-shadow: 0 0 30px rgba(244, 168, 37, 0.4);
    transform: scale(1.1);
}

.timeline-content {
    flex: 1;
    padding-top: 4px;
    /* align with dot */
}

/* Specific overrides for timeline cards */
.timeline-content .feature-card {
    padding: 32px;
    margin: 0;
    border: 1px solid rgba(197, 161, 95, 0.15);
    background: linear-gradient(145deg, var(--bg-surface), rgba(10, 14, 20, 0.95));
}

.timeline-content .feature-card:hover {
    border-color: rgba(197, 161, 95, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(197, 161, 95, 0.05);
}

.timeline-content .feature-card h3 {
    font-size: 1.5rem;
    color: var(--gold-start);
    margin-bottom: 12px;
}

/* Features / Benefits Grid */
.features-section {
    background: rgba(244, 168, 37, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   Testimonials / Results
   ========================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
}

.testimonial-card {
    padding: var(--sp-6);
    display: flex;
    flex-direction: column;
}

.test-header {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    margin-bottom: var(--sp-3);
}

.test-avatar {
    width: 56px;
    height: 56px;
    background: var(--bg-base);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--gold-solid);
    border: 1px solid rgba(229, 169, 60, 0.3);
}

.test-body {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-main);
    flex: 1;
    margin-bottom: var(--sp-4);
    line-height: 1.6;
}

.test-metric {
    background: rgba(229, 169, 60, 0.05);
    padding: var(--sp-2) var(--sp-3);
    border-radius: 8px;
    border-left: 3px solid var(--gold-solid);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}

.metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-solid);
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}



/* =========================================
   Booking Component
   ========================================= */
.booking-widget {
    background: var(--bg-surface);
    border: 1px solid var(--bg-surface-border);
    border-radius: 20px;
    padding: var(--sp-8);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.calendar-embed {
    width: 100%;
    min-height: 650px;
    border-radius: 12px;
    overflow: hidden;
    background: #11151A;
    /* Refined dark background */
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--bg-surface-border);
}

.calendar-embed iframe {
    /* 
       Magic Theme Filter 
       1. invert(0.9): Flips white background to dark gray
       2. hue-rotate(20deg): Shifts the inverted blue to a perfect gold 
       3. contrast(0.95): Softens the harshness for a premium feel
    */
    filter: invert(0.9) hue-rotate(20deg) contrast(0.95);
    background: transparent;
}

.calendar-placeholder i {
    font-size: 3rem;
    color: var(--gold-solid);
    margin-bottom: var(--sp-2);
    display: block;
}

.contact-details a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--trans-fast);
}

.contact-details a:hover {
    color: var(--gold-solid);
}

/* =========================================
   Footer Minimal
   ========================================= */
.footer {
    border-top: 1px solid var(--bg-surface-border);
    padding: var(--sp-8) 0;
    background: var(--bg-base);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: var(--sp-4);
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: var(--trans-fast);
}

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

/* =========================================
   Animations
   ========================================= */
@keyframes shimmer {
    0% {
        transform: skewX(-20deg) translateX(-200%);
    }

    20% {
        transform: skewX(-20deg) translateX(300%);
    }

    100% {
        transform: skewX(-20deg) translateX(300%);
    }
}

@keyframes slowPulse {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.1) translate(20px, 20px);
        opacity: 0.6;
    }

    100% {
        transform: scale(1) translate(-10px, -10px);
        opacity: 0.3;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translate(0);
}


/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 48px;
    }

    /* Show hamburger */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: rgba(13, 17, 23, 0.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--bg-surface-border);
        flex-direction: column;
        align-items: center;
        gap: 0;
        z-index: 99;
        padding: var(--sp-2) 0 var(--sp-4);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a:not(.btn) {
        width: 100%;
        text-align: center;
        padding: var(--sp-2) var(--sp-4);
        font-size: 1.05rem;
        border-bottom: 1px solid var(--bg-surface-border);
    }

    .nav-links a:not(.btn):last-of-type {
        border-bottom: none;
    }

    /* Mobile Book button — inside the menu */
    .nav-cta {
        display: inline-flex;
        margin-top: var(--sp-3);
        width: calc(100% - var(--sp-6));
        /* Margin for mobile menu */
    }

    .hero {
        padding: var(--sp-16) 0 var(--sp-8);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .authority-logos {
        gap: var(--sp-3);
    }

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

    .process-timeline::before {
        left: 20px;
    }

    .timeline-item {
        gap: 20px;
        margin-bottom: 32px;
    }

    .timeline-marker {
        width: 40px;
    }

    .timeline-dot {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .timeline-content {
        padding-top: 0;
    }

    .timeline-content .feature-card {
        padding: 24px;
    }

    .timeline-content .feature-card h3 {
        font-size: 1.3rem;
    }

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

    .calendar-embed {
        min-height: 750px;
    }

    section {
        padding: var(--sp-10) 0;
    }

    .footer-container {
        flex-direction: column;
        gap: var(--sp-3);
        text-align: center;
    }

    .scarcity-banner {
        font-size: 0.78rem;
        padding: 8px 12px;
        flex-wrap: wrap;
        line-height: 1.4;
    }

    .vsl-wrapper {
        max-width: 100%;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .authority-logos {
        flex-direction: column;
        gap: var(--sp-2);
    }

    .booking-widget {
        padding: var(--sp-3) var(--sp-2);
    }

    .section-header {
        margin-bottom: var(--sp-6);
    }

    .feature-card {
        padding: var(--sp-3);
    }

    .testimonial-card {
        padding: var(--sp-4) var(--sp-3);
    }

    .vsl-wrapper {
        border-radius: 12px;
    }

    .btn-lg {
        padding: 16px var(--sp-3);
        font-size: 1rem;
        width: 100%;
    }
}

/* =========================================
   Lead Capture Modal
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(13, 17, 23, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--trans-base);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 20px;
    padding: var(--sp-6) var(--sp-4);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--trans-base);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--trans-fast);
}

.modal-close:hover {
    color: var(--text-main);
}

.modal-header {
    text-align: center;
    margin-bottom: var(--sp-4);
}

.modal-header h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--gold-start);
}

.lead-form .form-group {
    margin-bottom: var(--sp-3);
}

.lead-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.lead-form input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-stack);
    font-size: 1rem;
    transition: var(--trans-fast);
}

.lead-form input:focus {
    outline: none;
    border-color: var(--gold-solid);
    box-shadow: 0 0 0 2px rgba(229, 169, 60, 0.2);
}

.lead-form input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}