/* ===== CSS Variables ===== */
:root {
    --color-primary: #2d3a8c;
    --color-accent: #f5a623;
    --color-text: #1c1917;
    --color-text-muted: #57534e;
    --color-bg: #fafaf9;
    --color-bg-alt: #f5f5f4;
    --color-border: #e7e5e4;
    --color-white: #ffffff;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-logo: 'Poppins', system-ui, sans-serif;
    
    --max-width: 1100px;
    --max-width-narrow: 720px;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

/* ===== Container ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Typography ===== */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

strong {
    font-weight: 600;
    color: var(--color-primary);
}

/* ===== Header ===== */
.header {
    padding: 1rem 0;
    position: sticky;
    top: 0;
    background: var(--color-white);
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo {
    font-family: var(--font-logo);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

/* Header Navigation */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hamburger Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Expandable Menu */
.nav-menu {
    display: none;
    flex-direction: column;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
}

.nav-menu.active {
    display: flex;
}

.nav-menu a {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--color-border);
    transition: background 0.2s ease;
}

.nav-menu a:hover {
    background: var(--color-bg);
    color: var(--color-primary);
}

/* ===== Hero ===== */
.hero {
    padding: 4rem 0 5rem;
    text-align: center;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.hero-headline {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    max-width: 800px;
    margin: 0 auto 1rem;
}

.hero-tagline {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* ===== Framework ===== */
.framework {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

.framework-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.framework-quote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--color-text);
    line-height: 1.5;
}

/* ===== Services Grid ===== */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.service-number {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.service-desc {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ===== Service Icons ===== */
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Clarity - Circle with rays */
.icon-clarity .circle {
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.icon-clarity .ray {
    position: absolute;
    width: 2px;
    height: 16px;
    background: var(--color-accent);
}

.icon-clarity .ray-1 { top: 8px; left: 50%; transform: translateX(-50%); }
.icon-clarity .ray-2 { bottom: 8px; left: 50%; transform: translateX(-50%); }
.icon-clarity .ray-3 { left: 8px; top: 50%; transform: translateY(-50%) rotate(90deg); }
.icon-clarity .ray-4 { right: 8px; top: 50%; transform: translateY(-50%) rotate(90deg); }

/* Positioning - Triangle */
.icon-positioning .triangle {
    width: 0;
    height: 0;
    border-left: 28px solid transparent;
    border-right: 28px solid transparent;
    border-bottom: 48px solid var(--color-primary);
}

/* GTM - Arrow */
.icon-gtm .arrow {
    width: 48px;
    height: 4px;
    background: var(--color-primary);
    position: relative;
}

.icon-gtm .arrow::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid var(--color-accent);
}

/* Investor - Ascending bars */
.icon-investor {
    align-items: flex-end;
    gap: 6px;
}

.icon-investor .bar {
    width: 16px;
    background: var(--color-primary);
    border-radius: 2px 2px 0 0;
}

.icon-investor .bar-1 { height: 24px; opacity: 0.4; }
.icon-investor .bar-2 { height: 36px; opacity: 0.7; }
.icon-investor .bar-3 { height: 48px; background: var(--color-accent); }

/* Featured Product Section */
.featured-product {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 3px solid #FF9933;
    border-bottom: 3px solid #FF9933;
    padding: 4rem 0;
    margin: 4rem 0;
}

.featured-badge {
    display: inline-block;
    background: #FF9933;
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.featured-content {
    max-width: 900px;
    margin: 0 auto;
}

.featured-header {
    text-align: center;
    margin-bottom: 2rem;
}

.featured-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3F51B5;
    margin-bottom: 0.5rem;
}

.featured-subtitle {
    font-size: 1.25rem;
    color: #666;
    font-style: italic;
}

.featured-description {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.featured-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

.featured-column h4 {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #3F51B5;
    margin-bottom: 1rem;
}

.featured-column ul {
    list-style: none;
    padding: 0;
}

.featured-column li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.featured-column li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF9933;
    font-weight: 700;
}

.featured-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.featured-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.1em;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3F51B5;
}

.featured-cohort {
    display: flex;
    gap: 1rem;
}

.cohort-badge {
    background: #FF9933;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
}

.featured-scarcity {
    text-align: center;
    padding: 2rem;
    background: #FFF3E0;
    border-left: 4px solid #FF9933;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.scarcity-text {
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.6;
}

.scarcity-text strong {
    color: #3F51B5;
}

.featured-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 768px) {
    .featured-details {
        grid-template-columns: 1fr;
    }
    
    .featured-pricing {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .featured-cohort {
        flex-direction: column;
    }
    
    .featured-ctas {
        flex-direction: column;
    }
    
    .featured-title {
        font-size: 1.75rem;
    }
}

/* ===== Credibility ===== */
.credibility {
    padding: 4rem 0;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
}

.credibility p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CTA ===== */
.cta {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--color-bg);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-accent);
}

.btn-primary:hover {
    box-shadow: 0 4px 12px rgba(45, 58, 140, 0.3);
}

.btn-secondary {
    background-color: var(--color-accent);
    color: var(--color-text);
}

.btn-secondary:hover {
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

/* ===== About ===== */
.about {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.about p:last-child {
    margin-bottom: 0;
}

/* ===== Waitlist ===== */
.waitlist {
    padding: 5rem 0;
    background-color: var(--color-bg);
    text-align: center;
}

.waitlist-title {
    margin-bottom: 0.5rem;
}

.waitlist-subtitle {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.waitlist-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.waitlist-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-body);
}

.waitlist-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* ===== Client Logos ===== */
.clients-logos {
    margin-top: 4rem;
    margin-bottom: 3rem;
    text-align: center;
}

.clients-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.clients-grid img {
    width: 80px;
    height: 35px;
    object-fit: contain;
}

/* ===== Footer ===== */
.footer {
    padding: 3rem 0;
    text-align: center;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

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

.footer-cta {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: underline;
    margin-bottom: 1rem;
}

.footer-cta:hover {
    color: var(--color-accent);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--color-text-muted);
    transition: color 0.2s ease;
}

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


/* ===== Scorecard Styles ===== */
.scorecard-container {
    max-width: var(--max-width-narrow);
    padding: 2rem 1.5rem;
}

.scorecard-intro {
    text-align: center;
    padding: 4rem 0;
}

.scorecard-title {
    margin-bottom: 1rem;
}

.scorecard-subtitle {
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.scorecard-meta {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* Progress bar */
.progress-bar {
    height: 4px;
    background: var(--color-border);
    border-radius: 2px;
    margin-bottom: 3rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--color-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Questions */
.question-container {
    text-align: center;
}

.question-number {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.question-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.option-btn {
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.option-btn:hover {
    border-color: var(--color-primary);
    background: var(--color-bg);
}

/* Email capture */
.scorecard-email {
    text-align: center;
    padding: 4rem 1.5rem;
}

.scorecard-email h2 {
    margin-bottom: 0.5rem;
}

.scorecard-email p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.email-form input[type="email"],
.email-form input[type="text"],
.email-form input[type="tel"] {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-body);
    background: var(--color-white);
}

.email-form input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.email-form button {
    width: 100%;
    max-width: 250px;
    margin: 0.5rem auto 0;
}

@media (max-width: 768px) {
    .email-form {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

/* Results */
.scorecard-result {
    text-align: center;
    padding: 4rem 0;
}

.result-phase {
    background: var(--color-bg);
    padding: 1rem;
    border-radius: 4px;
    margin: 1.5rem 0;
    text-align: center;
    font-size: 0.9375rem;
}

.result-phase strong {
    color: var(--color-primary);
}
.result-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 3rem 2rem;
}

.result-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.result-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.result-subtitle {
    font-size: 1.125rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.result-description {
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.result-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    
    .hero { padding: 3rem 0 4rem; }
    .framework { padding: 4rem 0; }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* ===================================
   FOUNDER INTENSIVE PRODUCT PAGE
   =================================== */

/* Container Utilities */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Product Hero */
.product-hero {
    text-align: center;
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 3px solid #FF9933;
}

.badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
}

.badge-cohort {
    background: #3F51B5;
    color: white;
}

.badge-limited {
    background: #FF9933;
    color: white;
}

.product-title {
    font-size: 3rem;
    font-weight: 700;
    color: #3F51B5;
    margin-bottom: 0.5rem;
}

.product-subtitle {
    font-size: 1.5rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.product-hook {
    font-size: 2rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.product-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #ddd;
}

.meta-item {
    text-align: center;
}

.meta-item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #3F51B5;
    margin-bottom: 0.5rem;
}

.meta-item p {
    margin: 0;
    font-size: 1.125rem;
    color: #333;
}

/* Section Styles */
.section-problem,
.section-what,
.section-pillars,
.section-structure,
.section-who,
.section-selection,
.section-investment,
.section-timeline,
.section-waitlist,
.section-faq,
.section-final-cta {
    padding: 4rem 1.5rem;
}

.section-problem h2,
.section-what h2,
.section-pillars h2,
.section-structure h2,
.section-who h2,
.section-selection h2,
.section-investment h2,
.section-timeline h2,
.section-waitlist h2,
.section-faq h2,
.section-final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3F51B5;
    margin-bottom: 2rem;
    text-align: center;
}

.lead {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

/* Problem Section */
.section-problem {
    background: #FFF3E0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.problem-item {
    padding: 1rem;
    background: white;
    border-left: 4px solid #FF9933;
    font-size: 1.125rem;
}

.callout-danger {
    background: white;
    border-left: 4px solid #3F51B5;
    padding: 2rem;
    margin: 2rem 0;
}

.callout-danger p {
    margin: 0.5rem 0;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.column-yes,
.column-no {
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

.column-yes {
    border: 2px solid #4CAF50;
}

.column-no {
    border: 2px solid #f44336;
}

.column-yes h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.column-no h3 {
    color: #f44336;
    margin-bottom: 1rem;
}

.column-yes ul,
.column-no ul {
    list-style: none;
    padding: 0;
}

.column-yes li,
.column-no li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.column-yes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

.column-no li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: 700;
}

/* Pillar Cards */
.pillar-card {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #3F51B5;
    border-radius: 4px;
}

.pillar-card h3 {
    color: #3F51B5;
    margin-bottom: 1rem;
}

.pillar-card .example {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
}

/* Structure Section */
.section-structure {
    background: #f8f9fa;
}

.structure-phase {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-top: 4px solid #3F51B5;
}

.structure-phase h3 {
    color: #3F51B5;
    margin-bottom: 0.5rem;
}

.phase-subtitle {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.structure-phase ul {
    list-style: none;
    padding: 0;
}

.structure-phase li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.structure-phase li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #FF9933;
    font-weight: 700;
}

.bonus-items {
    background: #FFF3E0;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.bonus-items h4 {
    color: #FF9933;
    margin-bottom: 1rem;
}

.bonus-items ul {
    list-style: none;
    padding: 0;
}

.bonus-items li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.bonus-items li:before {
    content: "★";
    position: absolute;
    left: 0;
    color: #FF9933;
}

.investment-summary {
    background: #3F51B5;
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

.investment-summary p {
    margin: 0.5rem 0;
    font-size: 1.125rem;
}

/* Selection Process */
.process-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #3F51B5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h4 {
    color: #3F51B5;
    margin-bottom: 1rem;
}

.step-content p {
    margin: 0.5rem 0;
}

.btn-small {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #FF9933;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.btn-small:hover {
    background: #e68a2e;
}

/* Investment Section */
.investment-questions {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.investment-questions li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: white;
    border-left: 4px solid #3F51B5;
    font-size: 1.125rem;
}

.callout-value {
    background: #FFF3E0;
    border: 2px solid #FF9933;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
    border-radius: 8px;
}

.callout-value p {
    margin: 0.5rem 0;
    font-size: 1.125rem;
}

/* Timeline */
.timeline {
    margin: 2rem 0;
}

.timeline-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: white;
    border-left: 4px solid #3F51B5;
    border-radius: 4px;
}

.timeline-item strong {
    display: block;
    color: #3F51B5;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    margin: 0;
    color: #666;
}

/* Waitlist Form */
.section-waitlist {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.waitlist-benefits {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.waitlist-benefits h4 {
    color: #3F51B5;
    margin-bottom: 1rem;
}

.waitlist-benefits ul {
    list-style: none;
    padding: 0;
}

.waitlist-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.waitlist-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF9933;
    font-weight: 700;
}

.waitlist-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3F51B5;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.waitlist-count {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
}

.waitlist-count p {
    margin: 0.5rem 0;
    font-size: 1.125rem;
}

#waitlist-counter {
    color: #3F51B5;
}

/* FAQ Section */
.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid #3F51B5;
}

.faq-item h4 {
    color: #3F51B5;
    margin-bottom: 1rem;
}

.faq-item p {
    margin: 0;
    color: #666;
}

/* Final CTA */
.section-final-cta {
    background: linear-gradient(135deg, #3F51B5 0%, #303F9F 100%);
    color: white;
}

.section-final-cta h2 {
    color: white;
}

.section-final-cta .lead {
    color: rgba(255,255,255,0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Button Overrides for Dark Background */
.section-final-cta .btn-primary {
    background: #FF9933;
    color: white;
}

.section-final-cta .btn-primary:hover {
    background: #e68a2e;
}

.section-final-cta .btn-secondary {
    background: white;
    color: #3F51B5;
}

.section-final-cta .btn-secondary:hover {
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-title {
        font-size: 2rem;
    }
    
    .product-subtitle {
        font-size: 1.125rem;
    }
    
    .product-hook {
        font-size: 1.5rem;
    }
    
    .product-meta {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 1.5rem;
    }
    
    .section-problem h2,
    .section-what h2,
    .section-pillars h2,
    .section-structure h2,
    .section-who h2,
    .section-selection h2,
    .section-investment h2,
    .section-timeline h2,
    .section-waitlist h2,
    .section-faq h2,
    .section-final-cta h2 {
        font-size: 1.75rem;
    }
}

/* ===================================
   PRODUCTS PAGE
   =================================== */

/* Products Hero */
.products-hero {
    text-align: center;
    padding: 4rem 1.5rem 3rem;
    background: #f8f9fa;
}

.products-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #3F51B5;
    margin-bottom: 1rem;
}

.products-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
}

/* Featured Product on Products Page */
.products-featured {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 3px solid #FF9933;
    border-bottom: 3px solid #FF9933;
}

.featured-label {
    display: inline-block;
    background: #FF9933;
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.product-featured-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.featured-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.badge-featured {
    background: #3F51B5;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
}

.featured-product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3F51B5;
    margin-bottom: 0.5rem;
}

.featured-product-subtitle {
    font-size: 1.25rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.featured-divider {
    height: 2px;
    background: linear-gradient(to right, #3F51B5, #FF9933);
    margin: 2rem 0;
}

.featured-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #333;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.featured-column h4 {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #3F51B5;
    margin-bottom: 1rem;
}

.featured-column ul {
    list-style: none;
    padding: 0;
}

.featured-column li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.featured-column li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF9933;
    font-weight: 700;
}

.featured-meta {
    background-color: #3F51B5 !important; 
    padding: 2.5rem 1rem !important;      
    border-radius: 8px !important;
    display: flex !important;
    flex-direction: column !important;    
    align-items: center !important;       
    justify-content: center !important;
    gap: 0.75rem !important;              
    margin: 2rem 0 !important;
}

.meta-item {
    text-align: center !important;
    background: transparent !important;   
    border: none !important;
    padding: 0 !important;
    color: #ffffff !important;            
}

.meta-label {
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.7) !important; 
    margin-right: 0.25rem;
}

.meta-value {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}


.featured-scarcity {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #333;
}

.featured-scarcity strong {
    color: #3F51B5;
}

.featured-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Product Categories */
.product-category {
    padding: 4rem 1.5rem;
}

.category-highlight {
    background: #f8f9fa;
}

.category-title {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #3F51B5;
    text-align: center;
    margin-bottom: 1rem;
}

.category-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.card-premium {
    border: 3px solid #FF9933;
    position: relative;
}

.product-badge {
    display: inline-block;
    background: #3F51B5;
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.badge-premium {
    background: #FF9933;
}

.product-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3F51B5;
    margin-bottom: 0.5rem;
}

.product-tier {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #FF9933;
    margin: 1rem 0;
}

.product-description {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
}

.product-details {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    flex-grow: 1;
}

.product-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.875rem;
    color: #666;
}

.product-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FF9933;
    font-weight: 700;
}

.product-meta {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
    text-align: center;
}

.product-note {
    background: #FFF3E0;
    border-left: 4px solid #FF9933;
    padding: 1rem;
    margin: 1rem 0;
    font-size: 0.875rem;
}

.product-card .btn {
    margin-top: auto;
}

.product-progression {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    margin-top: 2rem;
}

.product-progression p {
    margin: 0;
    color: #666;
}

/* Bottom CTA */
.products-cta {
    background: #3F51B5;
    background: linear-gradient(135deg, #3F51B5 0%, #303F9F 100%);
    color: white;
    text-align: center;
    padding: 4rem 1.5rem;
}

.products-cta h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.products-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: white;
}

.products-cta .btn-primary {
    background: #FF9933;
    color: white;
}

.products-cta .btn-primary:hover {
    background: #e68a2e;
}

/* Responsive */
@media (max-width: 968px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .products-hero h1 {
        font-size: 2rem;
    }
    
    .featured-product-title {
        font-size: 1.75rem;
    }
    
    .product-featured-card {
        padding: 2rem;
    }
    
    .featured-actions {
        flex-direction: column;
    }
    
    .featured-meta {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===== Contact Page ===== */
.contact-page {
    padding: 5rem 1.5rem;
    min-height: 70vh;
}

.contact-page-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-page-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-body);
    background: var(--color-white);
}

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

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

.contact-form select:valid {
    color: var(--color-text);
}

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

.contact-form button {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-page-title {
        font-size: 2rem;
    }
}

/* ===== Scorecard Layouts ===== */
.scorecard-container {
    padding: 0 1.5rem;
}

.scorecard-intro {
    padding-top: 6rem;
    padding-bottom: 2rem;
    text-align: center;
}


.scorecard-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.title-connector {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.scorecard-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.scorecard-meta {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* Questions Section */
.scorecard-questions {
    padding-top: 6rem;
    max-width: 800px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--color-bg);
    border-radius: 4px;
    margin-bottom: 3rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--color-primary);
    transition: width 0.3s ease;
    width: 0%;
}

.question-number {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.question-text {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-btn {
    width: 100%;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-white);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-body);
}

.option-btn:hover {
    border-color: var(--color-primary);
    background: var(--color-bg);
    transform: translateX(4px);
}

/* Email Capture Section */
.scorecard-email {
    padding-top: 6rem;
    padding-bottom: 2rem;
    text-align: center;
}

.scorecard-email h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.scorecard-email p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* Result Section */
.scorecard-result {
    padding-top: 6rem;
    padding-bottom: 2rem;
}

.result-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    text-align: center;
}

.result-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.result-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.result-subtitle {
    font-size: 1.375rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.result-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.result-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .scorecard-intro {
        padding-top: 5rem;
    }
    
    .scorecard-title {
        font-size: 2rem;
    }
    
    .scorecard-subtitle {
        font-size: 1.125rem;
    }
    
    .question-text {
        font-size: 1.375rem;
    }
    
    .option-btn {
        padding: 1rem;
    }
    
    .result-card {
        padding: 2rem 1.5rem;
    }
    
    .result-title {
        font-size: 1.75rem;
    }
    
    .result-cta {
        flex-direction: column;
    }
    
    .result-cta .btn {
        width: 100%;
    }
}

/* ===== UNNATI Countdown Banner ===== */
.urgency-banner {
    background: #FF9933;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 0 auto 2rem;
    max-width: calc(100% - 192px);
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
}

@media (max-width: 768px) {
    .urgency-banner {
        max-width: calc(100% - 96px);
    }
}

.urgency-banner-small {
    background: #FF9933;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.countdown-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.countdown-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.countdown-text {
    font-size: 1rem;
    line-height: 1.4;
}

.countdown-text strong {
    font-size: 1.125rem;
    font-weight: 700;
}

.urgency-tag {
    display: inline-block;
    background: #FF6B6B;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.result-urgency {
    background: #FFF3CD;
    border-left: 4px solid #FF6B6B;
    padding: 1rem;
    margin: 1.5rem 0;
    font-weight: 600;
    color: #856404;
}

@media (max-width: 768px) {
    .countdown-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .countdown-text {
        font-size: 0.9375rem;
        text-align: center;
    }
}
