/* --- Base Styles & Variables --- */
:root {
    /* --- Light Mode / Brand Colors --- */
    --primary-blue: #2563EB;
    /* Bright Royal Blue */
    --primary-dark: #1E293B;
    /* Slate 800 */
    --primary-charcoal: #334155;
    /* Slate 700 */
    --secondary-bg: #F8FAFC;
    /* Slate 50 */
    --white: #FFFFFF;

    /* --- Accents --- */
    --accent-teal: #0D9488;
    /* Teal 600 */
    --accent-green: #10B981;
    /* Emerald 500 (Brighter for Dark Mode) */
    --accent-red: #DC2626;
    /* Red 600 */
    --accent-orange: #F97316;
    /* Orange 500 */
    --accent-glow: rgba(37, 99, 235, 0.5);
    /* Blue Glow */

    /* --- Dark Mode / Cockpit Colors --- */
    --bg-dark: #0F172A;
    /* Slate 900 */
    --bg-card-dark: #1E293B;
    /* Slate 800 */
    --text-light: #E2E8F0;
    /* Slate 200 */
    --text-mute: #94A3B8;
    /* Slate 400 */

    /* --- Utility --- */
    --border-light: #E2E8F0;
    /* Slate 200 */
    --border-dark: #334155;
    /* Slate 700 */

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    --bonus-bg: #FEFBF0;
    --bonus-border: #FBD38D;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-charcoal);
    background-color: var(--secondary-bg);
    /* Light gray background */
    line-height: 1.8;
    /* Increased line-height */
    font-size: 1.05rem;
    -webkit-font-smoothing: antialiased;
    /* Smoother text */
    -moz-osx-font-smoothing: grayscale;
}

/* --- Layout & Helpers --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Dark Mode / Cockpit Utilities --- */
.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

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

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

.glass-panel {
    background: rgba(30, 41, 59, 0.7);
    /* Semi-transparent Slate 800 */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    color: var(--text-light);
}

.glass-panel:hover {
    background: rgba(30, 41, 59, 0.85);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
}

section {
    padding: 40px 0;
}

#hero,
#pricing,
#showcase,
#testimonials,
#faq,
#solution,
#for-leaders,
#problem {
    padding: 60px 0 !important;
}

.section-headline {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 48px;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
    /* Tighter tracking */
}

.section-headline,
h1,
h2,
h3 {
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px !important;
    color: var(--primary-dark);
    letter-spacing: -0.01em;
}

p,
.card-text,
.modal-content p,
.faq-answer,
.pricing-box .offer-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--primary-charcoal);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* --- Buttons --- */
.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #EA580C 0%, #F97316 100%);
    /* Orange 600 to 500 */
    color: var(--white);
    padding: 20px 48px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 9999px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(234, 88, 12, 0.4);
    /* Colored glow */
    transition: all 0.2s cubic-bezier(.4, 0, .2, 1);
    margin-top: 36px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(234, 88, 12, 0.5);
    filter: brightness(110%);
}

.cta-button:disabled {
    background-color: #a0aec0;
    cursor: not-allowed;
}

/* --- Header --- */
.main-header {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-nav a {
    color: var(--primary-charcoal);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
}

/* --- Hero Section (Cockpit Dark) --- */
#hero {
    background: radial-gradient(circle at 50% 0%, #1E293B 0%, #0F172A 100%);
    /* Dark Gradient */
    position: relative;
    padding: 120px 0 100px 0;
    text-align: center;
    overflow: hidden;
    color: var(--white);
}

#hero::before {
    content: "";
    position: absolute;
    top: -40%;
    left: 50%;
    width: 1400px;
    height: 1000px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, rgba(15, 23, 42, 0) 60%);
    /* Blue Glow */
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

#hero h1 {
    font-size: 3.5rem;
    max-width: 900px;
    margin: 0 auto 32px;
    color: var(--white);
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-weight: 800;
    position: relative;
    z-index: 1;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#hero h2 {
    font-size: 1.35rem;
    font-weight: 500;
    margin: 0 auto 32px;
    color: var(--text-mute);
    /* Muted slate */
    max-width: 760px;
    position: relative;
    z-index: 1;
}

#hero .sub-headline {
    font-size: 1.15rem;
    max-width: 720px;
    margin: 0 auto 48px;
    color: #94A3B8;
    /* Slate 400 */
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Secondary Button Dark Mode Override */
#hero .secondary-cta-button {
    background: rgba(255, 255, 255, 0.08);
    /* Translucent */
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

#hero .secondary-cta-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

#hero .secondary-cta-button i {
    color: var(--white);
}

/* --- Comparisons and Cards --- */
/* --- Comparisons and Cards (Glassmorphism Update) --- */
.comparison-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.comparison-card {
    background-color: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-2xl);
    padding: 40px 32px;
    width: 100%;
    max-width: 500px;
    text-align: left;
    transition: all 0.3s ease;
}

/* "Before" Card - Keep lighter/muted to show it's "Old way", but adapt for dark hero */
.comparison-card--before {
    background-color: rgba(248, 250, 252, 0.95);
    /* Slight transparency */
    border: 1px solid var(--border-light);
    color: var(--primary-charcoal);
}

/* "After" Card - High Contrast Light Mode */
.comparison-card--after {
    background: #FFFFFF;
    /* Pure White */
    border: 1px solid #BFDBFE;
    /* Light Blue Border */
    border-top: 4px solid var(--accent-green);
    color: var(--primary-dark);
    box-shadow: 0 10px 40px -5px rgba(37, 99, 235, 0.15);
    /* Soft Blue Glow */
}

/* Adjust text inside After card */
.comparison-card--after h3 {
    color: var(--primary-blue) !important;
    text-shadow: none !important;
}

.comparison-card--after p {
    color: var(--primary-charcoal) !important;
}

.comparison-card--after strong {
    color: var(--primary-dark);
}

.comparison-card--after .playbook-item-icon {
    color: var(--accent-green);
    background: rgba(16, 185, 129, 0.1);
}

.transformation-arrow {
    color: var(--text-mute);
    opacity: 0.6;
}

/* Solution, Pain, Step Cards */
.step-card,
.pain-card {
    background-color: var(--white);
    border-radius: 20px;
    border: 1px solid transparent;
    box-shadow: var(--shadow-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    /* Ensure equal height */
}

.step-card:hover,
.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.step-card h3,
.pain-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.pain-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.step-card .step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* --- Common Components (Pricing, Footer, Modals) --- */
.pricing-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(120deg, var(--secondary-bg) 60%, #e3eafc 100%);
    padding: 32px 28px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.08);
    border: none;
}

.pricing-box .price {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #2B6CB0 0%, #38B2AC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.main-footer {
    background-color: var(--primary-charcoal);
    color: var(--secondary-bg);
    padding: 40px 0;
    text-align: center;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.18s;
}

.footer-nav a:hover {
    color: #F6AD55;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 24px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

.modal-content p {
    color: #64748B;
    margin-bottom: 32px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.modal-form input[type="email"] {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1.1rem;
    margin-bottom: 24px;
    transition: all 0.2s ease;
    background-color: #F8FAFC;
    color: var(--primary-dark);
}

.modal-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: #94A3B8;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background-color: #F1F5F9;
    color: var(--primary-dark);
}

/* --- Responsive Desktop Grid Overrides --- */
@media (min-width: 1024px) {
    .container {
        max-width: 1280px;
        /* Wider container for desktop */
    }

    .pain-grid,
    .solution-flow,
    .testimonials-grid,
    .playbook-kpis-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .playbook-kpis-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Keep KPI smaller */
    }

    .comparison-container {
        flex-direction: row;
        align-items: stretch;
    }

    .transformation-arrow {
        transform: rotate(0deg);
        margin: 0 20px;
    }

    h1 {
        font-size: 4rem;
        /* Larger headlines on desktop */
    }

    .section-headline {
        font-size: 3rem;
    }
}

@media (max-width: 1023px) {

    .pain-grid,
    .solution-flow,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }


    /* --- Tab System (Index Specific) --- */
    .tab-button {
        box-shadow: 0 0 0px rgba(0, 0, 0, 0);
        transition: box-shadow 0.2s, outline 0.2s;
        outline: none;
    }

    #tab-founder.tab-button {
        box-shadow: 0 0 18px 0 rgba(246, 173, 85, 0.38);
    }

    #tab-scaling.tab-button {
        box-shadow: 0 0 18px 0 rgba(56, 178, 172, 0.38);
    }

    #tab-founder.tab-button.active {
        outline: 3px solid #F6AD55;
    }

    #tab-scaling.tab-button.active {
        outline: 3px solid #2563eb;
    }

    /* --- Comparison Section Components (Mobile Overrides) --- */
    .comparison-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 40px;
    }

    .transformation-arrow {
        transform: rotate(90deg);
        /* Point Down for Mobile */
        margin: 0;
    }


    .playbook-kpis-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 15px;
    }

    .kpi-box {
        background-color: #FFF5EB;
        border: 1px solid #FEEBC8;
        border-radius: 8px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .kpi-box h5 {
        font-size: 0.9rem;
        color: #C05621;
        margin-bottom: 3px;
    }

    .kpi-box p {
        color: #9C4221;
    }

    /* --- Animations --- */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s cubic-bezier(.4, 2, .3, 1), transform 0.7s cubic-bezier(.4, 2, .3, 1);
    }

    .fade-in.visible {
        opacity: 1;
        transform: none;
    }

    /* --- Mobile Menu --- */
    #mobileMenuOverlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(44, 62, 80, 0.18);
        z-index: 2001;
        display: none;
        align-items: flex-end;
        justify-content: flex-end;
        transition: opacity 0.3s;
    }

    #mobileMenu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100vh;
        background: #fff;
        box-shadow: -8px 0 32px rgba(44, 62, 80, 0.13);
        z-index: 2002;
        display: flex;
        flex-direction: column;
        padding: 40px 24px 24px 24px;
        transition: right 0.35s cubic-bezier(.4, 2, .3, 1);
    }

    #mobileMenu.open {
        right: 0;
    }

}

/* --- Premium Pricing Card Redesign --- */
.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 40px -4px rgba(0, 0, 0, 0.1), 0 8px 16px -4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.15);
}

/* Gradient Top Border/Glow */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #F97316 0%, #EA580C 100%);
}

.pricing-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 16px !important;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.price-tag {
    font-size: 5rem;
    font-weight: 800;
    margin: 24px 0;
    line-height: 1;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary-blue);
    /* Fallback */
    text-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.pricing-sub {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    text-align: left;
    max-width: 400px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.feature-icon {
    color: var(--accent-green);
    font-size: 1.25rem;
    flex-shrink: 0;
    background: #DCFCE7;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F1F5F9;
    padding: 8px 16px;
    border-radius: 100px;
    color: #64748B;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 24px;
}


/* --- FAQ Accordion Styles --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: #CBD5E1;
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.faq-question {
    padding: 24px;
    margin: 0 !important;
    /* Override default h2 margins */
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    user-select: none;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: #94A3B8;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-left: 16px;
}

.faq-item.active .faq-question::after {
    content: '+';
    transform: rotate(45deg);
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
    opacity: 1;
}

.faq-answer p {
    margin-bottom: 12px;
    color: #475569;
}

.faq-answer ul {
    list-style-position: inside;
    margin-bottom: 12px;
    padding-left: 12px;
    color: #475569;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* --- Comparison Section Components (Global) --- */
.comparison-container {
    display: flex;
    flex-direction: row;
    /* Desktop Default */
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 60px auto 0;
}

.comparison-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    /* Equal width */
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Before Card: "Chaos" Styling */
.comparison-card--before {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    position: relative;
}

.comparison-card--before::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #CBD5E1;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.comparison-header h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.comparison-header p {
    font-size: 0.9rem;
    color: #718096;
}

.comparison-header--before h3 {
    color: #64748B;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-header--before h3::before {
    content: '\f057';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #EF4444;
}

.jd-content-box {
    background-color: #FFF;
    border: 1px dashed #CBD5E1;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}

.flaws-list {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #E2E8F0;
    color: #EF4444;
    font-weight: 500;
    font-size: 0.9rem;
}

.flaws-list ul {
    list-style: none;
    padding-left: 0;
}

.flaws-list li::before {
    content: "•";
    color: #EF4444;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* After Card: "Clarity" Styling */
.comparison-card--after {
    background: #FFFFFF;
    border: 1px solid #BFDBFE;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.15);
    position: relative;
    overflow: hidden;
}

.comparison-card--after::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6 0%, #2563EB 100%);
}

.comparison-header--after h3 {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.comparison-header--after p {
    font-size: 1rem;
    color: #334155;
    line-height: 1.5;
}

.playbook-items-container {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.playbook-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.transformation-arrow {
    background-color: var(--primary-blue);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    font-size: 1.5rem;
    z-index: 2;
    transform: rotate(0deg);
    /* Point Right for Desktop */
    margin: auto 0;
    /* Center vertically */
}

/* Clean Playbook Items */
.playbook-item {
    display: flex;
    align-items: flex-start;
    /* Aligned top */
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.playbook-item-icon {
    flex-shrink: 0;
    margin-top: 3px;
}

.playbook-item--mission {
    background-color: #EBF8FF;
    border-color: #BEE3F8;
}

.playbook-item--mission .playbook-item-icon {
    color: var(--primary-blue);
}

.playbook-item--mission .playbook-item-text {
    color: #2A4365;
}

.playbook-item--success {
    background-color: #F0FFF4;
    border-color: #C6F6D5;
}

.playbook-item--success .playbook-item-icon {
    color: var(--accent-green);
}

.playbook-item--success .playbook-item-text {
    color: #2F855A;
}

/* --- Dark Mode Overrides for Playbook Items (Inside After Card) --- */
/* --- Reset Playbook Items for Light Mode --- */
.comparison-card--after .playbook-item--mission,
.comparison-card--after .playbook-item--success {
    background: transparent !important;
    border: 1px solid transparent !important;
}

.comparison-card--after .playbook-item--mission {
    background-color: #EBF8FF !important;
    border-color: #BEE3F8 !important;
}

.comparison-card--after .playbook-item--success {
    background-color: #F0FFF4 !important;
    border-color: #C6F6D5 !important;
}

.comparison-card--after .playbook-item--mission .playbook-item-text {
    color: #2A4365 !important;
}

.comparison-card--after .playbook-item--success .playbook-item-text {
    color: #2F855A !important;
}

.comparison-card--after .playbook-item--mission .playbook-item-icon {
    background: transparent !important;
    color: var(--primary-blue) !important;
}

.comparison-card--after .playbook-item--success .playbook-item-icon {
    background: transparent !important;
    color: var(--accent-green) !important;
}

.playbook-item--success ul {
    list-style: none;
    padding-left: 0;
}

.playbook-item--success li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.playbook-item--success li .check-icon {
    color: var(--accent-green);
    font-weight: bold;
}

.playbook-item-icon svg {
    stroke: currentColor !important;
    /* Use container color */
}

/* --- Flight Deck Section (Global) --- */
.showcase-flex-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

@media (min-width: 1024px) {
    .showcase-flex-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
    }

    .showcase-image-wrapper {
        flex: 1;
    }

    .callouts-wrapper {
        flex: 1;
    }
}

.showcase-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    /* Premium Shadow */
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.showcase-image:hover {
    transform: translateY(-2px);
}

.callouts-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.flight-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.flight-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #E0F2FE;
    /* Light Blue BG */
    color: var(--primary-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.flight-feature-content h4 {
    margin: 0 0 6px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.flight-feature-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}

/* --- Video Modal & Secondary Button --- */
.secondary-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--primary-charcoal);
    padding: 20px 32px;
    font-size: 1.15rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
    border-radius: 9999px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 16px;
    margin-top: 36px;
    /* Align with CTA */
    vertical-align: top;
    height: auto;
}

.secondary-cta-button:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.secondary-cta-button i {
    font-size: 1rem;
    color: var(--primary-blue);
}

.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Darker for video focus */
    z-index: 3000;
    /* Higher than signup modal */
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal-overlay.open {
    display: flex;
    opacity: 1;
}

.video-modal-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16 / 9;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.video-modal-overlay.open .video-modal-container {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
    transition: background 0.2s;
}

/* Glass Card Icon Fix */
.comparison-card--after .playbook-item-icon svg {
    stroke: var(--accent-green);
}

.playbook-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.playbook-item-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #EFF6FF;
    /* Default light */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .secondary-cta-button {
        display: flex;
        /* Stack on mobile */
        width: 100%;
        margin-left: 0;
        margin-top: 16px;
    }

    .video-modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }
}

/* --- PRICING SECTION UPDATES (Wider & Compact) --- */
.pricing-card {
    max-width: 980px !important;
    /* Wider */
    padding: 40px !important;
    /* More compact padding */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: left !important;
}

.pricing-card .pricing-headline {
    font-size: 2rem !important;
    margin-bottom: 8px !important;
    text-align: left;
}

.pricing-card .pricing-sub {
    margin-bottom: 0 !important;
    text-align: left;
    max-width: 400px;
}

.pricing-card .price-tag {
    font-size: 3.5rem !important;
    margin: 0 !important;
    line-height: 1;
}

/* Left side of the card (Headline + Price) */
.pricing-content-left {
    flex: 1;
}

/* Right side (Features + Button) */
.pricing-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-list {
    margin: 0 0 24px 0 !important;
    text-align: left !important;
}

.pricing-card .cta-button {
    margin-top: 0 !important;
    width: auto !important;
    padding: 16px 32px;
}

.trust-badge {
    margin-top: 12px !important;
    font-size: 0.85rem;
}

/* Mobile Pricing (Stack it) */
@media (max-width: 900px) {
    .pricing-card {
        flex-direction: column;
        text-align: center !important;
        padding: 30px !important;
    }

    .pricing-card .pricing-headline,
    .pricing-card .pricing-sub {
        text-align: center;
    }

    .pricing-content-right {
        align-items: center;
        width: 100%;
    }

    .pricing-card .cta-button {
        width: 100% !important;
    }
}

/* --- Testimonials (Added for LPs) --- */
.testimonial-card {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    color: var(--primary-charcoal);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-light);
}