/* =============================================================================
   THE ZONE PODCAST STUDIO — Styles
   Visual-heavy, mobile-first, dark theme
   ============================================================================= */

:root {
    --bg-primary: #1a1a20;
    --bg-secondary: #212128;
    --bg-card: #28282f;
    --bg-card-hover: #32323a;
    --bg-elevated: #2c2c34;

    --accent: #3B82F6;
    --accent-hover: #60A5FA;
    --accent-glow: rgba(59, 130, 246, 0.2);
    --accent-subtle: rgba(59, 130, 246, 0.1);
    --accent-gold: #60A5FA;

    --text-primary: #eaeaed;
    --text-secondary: #9d9da6;
    --text-muted: #6e6e78;

    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.13);

    --font-display: 'Outfit', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --container-max: 1200px;
    --container-wide: 1400px;
    --nav-height: 72px;
    --mobile-cta-height: 64px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-display);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-bottom: var(--mobile-cta-height);
}

@media (min-width: 768px) {
    body { padding-bottom: 0; }
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container { padding: 0 40px; }
}

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

/* =============================================================================
   Navigation
   ============================================================================= */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 2000;
    transition: background 0.3s, backdrop-filter 0.3s;
}

.nav.scrolled {
    background: rgba(26, 26, 32, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

body.menu-open .nav {
    background: rgba(26, 26, 32, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; z-index: 1001; }

.logo-text {
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.3s, opacity 0.3s;
}


.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); }

.nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    max-width: none;
    min-height: calc(100dvh - var(--nav-height));
    background: rgba(26, 26, 32, 0.98);
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
    padding: 28px 20px 120px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 1999;
    border-top: 1px solid var(--border);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-menu.active { opacity: 1; pointer-events: auto; }

.nav-link {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: color 0.2s;
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.nav-cta {
    display: block;
    width: 100%;
    color: #fff !important;
    background: var(--accent);
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
    border-bottom: none;
    text-align: center;
    margin-top: 8px;
    box-sizing: border-box;
}

.nav-cta:hover { background: var(--accent-hover); transform: scale(1.03); }

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.nav-overlay.active { opacity: 1; pointer-events: auto; }

body.menu-open .main,
body.menu-open .footer {
    pointer-events: none;
}

@media (min-width: 768px) {
    .nav-toggle { display: none; }
    .nav-overlay { display: none; }

    .nav-container {
        padding: 0 40px;
        gap: 32px;
    }

    .nav-menu {
        position: static;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: auto;
        max-width: none;
        min-height: 0;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        background: none;
        backdrop-filter: none;
        opacity: 1;
        pointer-events: auto;
        gap: 32px;
        padding: 0;
        border-top: none;
        overflow: visible;
    }

    .nav-link {
        width: auto;
        padding: 0;
        border-bottom: none;
        font-size: 0.9rem;
        letter-spacing: 0.03em;
    }

    .nav-cta {
        width: auto;
        padding: 10px 24px;
        font-size: 0.85rem;
        margin-top: 0;
    }
}

/* =============================================================================
   Buttons
   ============================================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 14px 32px;
    font-size: 0.95rem;
}

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

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--text-primary);
    padding: 14px 32px;
    font-size: 0.95rem;
    border: 1px solid var(--border-light);
}

.btn-secondary:hover { background: rgba(255,255,255,0.12); }

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    padding: 12px 28px;
    font-size: 0.9rem;
    border: 1px solid var(--border-light);
}

.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-lg { padding: 16px 40px; font-size: 1rem; }

.btn-block { width: 100%; }

/* =============================================================================
   Placeholder Images
   ============================================================================= */

.placeholder-img {
    background: linear-gradient(135deg, #252530 0%, #2a2a38 50%, #2e2838 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.placeholder-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(59,130,246,0.05) 100%);
}

.placeholder-img span { position: relative; z-index: 1; opacity: 0.5; }

/* =============================================================================
   Hero Section
   ============================================================================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #141418 0%, #1e1618 30%, #141418 60%, #14161e 100%);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    opacity: 0.4;
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 20px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.hero-copy {
    text-align: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-feature-card {
    width: 100%;
    max-width: 380px;
}

.hero-feature-image {
    width: 100%;
    aspect-ratio: 4 / 4.8;
    border-radius: var(--radius-xl);
    background-image: linear-gradient(to top, rgba(8, 8, 12, 0.38), rgba(8, 8, 12, 0.06)), url("/static/images/studio-time.jpg");
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.hero-feature-caption {
    margin-top: 12px;
    text-align: center;
    color: var(--text-muted);
}

.hero-feature-caption strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.hero-feature-caption span {
    display: block;
    font-size: 0.82rem;
}

.hero-proof-chip strong,
.about-hero-point strong,
.studio-story-highlight strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.hero-proof-chip span,
.about-hero-point span,
.studio-story-highlight span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.5;
}

.hero-proof-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 14px;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}

.hero-proof-item {
    white-space: nowrap;
}

.hero-proof-separator {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #93B8FC;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #3B82F6 0%, #818CF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 40px;
    font-weight: 400;
}

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

@media (min-width: 480px) {
    .hero-actions { flex-direction: row; justify-content: center; }
}

@media (min-width: 960px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
        gap: 56px;
    }

    .hero-copy {
        text-align: left;
    }

    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-proof-row {
        justify-content: flex-start;
    }
}

.hero-video {
    margin-top: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-video video {
    width: 100%;
    display: block;
}

/* =============================================================================
   Section Styles
   ============================================================================= */

section {
    padding: 80px 0;
}

@media (min-width: 768px) {
    section { padding: 120px 0; }
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
}

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* =============================================================================
   Client Strip
   ============================================================================= */

.client-strip {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.client-strip-inner {
    display: flex;
    gap: 40px;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

.client-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}


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

/* =============================================================================
   Services Grid (Visual Cards)
   ============================================================================= */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 480px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.service-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-4px); }

.service-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #252530, #222838, #282838);
}

.service-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-image-studio {
    background-image: url("/static/images/studio-time.jpg");
    background-position: center 35%;
}

.service-image-production {
    background-image: url("/static/images/production-video.jpg");
    background-position: center;
}

.service-image-reels {
    background-image: url("/static/images/reel.jpg");
    background-position: center;
}

.service-image-social {
    background-image: url("/static/images/social-media.jpg");
    background-position: center;
}

.service-image-branding {
    background-image: url("/static/images/branding.jpg");
    background-position: center;
}

.service-image-enterprise {
    background-image: url("/static/images/enterprise.jpg");
    background-position: center;
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.service-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.service-card-price {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}

/* =============================================================================
   Equipment Bar
   ============================================================================= */

.equipment-bar {
    padding: 40px 0;
    background: var(--bg-secondary);
}

.equipment-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 0 20px 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.equipment-scroll::-webkit-scrollbar { display: none; }

.equipment-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 10px 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.equipment-chip-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.equipment-chip-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.equipment-chip-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* =============================================================================
   Stats Section
   ============================================================================= */

.stats-section {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {}

.stat-value {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    color: var(--text-primary);
}

.stat-value .accent { color: var(--accent); }

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
    font-weight: 600;
}

/* =============================================================================
   Testimonials Carousel
   ============================================================================= */

.carousel-wrap {
    position: relative;
}

.carousel-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--bg-primary));
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.3s;
}

.carousel-wrap.scrolled-end::after { opacity: 0; }

.carousel-scroll-hint {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: hint-nudge 1.5s ease-in-out infinite;
    pointer-events: none;
    transition: opacity 0.3s;
}

.carousel-wrap.scrolled .carousel-scroll-hint { opacity: 0; }

@keyframes hint-nudge {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(6px); }
}

.testimonials-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 20px 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-carousel::-webkit-scrollbar { display: none; }

.testimonial-card {
    flex-shrink: 0;
    width: min(280px, 85vw);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    scroll-snap-align: start;
    transition: transform 0.3s;
}

.testimonial-card:hover { transform: translateY(-4px); }

.testimonial-video-wrap {
    position: relative;
    aspect-ratio: 9/16;
    background: #000;
    cursor: pointer;
}

.testimonial-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    transition: opacity 0.2s;
}

.play-overlay svg { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }

.testimonial-video-wrap.playing .play-overlay { opacity: 0; pointer-events: none; }

.testimonial-name {
    padding: 16px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =============================================================================
   Video Grid (Testimonials Page)
   ============================================================================= */

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 480px) {
    .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .video-grid { grid-template-columns: repeat(3, 1fr); }
}

.video-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.video-card-player {
    position: relative;
    aspect-ratio: 9/16;
    background: #000;
    cursor: pointer;
}

.video-card-player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.video-card-info {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-card-name {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.featured-video {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}

/* =============================================================================
   CTA Section
   ============================================================================= */

.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.2;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 24px;
    line-height: 1.05;
}

/* =============================================================================
   Services Page — Two-Tier Tabs
   ============================================================================= */

.services-tabs-wrapper {
    position: sticky;
    top: var(--nav-height);
    background: var(--bg-primary);
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.services-groups {
    display: flex;
    gap: 6px;
    justify-content: center;
    padding: 12px 20px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-groups::-webkit-scrollbar { display: none; }

.group-pill {
    padding: 8px 22px;
    min-height: 40px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--text-muted);
    border: none;
    background: transparent;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    flex-shrink: 0;
    position: relative;
}

.group-pill:hover { color: var(--text-primary); }

.group-pill.active {
    color: var(--text-primary);
    background: var(--bg-card);
}

.services-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 20px 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
}

.services-tabs::-webkit-scrollbar { display: none; }

.tab-pill {
    padding: 10px 20px;
    min-height: 44px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--text-muted);
    border: 1px solid var(--border);
    transition: all 0.2s;
    flex-shrink: 0;
    cursor: pointer;
    background: transparent;
}

.tab-pill.hidden { display: none; }

.tab-pill:hover { color: var(--text-primary); border-color: var(--border-light); }
.tab-pill.active { color: #fff; background: var(--accent); border-color: var(--accent); }

/* Service Panels */
.service-panel {
    display: none;
    padding: 48px 0;
}

.service-panel.active { display: block; }

.service-panel-hero {
    width: 100%;
    aspect-ratio: 21/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
}

.service-panel-header {
    margin-bottom: 32px;
}

.service-panel-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.service-panel-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 480px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .pricing-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .pricing-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}

.pricing-card { cursor: pointer; }
.pricing-card:hover { border-color: var(--accent); transform: translateY(-4px); }

@keyframes btn-bounce {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.15); }
    50%  { transform: scale(0.95); }
    70%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}
.btn-primary.pulse { animation: btn-bounce 0.6s ease; }

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.pricing-card-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.pricing-card-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pricing-amount {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.pricing-per {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pricing-save {
    display: inline-block;
    background: rgba(0, 200, 83, 0.1);
    color: #00c853;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.pricing-features {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.check-icon {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* =============================================================================
   Booking Page
   ============================================================================= */

.book-section {
    padding-top: calc(var(--nav-height) + 40px);
    min-height: 100vh;
}

.book-section .container {
    max-width: 940px;
}

.book-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
}

@media (min-width: 1024px) {
    .book-layout {
        grid-template-columns: minmax(0, 760px);
        justify-content: center;
    }
}

.book-form {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.form-status-message {
    margin-bottom: 18px;
    padding: 14px 16px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.92rem;
}

.book-section-card,
.book-sidebar-card,
.thanks-review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.book-section-card + .book-section-card {
    margin-top: 20px;
}

.book-section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 16px;
}

.book-helper-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.book-sidebar {
    display: grid;
    gap: 16px;
    align-content: start;
    width: 100%;
    max-width: 760px;
}

.book-sidebar-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 10px;
}

.book-sidebar-card h3,
.thanks-review-card h2,
.book-next-step-card h3 {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.book-sidebar-card p,
.book-next-step-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

@media (max-width: 1023px) {
    .book-sidebar {
        display: none;
    }
}

.service-choice-groups {
    display: grid;
    gap: 24px;
}

.service-group-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 24px;
}

.service-group-pill {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 16px;
    min-height: 44px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.service-group-pill:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

.service-group-pill.is-active {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--accent);
    color: var(--text-primary);
}

.service-choice-group {
    display: none;
    gap: 12px;
}

.service-choice-group.is-expanded {
    display: grid;
}

.service-choice-group-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.service-choice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 680px) {
    .service-choice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-choice-card {
    position: relative;
    display: block;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.service-choice-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.service-choice-card.is-selected {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.08);
}

.service-choice-card.is-active-service {
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.35) inset;
}

.service-choice-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-choice-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.service-choice-description {
    display: block;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
}

.service-detail-panel {
    display: none;
    margin-bottom: 20px;
}

.service-detail-panel.is-visible {
    display: block;
}

.book-next-step-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px;
}

.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-textarea { resize: vertical; min-height: 80px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 600px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}

.required { color: var(--accent); }

/* Service pill selectors */
.pill-select {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill-option {
    position: relative;
}

.pill-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pill-option label {
    display: block;
    padding: 10px 16px;
    min-height: 44px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
}

.pill-option input:checked + label {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
}

.pill-option label:hover {
    color: var(--text-primary);
    border-color: var(--border-light);
}

/* Calendly embed */
.calendly-embed {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 650px;
}

/* =============================================================================
   About Page
   ============================================================================= */

.about-hero {
    padding-top: var(--nav-height);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(8, 8, 12, 0.9), rgba(10, 10, 16, 0.78), rgba(8, 10, 18, 0.88)),
        url("/static/images/medellin-skyline.jpg");
    background-size: cover;
    background-position: center;
}

.about-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 14, 0.72) 0%, rgba(10, 10, 14, 0.42) 38%, rgba(10, 10, 14, 0.12) 72%, rgba(10, 10, 14, 0.18) 100%);
}

.about-mission {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    max-width: 700px;
}

.about-hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}

.about-hero-copy {
    max-width: 620px;
    position: relative;
    z-index: 1;
    background: rgba(12, 12, 18, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 32px;
    backdrop-filter: blur(10px);
}

.about-hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
}

.about-hero-point {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 0 14px 0;
    max-width: 420px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero-visual {
    display: flex;
    justify-content: center;
}

.about-hero-image {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1.05;
    border-radius: var(--radius-xl);
    background-image: linear-gradient(to top, rgba(8, 8, 12, 0.28), rgba(8, 8, 12, 0.08)), url("/static/images/nemo.jpg");
    background-size: cover;
    background-position: center 24%;
    border: 1px solid var(--border);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.studio-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 40px;
}

.studio-story-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.studio-story-highlight {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
}

.studio-story-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-xl);
    background-image: linear-gradient(to top, rgba(8, 8, 12, 0.24), rgba(8, 8, 12, 0.04)), url("/static/images/studio-time.jpg");
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
}

@media (min-width: 760px) {
    .about-hero-points,
    .studio-story-highlights {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 960px) {
    .about-hero-layout,
    .studio-story-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
        gap: 48px;
    }

    .about-hero-points,
    .studio-story-highlights {
        grid-template-columns: 1fr;
    }
}

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

@media (min-width: 768px) {
    .team-grid { grid-template-columns: repeat(4, 1fr); }
}

.team-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.team-card-photo {
    aspect-ratio: 1;
}

.team-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}

.team-image-nemo {
    background-image: url("/static/images/nemo.jpg");
    background-position: center 20%;
}

.team-image-sound {
    background-image: url("/static/images/sound-engineer.png");
    background-position: center 18%;
}

.team-image-cinematographer {
    background-image: url("/static/images/cinematographer.png");
    background-position: center 18%;
}

.team-image-editor {
    background-image: url("/static/images/video-editor.png");
    background-position: center 18%;
}

.team-card-info {
    padding: 16px;
}

.team-card-name {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.team-card-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

@media (min-width: 768px) {
    .gear-grid { grid-template-columns: repeat(3, 1fr); }
}

.gear-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s, transform 0.3s;
}

.gear-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.gear-card.expanded { border-color: var(--accent); }

.gear-icon { font-size: 2rem; margin-bottom: 8px; }

.gear-name {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.gear-detail {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.gear-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, margin-top 0.35s ease;
    margin-top: 0;
}

.gear-card.expanded .gear-expand {
    max-height: 300px;
    margin-top: 14px;
}

.gear-expand p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: left;
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 16/9;
}

.location-hero-image {
    width: 100%;
    aspect-ratio: 21 / 8;
    border-radius: var(--radius-xl);
    background-image: linear-gradient(to top, rgba(8, 8, 12, 0.28), rgba(8, 8, 12, 0.05)), url("/static/images/medellin-skyline.jpg");
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
    margin-bottom: 12px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =============================================================================
   Thanks Page
   ============================================================================= */

.thanks-section {
    padding-top: calc(var(--nav-height) + 60px);
    text-align: center;
    min-height: 100vh;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--accent);
}

.thanks-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 600px;
    margin: 40px auto;
    text-align: left;
}

@media (min-width: 480px) {
    .thanks-steps { grid-template-columns: repeat(3, 1fr); text-align: center; }
}

.thanks-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

@media (min-width: 480px) {
    .thanks-step-icon { margin: 0 auto 12px; }
}

.thanks-step-title {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.thanks-step-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.thanks-review-card {
    max-width: 680px;
    margin: 60px auto 0;
    text-align: left;
}

/* =============================================================================
   Flash Messages
   ============================================================================= */

.flash-messages {
    position: fixed;
    top: calc(var(--nav-height) + 10px);
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flash-message {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 40px 12px 16px;
    font-size: 0.9rem;
    position: relative;
    max-width: 360px;
}

.flash-error { border-color: var(--accent); }

.flash-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    background: none;
    border: none;
}

/* =============================================================================
   Footer
   ============================================================================= */

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

.footer-logo {
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.footer-contact-item:hover { color: var(--text-primary); }
.footer-contact-item svg { flex-shrink: 0; color: var(--text-muted); }

.footer-location {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-location svg { flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a { color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-primary); }

.footer-built-by { color: var(--text-muted); }
.footer-built-by a { color: var(--accent); font-weight: 600; }
.footer-built-by a:hover { color: var(--accent-hover); }

/* =============================================================================
   Sticky Mobile CTA
   ============================================================================= */

.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 10px 16px;
    background: rgba(26, 26, 32, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
}

body.menu-open .mobile-cta {
    display: none;
}

.mobile-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .mobile-cta { display: none; }
}

/* =============================================================================
   Legal Pages
   ============================================================================= */

.legal-section {
    padding-top: calc(var(--nav-height) + 40px);
    min-height: 100vh;
}

.legal-content {
    max-width: 700px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

/* =============================================================================
   Error Pages
   ============================================================================= */

.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-code {
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.error-message {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 16px 0 32px;
}

/* =============================================================================
   Utility
   ============================================================================= */

.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* =============================================================================
   Hidden Ad Landing Page
   ============================================================================= */

.landing-page-body {
    padding-bottom: 88px;
    background:
        radial-gradient(circle at top, rgba(59, 130, 246, 0.14), transparent 32%),
        var(--bg-primary);
}

.landing-topbar {
    position: sticky;
    top: 0;
    z-index: 200;
    backdrop-filter: blur(18px);
    background: rgba(15, 15, 20, 0.82);
    border-bottom: 1px solid var(--border);
}

.landing-topbar-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.landing-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.landing-topbar .logo-text {
    font-size: 1rem;
    letter-spacing: 0.12em;
}

.landing-brand-sub {
    display: none;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.landing-topbar-cta {
    white-space: nowrap;
    padding: 12px 20px;
    font-size: 0.85rem;
}

.landing-page {
    overflow: clip;
}

.landing-hero {
    min-height: auto;
    padding-top: 28px;
}

.landing-hero-subtitle {
    max-width: 620px;
}

.landing-hero-actions {
    margin-bottom: 8px;
}

.landing-hero .hero-layout {
    gap: 28px;
}

.landing-hero .hero-feature-card {
    max-width: 440px;
}

.landing-hero .hero-feature-image {
    aspect-ratio: 4 / 4.6;
}

.landing-hero .hero-feature-caption {
    margin-top: 14px;
}

.landing-client-strip {
    border-top: 1px solid var(--border);
}

.landing-section {
    padding: 72px 0;
}

.landing-story-section,
.landing-testimonials-section,
.landing-book-section {
    background: rgba(255, 255, 255, 0.015);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.landing-outcomes-grid,
.landing-offers-grid {
    margin-bottom: 32px;
}

.landing-outcomes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.landing-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.landing-stats-grid .stat-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.landing-video-grid {
    align-items: start;
}

.landing-location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.landing-location-card,
.landing-team-panel,
.landing-trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.landing-location-card,
.landing-team-panel {
    padding: 24px;
}

.landing-team-panel {
    display: grid;
    gap: 20px;
}

.landing-location-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
}

.landing-meta-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.landing-meta-item span {
    color: var(--text-secondary);
    line-height: 1.6;
}

.landing-book-form {
    max-width: none;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.landing-book-aside {
    display: grid;
    gap: 20px;
}

.landing-trust-card {
    padding: 24px;
}

.landing-calendar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    text-align: center;
}

.landing-book-section .pill-option label {
    padding: 9px 14px;
    min-height: 40px;
    font-size: 0.76rem;
}

.landing-book-section .calendly-embed {
    min-height: 520px;
}

.landing-footer {
    padding: 28px 0 40px;
}

.landing-footer-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.landing-footer-links {
    display: flex;
    gap: 16px;
}

.landing-footer-links a {
    color: inherit;
}

.landing-mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 250;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(15, 15, 20, 0.94);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
}

.landing-mobile-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .landing-page-body {
        padding-bottom: 0;
    }

    .landing-topbar-inner {
        min-height: 76px;
    }

    .landing-brand-sub {
        display: inline;
    }

    .landing-topbar .logo-text {
        font-size: 1.25rem;
        letter-spacing: 0.15em;
    }

    .landing-topbar-cta {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .landing-hero {
        padding-top: 48px;
    }

    .landing-hero .hero-layout {
        gap: 40px;
    }

    .landing-hero .hero-feature-card {
        max-width: 520px;
    }

    .landing-hero .hero-feature-image {
        aspect-ratio: 4 / 5;
    }

    .landing-hero .hero-feature-caption {
        margin-top: 16px;
    }

    .landing-section {
        padding: 88px 0;
    }

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

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

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

    .landing-footer-inner {
        flex-direction: row;
    }

    .landing-mobile-cta {
        display: none;
    }
}

@media (min-width: 1024px) {
    .landing-location-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        align-items: start;
    }
}
