﻿/* =============================================================
   PENGUINCLIP — site.css
   Paste this entire block into your wwwroot/css/site.css
   ============================================================= */

/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
    --blue: #00B5D8;
    --navy: #1E3A5F;
    --offwhite: #F8F9FA;
    --white: #FFFFFF;
    --navy-dk: #142840;
    --blue-lt: #E6F9FD;
    --blue-mid: #0098B8;
    --text: #1E3A5F;
    --muted: #6B8099;
    --border: rgba(30,58,95,0.10);
    --shadow: 0 4px 24px rgba(30,58,95,0.10);
    --shadow-lg: 0 16px 64px rgba(30,58,95,0.16);
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

/* Override Bootstrap container wrapper added by _Layout */
.container > main {
    padding: 0;
    max-width: none;
}

/* Remove Bootstrap's default container padding from main content */
div.container {
    max-width: none;
    padding: 0;
    margin: 0;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 88px;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

    .nav.scrolled {
        box-shadow: var(--shadow);
    }

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .nav-links a {
        font-size: 1.05rem;
        font-weight: 500;
        color: var(--navy);
        opacity: 0.75;
        transition: opacity 0.2s;
    }

        .nav-links a:hover {
            opacity: 1;
        }

.nav-cta {
    background: var(--blue);
    color: var(--white) !important;
    opacity: 1 !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 1.05rem;
    transition: background 0.2s, transform 0.15s !important;
}

    .nav-cta:hover {
        background: var(--blue-mid) !important;
        transform: translateY(-1px);
    }

.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 36px;
    height: 36px;
}

    .nav-burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: transform 0.25s, opacity 0.25s;
    }

    .nav-burger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-burger.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-burger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 5% 80px;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(0,181,216,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(0,181,216,0.07) 1px, transparent 1px);
        background-size: 60px 60px;
        animation: gridDrift 20s linear infinite;
    }

@keyframes gridDrift {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(60px);
    }
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,181,216,0.25), transparent 70%);
    top: -100px;
    right: 10%;
    animation: float1 8s ease-in-out infinite;
}

.hero-blob-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0,181,216,0.12), transparent 70%);
    bottom: 0;
    left: 5%;
    animation: float2 11s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,181,216,0.15);
    border: 1px solid rgba(0,181,216,0.3);
    border-radius: 40px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--blue);
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

    .hero-eyebrow::before {
        content: '';
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--blue);
        animation: pulse 2s ease-in-out infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.hero-headline {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

    .hero-headline .accent {
        color: var(--blue);
    }

    .hero-headline .underline-accent {
        position: relative;
        display: inline-block;
    }

        .hero-headline .underline-accent::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--blue);
            border-radius: 2px;
        }

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.62);
    max-width: 480px;
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 0 0 0 rgba(0,181,216,0.4);
    display: inline-block;
}

    .btn-primary:hover {
        background: var(--blue-mid);
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(0,181,216,0.35);
    }

.btn-ghost {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

    .btn-ghost:hover {
        color: var(--white);
    }

    .btn-ghost svg {
        transition: transform 0.2s;
    }

    .btn-ghost:hover svg {
        transform: translateX(4px);
    }

.hero-trust {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-trust-text {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
}

.hero-trust-avatars {
    display: flex;
}

.avatar-bubble {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--blue);
    border: 2px solid var(--navy);
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
}

    .avatar-bubble:first-child {
        margin-left: 0;
    }

/* Phone mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-stack {
    position: relative;
    width: 280px;
    overflow: visible;
}

.phone-frame {
    width: 240px;
    background: var(--navy-dk);
    border-radius: 36px;
    border: 2px solid rgba(0,181,216,0.25);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.phone-notch {
    height: 28px;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-notch-bar {
    width: 80px;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
}

.phone-screen {
    padding: 0;
    aspect-ratio: 9/16;
    background: linear-gradient(160deg, #1a2a40 0%, #0d1e30 100%);
    position: relative;
    overflow: hidden;
}

.phone-clip-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--blue);
    color: var(--white);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.phone-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: rgba(0,181,216,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .phone-play-icon::after {
        content: '';
        border-left: 20px solid white;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        margin-left: 4px;
    }

.phone-waveform {
    position: absolute;
    bottom: 20px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 32px;
}

.wf-bar {
    flex: 1;
    background: rgba(0,181,216,0.5);
    border-radius: 2px;
    animation: wfAnim 1.2s ease-in-out infinite;
}

    .wf-bar:nth-child(2n) {
        animation-delay: 0.2s;
    }

    .wf-bar:nth-child(3n) {
        animation-delay: 0.4s;
    }

    .wf-bar:nth-child(4n) {
        animation-delay: 0.1s;
    }

    .wf-bar:nth-child(5n) {
        animation-delay: 0.35s;
    }

@keyframes wfAnim {
    0%, 100% {
        height: 30%;
    }

    50% {
        height: 100%;
    }
}

/* Floating badge cards */
.badge-float {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    animation: floatBadge 6s ease-in-out infinite;
    z-index: 10;
}

.badge-float-1 {
    top: 20%;
    right: -60px;
    animation-delay: 0s;
}

.badge-float-2 {
    bottom: 25%;
    left: -70px;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.badge-icon {
    font-size: 1.3rem;
}

.badge-text-main {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--navy);
}

.badge-text-sub {
    font-size: 0.62rem;
    color: var(--muted);
}

/* ─────────────────────────────────────────
   LOGOS STRIP
───────────────────────────────────────── */
.logos-strip {
    background: var(--offwhite);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 5%;
    text-align: center;
}

.logos-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.platform-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 40px;
    box-shadow: 0 2px 8px rgba(30,58,95,0.06);
}

    .platform-pill span:first-child {
        font-size: 1.2rem;
    }

    .platform-pill span:last-child {
        font-weight: 600;
        font-size: 0.85rem;
        color: var(--navy);
    }

/* ─────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────── */
.how {
    padding: 100px 5%;
    background: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 60px;
    font-weight: 300;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2px;
    position: relative;
}



.step-card {
    background: var(--offwhite);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}

    .step-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.step-num {
    width: 52px;
    height: 52px;
    background: var(--blue);
    color: var(--white);
    border-radius: 16px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: background 0.25s, color 0.25s;
}

.step-card:hover .step-num {
    background: var(--white);
    color: var(--blue);
}

.step-emoji {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.step-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials {
    background: var(--navy);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

    .testimonials::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(0,181,216,0.1), transparent 65%);
        pointer-events: none;
    }

    .testimonials .section-label {
        color: var(--blue);
    }

    .testimonials .section-title {
        color: var(--white);
        margin-bottom: 0;
    }

.testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 52px;
    gap: 24px;
    flex-wrap: wrap;
}

    .testimonials-header .section-sub {
        margin-bottom: 0;
        color: rgba(255,255,255,0.45);
    }

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testi-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 32px;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    position: relative;
}

    .testi-card:hover {
        background: rgba(255,255,255,0.09);
        border-color: rgba(0,181,216,0.4);
        transform: translateY(-4px);
    }

.testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--blue);
    font-size: 1rem;
}

.testi-quote {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    margin-bottom: 28px;
    font-style: italic;
}

    .testi-quote::before {
        content: '\201C';
        font-size: 1.4rem;
        color: var(--blue);
        font-style: normal;
        line-height: 0;
        vertical-align: -8px;
        margin-right: 4px;
    }

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--white);
    flex-shrink: 0;
}

.testi-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
}

.testi-handle {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    margin-top: 2px;
}

.testi-metric {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(0,181,216,0.15);
    border: 1px solid rgba(0,181,216,0.3);
    border-radius: 8px;
    padding: 4px 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--blue);
}

/* ─────────────────────────────────────────
   RESULTS STRIP
───────────────────────────────────────── */
.results {
    background: var(--blue);
    padding: 60px 5%;
}

.results-inner {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.result-item {
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

    .result-item:last-child {
        border-right: none;
    }

.result-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 6px;
}

.result-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

/* ─────────────────────────────────────────
   VIDEO CLIPPING SECTION
───────────────────────────────────────── */
.clipping {
    padding: 100px 5%;
    background: var(--offwhite);
    overflow: hidden;
}

.clipping-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.clipping-visual {
    position: relative;
}

.clipping-timeline {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-lg);
}

.tl-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tl-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy);
}

.tl-badge {
    background: var(--blue-lt);
    color: var(--blue);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.source-bar {
    background: var(--offwhite);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.source-icon {
    width: 36px;
    height: 36px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.source-info {
    flex: 1;
}

.source-name {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--navy);
}

.source-dur {
    font-size: 0.68rem;
    color: var(--muted);
    margin-top: 2px;
}

.source-progress {
    height: 4px;
    background: #e0e7ee;
    border-radius: 2px;
    margin-top: 8px;
}

.source-progress-fill {
    height: 100%;
    width: 72%;
    background: linear-gradient(90deg, var(--blue), var(--navy));
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

    .source-progress-fill::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
        animation: shimmer 2s infinite;
    }

@keyframes shimmer {
    to {
        left: 100%;
    }
}

.clips-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

.clips-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.clip-thumb {
    background: var(--navy);
    border-radius: 12px;
    aspect-ratio: 9/16;
    width: 72px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    flex-shrink: 0;
}

    .clip-thumb:hover {
        transform: scale(1.06);
    }

.clip-thumb-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,181,216,0.3), rgba(30,58,95,0.8));
}

.clip-thumb-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .clip-thumb-play::after {
        content: '';
        border-left: 8px solid var(--navy);
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        margin-left: 2px;
    }

.clip-thumb-num {
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
}

.clip-more {
    width: 72px;
    aspect-ratio: 9/16;
    border-radius: 12px;
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

    .clip-more span:first-child {
        font-family: 'Syne', sans-serif;
        font-weight: 800;
        font-size: 1rem;
        color: var(--blue);
    }

    .clip-more span:last-child {
        font-size: 0.58rem;
        color: var(--muted);
    }

.delivery-chips {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.delivery-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--blue-lt);
    border: 1px solid rgba(0,181,216,0.25);
    border-radius: 40px;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--navy);
}

.clipping-content {
    position: relative;
    z-index: 1;
}

.features-list {
    list-style: none;
    margin-top: 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-check {
    width: 28px;
    height: 28px;
    background: var(--blue-lt);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text-main {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 2px;
}

.feature-text-sub {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.5;
}

/* ─────────────────────────────────────────
   PRICING TEASER
───────────────────────────────────────── */
.pricing-teaser {
    padding: 100px 5%;
    background: var(--white);
    text-align: center;
}

    .pricing-teaser .section-label,
    .pricing-teaser .section-title {
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-teaser .section-sub {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

.plan-preview-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.plan-preview-card {
    background: var(--offwhite);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: left;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
}

    .plan-preview-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .plan-preview-card.popular {
        border-color: var(--blue);
        background: var(--white);
    }

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-preview-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.plan-preview-price {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--navy);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 4px;
}

    .plan-preview-price span {
        font-size: 0.9rem;
        font-weight: 400;
        color: var(--muted);
    }

.plan-preview-clips {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 20px;
    font-weight: 300;
}

.plan-preview-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 16px;
}

/* ─────────────────────────────────────────
   CTA BAND
───────────────────────────────────────── */
.cta-band {
    background: var(--navy);
    padding: 90px 5%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .cta-band::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(0,181,216,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,181,216,0.05) 1px, transparent 1px);
        background-size: 40px 40px;
    }

.cta-band-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-band-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.cta-band-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 36px;
}

.cta-band-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline-white {
    color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

    .btn-outline-white:hover {
        background: rgba(255,255,255,0.08);
        color: var(--white);
    }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
    background: var(--navy-dk);
    padding: 48px 5% 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    background: var(--navy);
    border: 1px solid rgba(0,181,216,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
}

.footer-wordmark {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
}

    .footer-wordmark span {
        color: var(--blue);
    }

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links a {
        font-size: 0.82rem;
        color: rgba(255,255,255,0.4);
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: rgba(255,255,255,0.8);
        }

.footer-bottom {
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.2);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .results-inner {
        grid-template-columns: repeat(2,1fr);
    }

    .clipping-inner {
        grid-template-columns: 1fr;
    }

    .plan-preview-row {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 8px 5% 20px;
        gap: 0;
        box-shadow: 0 8px 24px rgba(30,58,95,0.10);
        z-index: 99;
    }

    .nav-links.open li {
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open li:last-child {
        border-bottom: none;
    }

    .nav-links.open a {
        display: block;
        padding: 14px 0;
        font-size: 1.05rem;
        opacity: 1;
    }
}


/* =============================================================
   PRICING PAGE — add to site.css
   ============================================================= */

/* ─────────────────────────────────────────
   PRICING HERO
───────────────────────────────────────── */
.pricing-hero {
    padding: 120px 5% 0;
    background: var(--navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .pricing-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(0,181,216,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0,181,216,0.06) 1px, transparent 1px);
        background-size: 50px 50px;
    }

.pricing-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,181,216,0.18), transparent 65%);
}

.pricing-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.pricing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,181,216,0.15);
    border: 1px solid rgba(0,181,216,0.3);
    border-radius: 40px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--blue);
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.pricing-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--white);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
}

    .pricing-title span {
        color: var(--blue);
    }

.pricing-sub {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 32px;
}

.billing-toggle {
    display: inline-flex;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 40px;
    padding: 5px;
    gap: 4px;
}

.toggle-btn {
    padding: 8px 22px;
    border-radius: 34px;
    border: none;
    background: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.2s;
}

    .toggle-btn.active {
        background: var(--blue);
        color: var(--white);
    }

.save-badge {
    display: inline-block;
    background: rgba(0,181,216,0.2);
    color: var(--blue);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 8px;
    vertical-align: middle;
}

/* ─────────────────────────────────────────
   PLANS GRID
───────────────────────────────────────── */
.plans-section {
    padding: 0 5% 80px;
    background: var(--navy);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 40px;
    align-items: start;
}

.plan-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 36px 30px 32px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background 0.3s;
    display: flex;
    flex-direction: column;
}

    .plan-card:hover {
        transform: translateY(-6px);
        background: rgba(255,255,255,0.08);
        border-color: rgba(0,181,216,0.3);
    }

    .plan-card.popular {
        background: var(--white);
        border: 2px solid var(--blue);
        transform: translateY(-12px);
        box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,181,216,0.2);
    }

        .plan-card.popular:hover {
            transform: translateY(-18px);
            box-shadow: 0 40px 100px rgba(0,0,0,0.45);
        }

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    font-family: 'Syne', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0,181,216,0.5);
}

.plan-tier {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

.plan-card.popular .plan-tier {
    color: var(--blue);
}

.plan-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.plan-price-dollar {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1;
}

.plan-card.popular .plan-price-dollar {
    color: var(--navy);
}

.plan-price-period {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.35);
}

.plan-card.popular .plan-price-period {
    color: var(--muted);
}

.billed-annually {
    display: none;
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 5px;
    margin-bottom: 14px;
    font-weight: 500;
}

.plan-tagline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    margin-bottom: 28px;
    min-height: 36px;
}

.plan-card.popular .plan-tagline {
    color: var(--muted);
}

.plan-cta {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    margin-bottom: 28px;
    border: none;
    cursor: pointer;
}

.plan-cta-outline {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
}

    .plan-cta-outline:hover {
        background: rgba(255,255,255,0.14);
        border-color: rgba(255,255,255,0.3);
    }

.plan-cta-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0,181,216,0.4);
}

    .plan-cta-primary:hover {
        background: var(--blue-mid);
        box-shadow: 0 8px 32px rgba(0,181,216,0.55);
        transform: translateY(-1px);
    }

.plan-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 24px;
}

.plan-card.popular .plan-divider {
    background: rgba(30,58,95,0.1);
}

.plan-section-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 12px;
}

.plan-card.popular .plan-section-label {
    color: var(--blue);
}

.plan-io-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.plan-io-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 10px 14px;
}

.plan-card.popular .plan-io-pill {
    background: var(--offwhite);
}

.io-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.io-icon-in {
    background: rgba(0,181,216,0.15);
}

.io-icon-out {
    background: rgba(30,58,95,0.15);
}

.io-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 2px;
}

.plan-card.popular .io-label {
    color: var(--muted);
}

.io-value {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--white);
}

.plan-card.popular .io-value {
    color: var(--navy);
}

.clip-highlight {
    background: rgba(0,181,216,0.12);
    border: 1px solid rgba(0,181,216,0.2);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.clip-highlight-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--blue);
    letter-spacing: -1px;
    line-height: 1;
}

.clip-highlight-text-main {
    font-weight: 600;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.85);
}

.plan-card.popular .clip-highlight-text-main {
    color: var(--navy);
}

.clip-highlight-text-sub {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.35);
}

.plan-card.popular .clip-highlight-text-sub {
    color: var(--muted);
}

.plan-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
}

.plan-card.popular .plan-feature {
    color: #334a62;
}

.plan-feature-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0,181,216,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--blue);
}

.plan-feature.exclusive .plan-feature-icon {
    background: rgba(0,181,216,0.25);
}

.plan-feature.exclusive {
    color: rgba(255,255,255,0.85);
}

.plan-card.popular .plan-feature.exclusive {
    color: var(--navy);
    font-weight: 500;
}

/* ─────────────────────────────────────────
   CUSTOM PACK BANNER
───────────────────────────────────────── */
.custom-pack-band {
    background: var(--navy);
    padding: 0 5% 48px;
}

.custom-pack-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.custom-pack-card {
    background: linear-gradient(135deg, rgba(0,181,216,0.12) 0%, rgba(0,181,216,0.04) 100%);
    border: 1px solid rgba(0,181,216,0.25);
    border-radius: 20px;
    padding: 36px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.custom-pack-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.custom-pack-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(0,181,216,0.15);
    border: 1px solid rgba(0,181,216,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.custom-pack-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 5px;
}

.custom-pack-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    max-width: 520px;
    line-height: 1.6;
}

.custom-pack-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.custom-pack-link {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    font-weight: 400;
    white-space: nowrap;
}

/* ─────────────────────────────────────────
   COMPARISON TABLE
───────────────────────────────────────── */
.compare-section {
    padding: 90px 5%;
    background: var(--offwhite);
}

.compare-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.compare-mobile {
    display: none;
}

/* ── Mobile comparison cards (always styled, toggled by display) ── */
.cmp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.cmp-card.cmp-popular {
    border-color: var(--blue);
    border-width: 2px;
}

.cmp-popular-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cmp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.cmp-plan-name {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--navy);
}

.cmp-popular .cmp-plan-name {
    color: var(--blue);
}

.cmp-plan-price {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--navy);
}

.cmp-plan-price span {
    font-size: 0.82rem;
    font-weight: 400;
    opacity: 0.6;
}

.cmp-section {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--offwhite);
    margin: 12px -24px 6px;
    padding: 7px 24px;
}

.cmp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(30,58,95,0.06);
    font-size: 0.88rem;
}

.cmp-row:last-child {
    border-bottom: none;
}

.cmp-label {
    color: var(--navy);
    font-weight: 500;
}

.cmp-val {
    color: var(--muted);
    text-align: right;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

    .compare-table thead tr {
        background: var(--navy);
    }

    .compare-table thead th {
        padding: 28px 22px;
        font-family: 'Syne', sans-serif;
        font-weight: 800;
        font-size: 1.35rem;
        color: rgba(255,255,255,0.8);
        text-align: center;
        border-right: 1px solid rgba(255,255,255,0.06);
        line-height: 1.3;
    }

        .compare-table thead th:first-child {
            text-align: left;
            color: rgba(255,255,255,0.55);
            font-size: 1.2rem;
        }

        .compare-table thead th:last-child {
            border-right: none;
        }

        .compare-table thead th.popular-col {
            color: var(--blue);
        }

        .compare-table thead th span {
            font-size: 1.05rem;
            font-weight: 500;
            opacity: 0.65;
        }

    .compare-table tbody tr {
        border-bottom: 1px solid rgba(30,58,95,0.07);
        transition: background 0.15s;
    }

        .compare-table tbody tr:last-child {
            border-bottom: none;
        }

        .compare-table tbody tr:hover {
            background: rgba(0,181,216,0.03);
        }

    .compare-table tbody td {
        padding: 16px 22px;
        font-size: 0.92rem;
        text-align: center;
        color: var(--muted);
        border-right: 1px solid rgba(30,58,95,0.06);
    }

        .compare-table tbody td:first-child {
            text-align: left;
            font-weight: 600;
            color: var(--navy);
            border-right: none;
        }

        .compare-table tbody td:last-child {
            border-right: none;
        }

        .compare-table tbody td.popular-col {
            background: rgba(0,181,216,0.04);
        }

.check-yes {
    color: var(--blue);
    font-size: 1.1rem;
    font-weight: 700;
}

.check-no {
    color: #cdd5de;
    font-size: 1rem;
}

.compare-table tbody tr.section-row td {
    background: var(--offwhite);
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    padding: 11px 22px;
}

    .compare-table tbody tr.section-row td.popular-col {
        background: rgba(0,181,216,0.05);
    }

/* ─────────────────────────────────────────
   GUARANTEE
───────────────────────────────────────── */
.guarantee {
    background: var(--blue-lt);
    border-top: 1px solid rgba(0,181,216,0.15);
    border-bottom: 1px solid rgba(0,181,216,0.15);
    padding: 60px 5%;
}

.guarantee-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
}

.guarantee-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.guarantee-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.guarantee-text {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 560px;
}

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq-section {
    padding: 90px 5%;
    background: var(--white);
}

.faq-inner {
    max-width: 760px;
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    gap: 16px;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--offwhite);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--blue);
    flex-shrink: 0;
    transition: transform 0.25s;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--muted);
    font-weight: 300;
}

/* ─────────────────────────────────────────
   PRICING PAGE RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.popular {
        transform: none;
    }

    .compare-desktop {
        display: none;
    }

    .compare-mobile {
        display: block;
    }

    .custom-pack-card {
        padding: 28px 24px;
    }
}


/* =============================================================
   SIGNUP PAGE — add to site.css
   ============================================================= */

/* ─────────────────────────────────────────
   PAGE LAYOUT
───────────────────────────────────────── */

/* Override the Bootstrap container on the signup page so the
   two-column grid fills the viewport width */
.page-wrap ~ *,
.page-wrap {
    --error: #e05c2a;
    --success: #05b88a;
}

.page-wrap {
    min-height: 100vh;
    padding: 100px 5% 60px;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    max-width: 1160px;
    margin: 0 auto;
    align-items: start;
}

/* ─────────────────────────────────────────
   LEFT PANEL
───────────────────────────────────────── */
.left-panel {
    padding-top: 12px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-lt);
    border: 1px solid rgba(0,181,216,0.3);
    border-radius: 40px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

    .eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--blue);
    }

.left-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    color: var(--navy);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
}

    .left-title span {
        color: var(--blue);
    }

.left-sub {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 420px;
    margin-bottom: 40px;
}

.trust-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
}

.trust-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--blue-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.trust-text-main {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy);
    margin-bottom: 3px;
}

.trust-text-sub {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.5;
}

/* ─────────────────────────────────────────
   FORM CARD
───────────────────────────────────────── */
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.form-card-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.form-card-sub {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 28px;
    line-height: 1.5;
}

/* ─────────────────────────────────────────
   PROGRESS BAR
───────────────────────────────────────── */
.form-progress {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 30px;
}

.progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
}

    .progress-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 13px;
        left: calc(50% + 13px);
        right: calc(-50% + 13px);
        height: 2px;
        background: var(--border);
        z-index: 0;
    }

    .progress-step.done:not(:last-child)::after {
        background: var(--blue);
    }

.step-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    color: var(--muted);
    position: relative;
    z-index: 1;
    transition: all 0.25s;
}

.progress-step.active .step-dot,
.progress-step.done .step-dot {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
}

.step-label {
    font-size: 0.58rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.progress-step.active .step-label,
.progress-step.done .step-label {
    color: var(--blue);
}

/* ─────────────────────────────────────────
   FORM SECTIONS & FIELDS
───────────────────────────────────────── */
.form-section {
    display: none;
}

    .form-section.active {
        display: block;
    }

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

.field-group {
    margin-bottom: 16px;
}

.field-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--navy);
    margin-bottom: 6px;
}

.field-optional {
    font-weight: 400;
    color: var(--muted);
    font-size: 0.7rem;
    margin-left: 4px;
}

.field-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
}

    .field-input:focus {
        border-color: var(--blue-mid);
        box-shadow: 0 0 0 3px rgba(0,181,216,0.12);
    }

    .field-input::placeholder {
        color: #b0bec8;
    }

    .field-input.error {
        border-color: #e05c2a;
    }

    .field-input textarea {
        resize: vertical;
        min-height: 80px;
        line-height: 1.5;
    }

.field-error {
    font-size: 0.7rem;
    color: #e05c2a;
    margin-top: 4px;
    display: none;
}

.field-input.error + .field-error {
    display: block;
}

/* Password toggle */
.password-wrap {
    position: relative;
}

    .password-wrap .field-input {
        padding-right: 42px;
    }

.pw-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    padding: 2px;
    display: flex;
    align-items: center;
}

    .pw-toggle:hover {
        color: var(--navy);
    }

/* Select */
select.field-input {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B8099' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

/* Plan preview box */
.plan-preview-box {
    display: none;
    margin-top: 10px;
    background: var(--blue-lt);
    border: 1px solid rgba(0,181,216,0.25);
    border-radius: 10px;
    padding: 14px 16px;
}

    .plan-preview-box.visible {
        display: block;
    }

.ppb-name {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--navy);
}

.ppb-price {
    font-size: 0.8rem;
    color: var(--blue);
    font-weight: 600;
    margin-top: 2px;
}

.ppb-desc {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 5px;
    line-height: 1.5;
    font-weight: 300;
}

/* Radio toggle buttons */
.toggle-group {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.toggle-option {
    flex: 1;
}

    .toggle-option input[type="radio"] {
        display: none;
    }

    .toggle-option label {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        padding: 11px 10px;
        cursor: pointer;
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--muted);
        transition: all 0.2s;
        text-align: center;
        background: var(--white);
    }

    .toggle-option input[type="radio"]:checked + label {
        border-color: var(--blue);
        background: var(--blue-lt);
        color: var(--navy);
        font-weight: 600;
    }

    .toggle-option label:hover {
        border-color: rgba(0,181,216,0.4);
        color: var(--navy);
    }

/* Form divider */
.form-divider {
    height: 1px;
    background: var(--border);
    margin: 22px 0;
}

/* ─────────────────────────────────────────
   FORM BUTTONS
───────────────────────────────────────── */
.form-nav {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.btn-next {
    flex: 1;
    background: var(--blue);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .btn-next:hover {
        background: var(--blue-mid);
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(0,181,216,0.3);
    }

.btn-back {
    background: var(--offwhite);
    color: var(--muted);
    border: 1.5px solid var(--border);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 13px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .btn-back:hover {
        background: var(--border);
        color: var(--navy);
    }

.btn-submit {
    flex: 1;
    background: var(--navy);
    color: var(--white);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 20px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

    .btn-submit:hover {
        background: #142840;
        transform: translateY(-1px);
        box-shadow: 0 10px 32px rgba(30,58,95,0.3);
    }

/* ─────────────────────────────────────────
   SUMMARY RECAP
───────────────────────────────────────── */
.summary-recap {
    background: var(--offwhite);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 20px;
}

.summary-recap-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.summary-lines {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
}

.summary-line-label {
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.summary-line-val {
    font-weight: 600;
    color: var(--navy);
}

/* ─────────────────────────────────────────
   SUCCESS SCREEN
───────────────────────────────────────── */
.success-screen {
    display: none;
    text-align: center;
    padding: 20px 0;
}

    .success-screen.visible {
        display: block;
    }

.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(5,184,138,0.1);
    border: 2px solid rgba(5,184,138,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.success-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.success-sub {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 340px;
    margin: 0 auto 24px;
}

/* ─────────────────────────────────────────
   TERMS NOTE
───────────────────────────────────────── */
.terms-note {
    font-size: 0.68rem;
    color: var(--muted);
    text-align: center;
    margin-top: 14px;
    line-height: 1.6;
}

    .terms-note a {
        color: var(--blue);
    }

/* ─────────────────────────────────────────
   SIGNUP PAGE RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
    .page-wrap {
        grid-template-columns: 1fr;
    }

    .left-panel {
        display: none;
    }

    .form-card {
        position: static;
    }

    .field-row {
        grid-template-columns: 1fr;
    }
}

/* Nav back link (used on signup page) */
.nav-back {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.2s;
}

    .nav-back:hover {
        color: var(--navy);
    }

    .nav-back svg {
        transition: transform 0.2s;
    }

    .nav-back:hover svg {
        transform: translateX(-3px);
    }


/* =============================================================
   WHAT YOU GET — NAVY DARK VARIANT (matches testimonials style)
   ============================================================= */

/* Section background: navy with glow blob like testimonials */
.clipping-navy {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

    .clipping-navy::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(0,181,216,0.1), transparent 65%);
        pointer-events: none;
    }

/* Timeline card: dark glass like testi-card */
.clipping-timeline-dark {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    box-shadow: none !important;
}

    .clipping-timeline-dark:hover {
        background: rgba(255,255,255,0.08) !important;
        border-color: rgba(0,181,216,0.3) !important;
    }

/* Timeline header title */
.tl-title-light {
    color: rgba(255,255,255,0.85) !important;
}

/* Source bar */
.source-bar-dark {
    background: rgba(255,255,255,0.06) !important;
}

.source-icon-dark {
    background: rgba(0,181,216,0.2) !important;
}

.source-name-light {
    color: rgba(255,255,255,0.85) !important;
}

.source-bar-dark .source-dur {
    color: rgba(255,255,255,0.35) !important;
}

.source-progress-dark {
    background: rgba(255,255,255,0.1) !important;
}

/* Clips label */
.clips-label-light {
    color: rgba(255,255,255,0.35) !important;
}

/* clip-more dark border */
.clip-more-dark {
    border-color: rgba(255,255,255,0.15) !important;
}

/* Delivery chips: dark style */
.delivery-chip-dark {
    background: rgba(0,181,216,0.12) !important;
    border-color: rgba(0,181,216,0.25) !important;
    color: rgba(255,255,255,0.8) !important;
}

/* Section label stays blue — already correct */

/* Section title: white on dark */
.section-title-light {
    color: var(--white) !important;
}

/* Section sub: muted white */
.section-sub-light {
    color: rgba(255,255,255,0.55) !important;
    margin-bottom: 0;
}

/* Feature check icon bg: slightly brighter on dark */
.feature-check-dark {
    background: rgba(0,181,216,0.2) !important;
}

/* Feature text: inverted for dark bg */
.feature-text-main-light {
    color: rgba(255,255,255,0.9) !important;
}

.feature-text-sub-light {
    color: rgba(255,255,255,0.5) !important;
}


/* =============================================================
   RESULTS PAGE — add to site.css
   ============================================================= */

/* ─────────────────────────────────────────
   RESULTS HERO
───────────────────────────────────────── */
.results-hero {
    padding: 120px 5% 80px;
    background: var(--navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .results-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(0,181,216,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0,181,216,0.06) 1px, transparent 1px);
        background-size: 50px 50px;
    }

.results-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,181,216,0.18), transparent 65%);
}

.results-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.results-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,181,216,0.15);
    border: 1px solid rgba(0,181,216,0.3);
    border-radius: 40px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--blue);
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.results-hero-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--white);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
}

    .results-hero-title span {
        color: var(--blue);
    }

.results-hero-sub {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    max-width: 540px;
    margin: 0 auto;
}

/* ─────────────────────────────────────────
   HEADLINE STATS STRIP
───────────────────────────────────────── */
.results-stats-strip {
    background: var(--blue);
    padding: 56px 5%;
}

.results-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.results-stat-item {
    padding: 20px 24px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

    .results-stat-item:last-child {
        border-right: none;
    }

.results-stat-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--white);
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 10px;
}

.results-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    line-height: 1.5;
    max-width: 160px;
    margin: 0 auto;
}

/* ─────────────────────────────────────────
   CASE STUDIES
───────────────────────────────────────── */
.case-studies-section {
    padding: 100px 5%;
    background: var(--offwhite);
}

.case-studies-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.case-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: start;
    transition: box-shadow 0.25s;
}

    .case-card:hover {
        box-shadow: var(--shadow-lg);
    }

    .case-card:last-child {
        margin-bottom: 0;
    }

.case-card-featured {
    background: var(--navy);
    border-color: transparent;
}

.case-badge {
    display: inline-block;
    background: var(--blue-lt);
    color: var(--blue);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.case-badge-alt {
    background: rgba(30,58,95,0.08);
    color: var(--navy);
}

.case-card-featured .case-badge {
    background: rgba(0,181,216,0.2);
    color: var(--blue);
}

.case-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--navy);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.case-card-featured .case-title {
    color: var(--white);
}

.case-body {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 28px;
}

.case-card-featured .case-body {
    color: rgba(255,255,255,0.55);
}

.case-quote {
    background: var(--offwhite);
    border-left: 3px solid var(--blue);
    border-radius: 0 12px 12px 0;
    padding: 20px 22px;
}

.case-card-featured .case-quote {
    background: rgba(255,255,255,0.07);
    border-left-color: var(--blue);
}

.case-quote-text {
    font-size: 0.92rem;
    color: var(--navy);
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 16px;
    font-weight: 400;
}

    .case-quote-text::before {
        content: '\201C';
        color: var(--blue);
        font-size: 1.3rem;
        font-style: normal;
        line-height: 0;
        vertical-align: -7px;
        margin-right: 4px;
    }

.case-card-featured .case-quote-text {
    color: rgba(255,255,255,0.85);
}

.case-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.case-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--white);
    flex-shrink: 0;
}

.case-author-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--navy);
}

.case-card-featured .case-author-name {
    color: var(--white);
}

.case-author-role {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 2px;
}

.case-card-featured .case-author-role {
    color: rgba(255,255,255,0.4);
}

/* Metric cards on right */
.case-metrics {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.case-metric-card {
    background: var(--offwhite);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 20px;
}

.case-card-featured .case-metric-card {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.1);
}

.case-metric-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--blue);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 4px;
}

.case-metric-label {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--navy);
    margin-bottom: 2px;
}

.case-card-featured .case-metric-label {
    color: rgba(255,255,255,0.85);
}

.case-metric-period {
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 300;
}

.case-card-featured .case-metric-period {
    color: rgba(255,255,255,0.35);
}

.case-platform-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.case-platform-pill {
    background: var(--blue-lt);
    color: var(--blue);
    border: 1px solid rgba(0,181,216,0.25);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.68rem;
    font-weight: 600;
}

.case-card-featured .case-platform-pill {
    background: rgba(0,181,216,0.15);
    border-color: rgba(0,181,216,0.3);
    color: var(--blue);
}

/* ─────────────────────────────────────────
   PLATFORM PERFORMANCE
───────────────────────────────────────── */
.platform-section {
    padding: 100px 5%;
    background: var(--white);
}

.platform-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0;
}

.platform-card {
    border-radius: 24px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}

    .platform-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.platform-card-tiktok {
    background: var(--navy);
    border: 1px solid rgba(255,255,255,0.08);
}

.platform-card-youtube {
    background: var(--offwhite);
    border: 1px solid var(--border);
}

.platform-card-instagram {
    background: var(--navy);
    border: 1px solid rgba(255,255,255,0.08);
}

.platform-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.platform-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0,181,216,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--blue);
    flex-shrink: 0;
}

.platform-card-youtube .platform-icon {
    background: rgba(30,58,95,0.1);
    color: var(--navy);
}

.platform-name {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
}

.platform-card-youtube .platform-name {
    color: var(--navy);
}

.platform-stat-big {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--blue);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
}

.platform-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 24px;
}

.platform-card-youtube .platform-stat-label {
    color: var(--muted);
}

.platform-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 24px;
}

.platform-card-youtube .platform-divider {
    background: var(--border);
}

.platform-mini-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.platform-mini-num {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 4px;
}

.platform-card-youtube .platform-mini-num {
    color: var(--navy);
}

.platform-mini-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    line-height: 1.5;
}

.platform-card-youtube .platform-mini-label {
    color: var(--muted);
}

/* ─────────────────────────────────────────
   VIRAL SCORE EXPLAINER
───────────────────────────────────────── */
.viral-section {
    background: var(--navy);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

    .viral-section::before {
        content: '';
        position: absolute;
        top: -200px;
        left: -200px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(0,181,216,0.1), transparent 65%);
        pointer-events: none;
    }

.viral-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 80px;
    align-items: center;
}

.viral-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}

.viral-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: background 0.2s, border-color 0.2s;
}

    .viral-stat:hover {
        background: rgba(255,255,255,0.08);
        border-color: rgba(0,181,216,0.3);
    }

.viral-stat-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--blue);
    letter-spacing: -1px;
    line-height: 1;
    min-width: 80px;
    flex-shrink: 0;
}

.viral-stat-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    line-height: 1.5;
}

/* Score card demo */
.score-card-demo {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 28px;
}

.score-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.score-card-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
}

.score-card-badge {
    background: rgba(0,181,216,0.15);
    color: var(--blue);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.score-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.score-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.score-bar-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    width: 48px;
    flex-shrink: 0;
}

.score-bar-track {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}

.score-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease;
}

.score-high {
    background: var(--blue);
}

.score-mid {
    background: rgba(0,181,216,0.55);
}

.score-low {
    background: rgba(0,181,216,0.3);
}

.score-bar-num {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    width: 24px;
    text-align: right;
    flex-shrink: 0;
}

.score-num-high {
    color: var(--blue);
}

.score-num-mid {
    color: rgba(0,181,216,0.7);
}

.score-num-low {
    color: rgba(0,181,216,0.45);
}

.score-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.score-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
}

.score-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.score-dot-high {
    background: var(--blue);
}

.score-dot-mid {
    background: rgba(0,181,216,0.55);
}

.score-dot-low {
    background: rgba(0,181,216,0.3);
}

/* ─────────────────────────────────────────
   RESULTS PAGE RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
    .results-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

        .results-stat-item:nth-child(even) {
            border-bottom: none;
        }

    .case-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }

    .viral-inner {
        grid-template-columns: 1fr;
    }
}


/* =============================================================
   PRELAUNCH LANDING PAGES — add to site.css
   Shared by PrelaunchCoaches, PrelaunchCourseCreators,
   and PrelaunchAgencies
   ============================================================= */

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.prelaunch-hero {
    min-height: 92vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 5% 80px;
}

    .prelaunch-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(0,181,216,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(0,181,216,0.07) 1px, transparent 1px);
        background-size: 60px 60px;
        animation: gridDrift 20s linear infinite;
    }

.prelaunch-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,181,216,0.2), transparent 65%);
}

.prelaunch-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

.prelaunch-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,181,216,0.15);
    border: 1px solid rgba(0,181,216,0.35);
    border-radius: 40px;
    padding: 7px 18px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

.prelaunch-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.prelaunch-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1.08;
    margin-bottom: 24px;
}

    .prelaunch-title span {
        color: var(--blue);
    }

.prelaunch-sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 28px;
}

.prelaunch-offer-pill {
    display: inline-block;
    background: rgba(0,181,216,0.12);
    border: 1px solid rgba(0,181,216,0.3);
    border-radius: 40px;
    padding: 10px 22px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    line-height: 1.5;
}

    .prelaunch-offer-pill strong {
        color: var(--blue);
    }

.prelaunch-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.prelaunch-scarcity {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
}

/* ─────────────────────────────────────────
   PROBLEM STRIP
───────────────────────────────────────── */
.problem-strip {
    background: var(--offwhite);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 5%;
}

.problem-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.problem-strip-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    margin-bottom: 28px;
}

.problem-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.problem-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.2s;
}

    .problem-item:hover {
        box-shadow: var(--shadow);
    }

.problem-icon {
    font-size: 1.5rem;
}

.problem-text {
    font-size: 0.85rem;
    color: var(--navy);
    line-height: 1.6;
    font-weight: 400;
}

/* ─────────────────────────────────────────
   TAILORED SECTION (two-col feature + visual)
───────────────────────────────────────── */
.tailored-section {
    padding: 100px 5%;
    background: var(--white);
    overflow: hidden;
}

.tailored-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tailored-visual {
    position: relative;
}

/* ─────────────────────────────────────────
   PRELAUNCH OFFER SECTION
───────────────────────────────────────── */
.prelaunch-offer-section {
    padding: 100px 5%;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .prelaunch-offer-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(0,181,216,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,181,216,0.05) 1px, transparent 1px);
        background-size: 50px 50px;
    }

    .prelaunch-offer-section .section-label {
        color: var(--blue);
    }

    .prelaunch-offer-section .section-title {
        color: var(--white);
    }

    .prelaunch-offer-section .section-sub {
        color: rgba(255,255,255,0.5);
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

.prelaunch-offer-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.prelaunch-scarcity-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,181,216,0.12);
    border: 1px solid rgba(0,181,216,0.25);
    border-radius: 40px;
    padding: 8px 20px;
    font-size: 0.78rem;
    color: var(--blue);
    font-weight: 500;
    margin-bottom: 44px;
}

/* ─────────────────────────────────────────
   PRELAUNCH PLAN CARDS
───────────────────────────────────────── */
.prelaunch-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.prelaunch-plan-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 32px 28px;
    text-align: left;
    position: relative;
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

    .prelaunch-plan-card:hover {
        transform: translateY(-4px);
        background: rgba(255,255,255,0.08);
        border-color: rgba(0,181,216,0.3);
    }

.prelaunch-plan-popular {
    background: var(--white) !important;
    border: 2px solid var(--blue) !important;
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(0,0,0,0.35);
}

    .prelaunch-plan-popular:hover {
        transform: translateY(-16px) !important;
    }

.prelaunch-plan-agency-highlight {
    border-color: rgba(0,181,216,0.4) !important;
    background: rgba(0,181,216,0.06) !important;
}

.prelaunch-popular-badge,
.prelaunch-agency-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Syne', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 30px;
    white-space: nowrap;
}

.prelaunch-popular-badge {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0,181,216,0.5);
}

.prelaunch-agency-badge {
    background: rgba(0,181,216,0.2);
    border: 1px solid rgba(0,181,216,0.4);
    color: var(--blue);
}

.prelaunch-plan-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
}

.prelaunch-price-block {
    margin-bottom: 8px;
}

.prelaunch-was {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.prelaunch-plan-popular .prelaunch-was {
    color: var(--muted);
}

.prelaunch-now {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 6px;
}

    .prelaunch-now span {
        font-size: 0.9rem;
        font-weight: 400;
        color: rgba(255,255,255,0.4);
    }

.prelaunch-plan-popular .prelaunch-now span {
    color: var(--muted);
}

.prelaunch-saving {
    display: inline-block;
    background: rgba(0,181,216,0.2);
    border: 1px solid rgba(0,181,216,0.35);
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.prelaunch-annual-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
}

    .prelaunch-annual-note span {
        text-decoration: line-through;
        opacity: 0.6;
    }

.prelaunch-plan-popular .prelaunch-annual-note {
    color: var(--muted);
}

.prelaunch-plan-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.prelaunch-plan-popular .prelaunch-plan-divider {
    background: rgba(30,58,95,0.1);
}

.prelaunch-plan-includes {
    margin-bottom: 24px;
}

.prelaunch-includes-title {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 12px;
}

.prelaunch-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .prelaunch-feature-list li {
        font-size: 0.8rem;
        color: rgba(255,255,255,0.6);
        font-weight: 300;
        line-height: 1.5;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

        .prelaunch-feature-list li::before {
            content: '✓';
            color: var(--blue);
            font-weight: 700;
            font-size: 0.75rem;
            flex-shrink: 0;
            margin-top: 1px;
        }

.prelaunch-feature-list-dark li {
    color: var(--navy);
}

.prelaunch-plan-cta {
    display: block;
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.prelaunch-cta-outline {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
}

    .prelaunch-cta-outline:hover {
        background: rgba(255,255,255,0.14);
        border-color: rgba(255,255,255,0.3);
        color: var(--white);
    }

.prelaunch-cta-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0,181,216,0.4);
}

    .prelaunch-cta-primary:hover {
        background: var(--blue-mid);
        box-shadow: 0 8px 32px rgba(0,181,216,0.55);
        transform: translateY(-1px);
        color: var(--white);
    }

/* ─────────────────────────────────────────
   EMAIL CAPTURE SECTION
───────────────────────────────────────── */
.email-capture-section {
    background: var(--navy);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .email-capture-section::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(0,181,216,0.1), transparent 65%);
        pointer-events: none;
    }

.email-capture-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.email-capture-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.3);
    text-align: left;
    margin-top: 40px;
}

.email-capture-form-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.email-capture-form-sub {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.5;
}

.ec-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.ec-field-group {
    margin-bottom: 14px;
}

.ec-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--navy);
    margin-bottom: 6px;
}

.ec-optional {
    font-weight: 400;
    color: var(--muted);
    font-size: 0.7rem;
    margin-left: 4px;
}

.ec-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
}

    .ec-input:focus {
        border-color: var(--blue-mid);
        box-shadow: 0 0 0 3px rgba(0,181,216,0.12);
    }

    .ec-input::placeholder {
        color: #b0bec8;
    }

.ec-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B8099' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

.ec-submit-btn {
    width: 100%;
    background: var(--blue);
    color: var(--white);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    margin-top: 8px;
    letter-spacing: 0.3px;
}

    .ec-submit-btn:hover {
        background: var(--blue-mid);
        transform: translateY(-1px);
        box-shadow: 0 10px 32px rgba(0,181,216,0.35);
    }

.ec-terms {
    font-size: 0.68rem;
    color: var(--muted);
    text-align: center;
    margin-top: 12px;
    line-height: 1.6;
}

.ec-success {
    display: none;
    text-align: center;
    padding: 28px 0 8px;
}

.ec-success-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.ec-success-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.ec-success-text {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
}

/* ─────────────────────────────────────────
   PRELAUNCH RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
    .problem-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .tailored-inner {
        grid-template-columns: 1fr;
    }

    .tailored-visual {
        display: none;
    }

    .prelaunch-plans-grid {
        grid-template-columns: 1fr;
    }

    .prelaunch-plan-popular {
        transform: none;
    }

    .ec-field-row {
        grid-template-columns: 1fr;
    }

    .prelaunch-hero-actions {
        flex-direction: column;
        align-items: center;
    }
}


/* =============================================================
   PRELAUNCH COACHES — ADDITIONAL STYLES
   ============================================================= */

/* Problem item — no icon, blue accent bar instead */
.problem-accent {
    width: 32px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    margin-bottom: 4px;
    flex-shrink: 0;
}

/* Plan selector cards */
.ec-plan-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 6px;
}

.ec-plan-card {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 14px 12px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    background: var(--white);
    text-align: center;
    position: relative;
}

    .ec-plan-card:hover {
        border-color: rgba(0,181,216,0.5);
        background: var(--blue-lt);
        transform: translateY(-2px);
    }

.ec-plan-card-selected {
    border-color: var(--blue) !important;
    background: var(--blue-lt) !important;
    box-shadow: 0 0 0 3px rgba(0,181,216,0.15);
}

.ec-plan-card-featured {
    border-color: rgba(0,181,216,0.35);
}

.ec-plan-card-popular {
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.ec-plan-card-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--navy);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    margin-top: 8px;
}

.ec-plan-card-price {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--navy);
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 4px;
}

    .ec-plan-card-price span {
        font-size: 0.7rem;
        font-weight: 400;
        color: var(--muted);
    }

.ec-plan-card-saving {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 4px;
    line-height: 1.3;
}

.ec-plan-card-clips {
    font-size: 0.65rem;
    color: var(--muted);
    font-weight: 300;
}

/* Guarantee centered layout fix */
.guarantee-inner {
    justify-content: center;
}

@media (max-width: 640px) {
    .ec-plan-cards {
        grid-template-columns: 1fr;
    }
}


/* =============================================================
   FOOTER BRAND BLOCK — description under logo
   ============================================================= */
.footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
}

.footer-brand-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.65;
    font-weight: 300;
    margin: 0;
}

/* Ensure footer-inner aligns top so description sits under the logo */
.footer-inner {
    align-items: flex-start;
}


/* =============================================================
   PLATFORM PILL — icon-free modern style update
   ============================================================= */
.platform-pill {
    padding: 10px 24px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 40px;
    box-shadow: 0 2px 8px rgba(30,58,95,0.06);
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .platform-pill:hover {
        border-color: rgba(0,181,216,0.4);
        box-shadow: 0 4px 16px rgba(0,181,216,0.12);
    }

    .platform-pill span {
        font-weight: 600;
        font-size: 0.88rem;
        color: var(--navy);
        letter-spacing: 0.2px;
    }


/* =============================================================
   RESULTS STRIP — 3-item centred layout
   ============================================================= */
.results-inner-three {
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .results-inner-three {
        grid-template-columns: repeat(1, 1fr);
        max-width: 360px;
    }
}


/* =============================================================
   RESULTS STRIP — 3-item centred layout (results-inner-three)
   ============================================================= */
.results-inner-three {
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .results-inner-three {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
}


/* =============================================================
   SIGNUP PAGE — site.css styles (used by SignUp.cshtml)
   ============================================================= */

/* ── PAGE BACKGROUND ── */
.signup-hero {
    background: var(--navy);
    padding: 52px 5% 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .signup-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(0,181,216,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(0,181,216,0.07) 1px, transparent 1px);
        background-size: 50px 50px;
    }

.signup-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,181,216,0.2), transparent 65%);
}

.signup-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.signup-hero-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 14px;
}

    .signup-hero-title span {
        color: var(--blue);
    }

.signup-hero-sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
}

.signup-trust-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,181,216,0.12);
    border: 1px solid rgba(0,181,216,0.25);
    border-radius: 40px;
    padding: 7px 18px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

    .signup-trust-row svg {
        color: var(--blue);
        flex-shrink: 0;
    }

/* ── LAYOUT ── */
.signup-body {
    background: #F0F4F8;
    flex: 1;
    padding: 48px 5% 60px;
}

.signup-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    max-width: 1040px;
    margin: 0 auto;
    align-items: start;
}

/* ── FORM CARD ── */
.signup-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
}

.signup-card-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.signup-card-sub {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 28px;
    line-height: 1.5;
}

/* ── ALERTS ── */
.signup-alert {
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.signup-alert-success {
    background: #E1F5EE;
    border: 1px solid rgba(29,158,117,0.25);
    color: #0F6E56;
}

.signup-alert-warning {
    background: #FFF8EC;
    border: 1px solid rgba(186,117,23,0.25);
    color: #7A4F10;
}

.signup-alert-danger {
    background: #FEF0EF;
    border: 1px solid rgba(226,75,74,0.25);
    color: #A32D2D;
}

.signup-validation-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
}

/* ── SHARED FORM ELEMENTS ── */
.sf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

.sf-group {
    margin-bottom: 16px;
}

.sf-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--navy);
    margin-bottom: 6px;
}

.sf-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
}

    .sf-input:focus {
        border-color: var(--blue-mid);
        box-shadow: 0 0 0 3px rgba(0,181,216,0.12);
    }

    .sf-input::placeholder {
        color: #b0bec8;
    }

.sf-input-group {
    display: flex;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .sf-input-group:focus-within {
        border-color: var(--blue-mid);
        box-shadow: 0 0 0 3px rgba(0,181,216,0.12);
    }

    .sf-input-group .sf-input {
        border: none;
        border-radius: 0;
        box-shadow: none;
        flex: 1;
    }

        .sf-input-group .sf-input:focus {
            box-shadow: none;
        }

.sf-toggle-btn {
    background: var(--offwhite);
    border: none;
    border-left: 1.5px solid var(--border);
    padding: 0 14px;
    color: var(--muted);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
}

    .sf-toggle-btn:hover {
        background: #EEF1F5;
        color: var(--navy);
    }

.sf-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B8099' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

select.sf-input:not(.sf-error) {
    border-color: var(--border);
    box-shadow: none;
    outline: none;
}

select.sf-input:not(.sf-error):focus {
    border-color: var(--blue-mid);
    box-shadow: 0 0 0 3px rgba(0,181,216,0.12);
    outline: none;
}

.sf-validation-msg {
    font-size: 0.72rem;
    color: #A32D2D;
    margin-top: 4px;
    display: block;
}

.sf-check-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.sf-checkbox {
    width: 17px;
    height: 17px;
    accent-color: var(--blue);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.sf-check-label {
    font-size: 0.82rem;
    color: #4A6175;
    line-height: 1.55;
    cursor: pointer;
}

.sf-link {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}

    .sf-link:hover {
        text-decoration: underline;
    }

.sf-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

.sf-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 12px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.2px;
    margin-bottom: 16px;
    cursor: pointer;
    border: none;
}

.sf-login-link {
    text-align: center;
    font-size: 0.82rem;
    color: var(--muted);
}

/* ── RIGHT PANEL ── */
.signup-why {
    position: sticky;
    top: 100px;
}

.signup-why-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: box-shadow 0.2s;
}

    .why-card:hover {
        box-shadow: var(--shadow);
    }

.why-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--blue-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
}

.why-text-main {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 3px;
}

.why-text-sub {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.55;
}

.signup-guarantee {
    background: var(--blue-lt);
    border: 1px solid rgba(0,181,216,0.2);
    border-radius: 14px;
    padding: 18px 20px;
    margin-top: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.signup-guarantee-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.signup-guarantee-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 3px;
}

.signup-guarantee-text {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.55;
}

/* ── SIGNUP RESPONSIVE ── */
@media (max-width: 860px) {
    .signup-layout {
        grid-template-columns: 1fr;
    }

    .signup-why {
        position: static;
    }

    .sf-row {
        grid-template-columns: 1fr;
    }

    .signup-card {
        padding: 28px 22px;
    }
}


/* =============================================================
   LOGIN PAGE — additional styles
   ============================================================= */
.login-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.login-options-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.login-forgot {
    font-size: 0.8rem;
    font-weight: 500;
}

.login-why {
    position: sticky;
    top: 100px;
}

.login-new-account {
    background: var(--navy);
    border-radius: 14px;
    padding: 20px;
    margin-top: 16px;
}

.login-new-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 6px;
}

.login-new-text {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 14px;
}

.login-signup-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.88rem;
}

@media (max-width: 860px) {
    .login-layout {
        grid-template-columns: 1fr;
    }

    .login-why {
        position: static;
    }
}


/* =============================================================
   PRELAUNCH SCARCITY — icon alignment fix
   ============================================================= */
.prelaunch-scarcity {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    text-align: center;
}

.prelaunch-scarcity-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 1;
}


/* =============================================================
   FAQ PAGE — styles
   ============================================================= */
.faq-page-section {
    background: var(--white);
    padding: 80px 5%;
}

.faq-page-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.faq-page-inner-wide {
    margin-bottom: 0;
}

.faq-page-group-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--blue-lt);
}

.faq-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 48px;
}

.faq-inline-link {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}

    .faq-inline-link:hover {
        text-decoration: underline;
    }

/* Override faq-section styles for the page version */
.faq-page-section .faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-page-section .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--navy);
    gap: 16px;
}

.faq-page-section .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--offwhite);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--blue);
    flex-shrink: 0;
    transition: transform 0.25s;
    line-height: 1;
}

.faq-page-section .faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-page-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0;
}

.faq-page-section .faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-page-section .faq-answer p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--muted);
    font-weight: 300;
}

/* FAQ page responsive */
@media (max-width: 900px) {
    .faq-page-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-two-col {
        grid-template-columns: 1fr;
    }
}


.step-card {
    position: relative;
    z-index: 1;
}

.step-num {
    position: relative;
    z-index: 2;
}


/* =============================================================
   SIGNUP / LOGIN — fix top cut-off caused by fixed nav overlap
   The signup-hero and login hero sections need top padding
   equal to the nav height (88px) so content isn't hidden
   ============================================================= */
.signup-hero {
    padding-top: calc(88px + 52px);
}


/* =============================================================
   FAQ PAGE — "btn-outline-white" visibility on blue-lt background
   ============================================================= */
.guarantee .btn-outline-white {
    border-color: rgba(30,58,95,0.3);
    color: var(--navy);
}

    .guarantee .btn-outline-white:hover {
        background: rgba(30,58,95,0.06);
        color: var(--navy);
    }


/* =============================================================
   LOGIN HERO — "Penguin" white, "Clip" blue split title
   ============================================================= */
.hero-title-white {
    color: var(--white);
}


/* =============================================================
   SIGNUP FORM — client-side field validation styles
   ============================================================= */
.sf-input:invalid:not(:placeholder-shown):not(select),
.sf-input.sf-error {
    border-color: #A32D2D;
    box-shadow: 0 0 0 3px rgba(163,45,45,0.1);
}

.sf-field-error {
    font-size: 0.72rem;
    color: #A32D2D;
    margin-top: 4px;
    display: none;
}

    .sf-field-error.visible {
        display: block;
    }


/* =============================================================
   LEGAL PAGES — Privacy & Terms
   ============================================================= */
.legal-section {
    background: var(--white);
    padding: 60px 5% 80px;
}

.legal-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
    align-items: start;
}

/* Table of contents */
.legal-toc {
    position: sticky;
    top: 108px;
    background: var(--offwhite);
    border-radius: 14px;
    padding: 20px 22px;
    border: 1px solid var(--border);
}

.legal-toc-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
}

.legal-toc-list {
    list-style: decimal;
    padding-left: 16px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-toc-link {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.4;
}

    .legal-toc-link:hover {
        color: var(--blue);
    }

/* Body content */
.legal-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.legal-block {
}

.legal-h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--navy);
    letter-spacing: -0.3px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--blue-lt);
}

.legal-p {
    font-size: 0.9rem;
    color: #3a4e62;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 12px;
}

    .legal-p:last-child {
        margin-bottom: 0;
    }

.legal-list {
    list-style: disc;
    padding-left: 20px;
    margin: 8px 0 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .legal-list li {
        font-size: 0.9rem;
        color: #3a4e62;
        line-height: 1.7;
        font-weight: 300;
    }

.legal-link {
    color: var(--blue);
    font-weight: 500;
    text-decoration: none;
}

    .legal-link:hover {
        text-decoration: underline;
    }

@media (max-width: 900px) {
    .legal-inner {
        grid-template-columns: 1fr;
    }

    .legal-toc {
        position: static;
    }
}


/* =============================================================
   NAV — authenticated user dropdown
   ============================================================= */
.nav-user-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-user-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 40px;
    padding: 6px 14px 6px 8px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--navy);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

    .nav-user-btn:hover {
        background: var(--blue-lt);
        border-color: rgba(0,181,216,0.4);
        color: var(--blue);
    }

.nav-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.72rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-user-name {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-plan-badge {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 10px;
}

    .nav-plan-badge.starter {
        background: var(--blue-lt);
        color: var(--blue);
    }

    .nav-plan-badge.pro {
        background: rgba(30,58,95,0.1);
        color: var(--navy);
    }

    .nav-plan-badge.business {
        background: var(--navy);
        color: var(--white);
    }

/* Dropdown */
.nav-user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 200;
}

.nav-user-menu:hover .nav-user-dropdown,
.nav-user-menu:focus-within .nav-user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-header {
    padding: 10px 16px 8px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
}

.nav-dropdown-greeting {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--navy);
    margin-bottom: 2px;
}

.nav-dropdown-email {
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 300;
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    font-size: 0.82rem;
    color: var(--navy);
    font-weight: 400;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

    .nav-dropdown-item:hover {
        background: var(--blue-lt);
        color: var(--blue);
    }

    .nav-dropdown-item svg {
        flex-shrink: 0;
        color: var(--muted);
    }

    .nav-dropdown-item:hover svg {
        color: var(--blue);
    }

.nav-dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

.nav-dropdown-item.logout {
    color: #A32D2D;
}

    .nav-dropdown-item.logout svg {
        color: #A32D2D;
    }

    .nav-dropdown-item.logout:hover {
        background: #FEF0EF;
        color: #A32D2D;
    }
