:root {
    /* Light color palette from user's HTML */
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --accent-primary: #0f172a;
    --accent-secondary: #2563eb;
    --accent-soft: #eff6ff;
    --text-main: #1e293b;
    --text-dim: #64748b;
    --border-color: #e2e8f0;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows - soft and professional */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo h1 {
    font-size: 1.5rem;
    color: var(--accent-primary);
    font-weight: 800;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-secondary);
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-ghost {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
    display: inline-block;
}

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

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--accent-secondary);
    border: 2px solid var(--accent-secondary);
}

.btn-secondary:hover {
    background: var(--accent-soft);
}

.btn-ghost {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--border-color);
}

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

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

.btn-block {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-soft);
    color: var(--accent-secondary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.trust-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.trust-logos {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-logo {
    color: var(--text-dim);
    font-weight: 600;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Hero Visual - Floating Cards */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: 10%;
    width: 200px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    width: 180px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    left: 30%;
    width: 160px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.status-text {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-weight: 600;
}

.card-metric {
    text-align: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-secondary);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
    height: 60px;
    margin-bottom: 0.75rem;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--accent-secondary), #60a5fa);
    border-radius: 4px 4px 0 0;
}

.card-text {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-align: center;
}

.achievement-badge {
    text-align: center;
}

.badge-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.5rem;
    background: linear-gradient(135deg, var(--accent-secondary), #60a5fa);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    color: var(--accent-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: var(--accent-secondary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--text-dim);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.feature-link {
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.feature-link:hover {
    text-decoration: underline;
}

/* Benefits Section */
.benefits {
    background: white;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
}

.benefit-check {
    width: 32px;
    height: 32px;
    background: var(--accent-soft);
    color: var(--accent-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 800;
}

.benefit-content h4 {
    font-size: 1.1rem;
    color: var(--accent-primary);
    margin-bottom: 0.25rem;
}

.benefit-content p {
    color: var(--text-dim);
}

.benefits-visual {
    display: grid;
    gap: 1.5rem;
}

.stat-card {
    background: var(--accent-soft);
    border-left: 4px solid var(--accent-secondary);
    border-radius: 8px;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-secondary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    border-color: var(--accent-secondary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--accent-secondary);
    box-shadow: var(--shadow-xl);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-secondary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-title {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-primary);
}

.price-period {
    color: var(--text-dim);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-main);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-name {
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 0.2rem;
}

.author-title {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #1e40af 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: white;
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem 0;
}

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

.footer-brand {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.social-link:hover {
    text-decoration: underline;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dim);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: var(--bg-color);
}

.modal-title {
    font-size: 1.8rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.modal-description {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .nav-logo h1 {
        font-size: 1.25rem;
    }

    .nav-actions .btn-secondary {
        display: none;
    }

    .hero-content,
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .hero-stats,
    .comparison-container,
    .model-comparison,
    .pricing-grid-two,
    .cta-options {
        grid-template-columns: 1fr;
    }

    .valuation-comparison {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .valuation-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .step-card {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-big {
        font-size: 2rem;
    }
}

/* ========== CEPA-Specific Styles ========== */

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-big {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-secondary);
    margin-bottom: 0.5rem;
}

.stat-small {
    font-size: 0.9rem;
    color: var(--text-dim);
}

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

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-header {
    padding: 1.5rem;
    color: white;
}

.losing-header {
    background: #dc2626;
}

.winning-header {
    background: #059669;
}

.comparison-content {
    padding: 2rem;
    background: white;
}

.quote {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--border-color);
}

.quote.highlighted {
    border-left-color: var(--accent-secondary);
    font-weight: 600;
}

.result-badge {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.losing-badge {
    background: #fee2e2;
    color: #991b1b;
}

.winning-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.winning-points li {
    font-size: 0.95rem;
    color: var(--text-main);
}

/* Why Matters Section */
.why-matters {
    background: var(--bg-color);
}

.model-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.model-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.featured-model {
    border-color: var(--accent-secondary);
    box-shadow: var(--shadow-lg);
}

.model-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-secondary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.model-title {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.model-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.model-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.model-features li:last-child {
    border-bottom: none;
}

.model-features .label {
    color: var(--text-dim);
    font-weight: 500;
}

.highlighted-features li {
    font-weight: 600;
}

/* Barrier Section */
.barrier-section {
    background: white;
}

.barrier-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.barrier-title {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.barrier-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
}

.barrier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.barrier-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.barrier-item h4 {
    font-size: 1.1rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.barrier-item p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.barrier-conclusion {
    background: var(--accent-soft);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-secondary);
}

/* Reveal Section */
.reveal-section {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #1e40af 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.reveal-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.reveal-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Solution Steps */
.solution-section {
    background: var(--bg-color);
}

.steps-container {
    display: grid;
    gap: 2rem;
}

.step-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.step-card:hover {
    border-color: var(--accent-secondary);
    box-shadow: var(--shadow-lg);
}

.highlighted-step {
    border-color: var(--accent-secondary);
    background: var(--accent-soft);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent-secondary);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.step-example {
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.example-title {
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.step-example ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-example li {
    color: var(--text-main);
    line-height: 1.6;
}

.playbook-example {
    background: white;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-secondary);
    border-radius: 8px;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.7;
}

.valuation-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.valuation-column {
    text-align: center;
}

.valuation-column h4 {
    font-size: 1.1rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.calculation {
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.result {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
}

.valuation-column.highlighted .result {
    color: var(--accent-secondary);
}

.valuation-arrow {
    font-size: 2rem;
    color: var(--accent-secondary);
    font-weight: 800;
}

.valuation-insight {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    color: var(--accent-secondary);
}

.implementation-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.implementation-benefits li {
    color: var(--text-main);
}

/* Pitch Section */
.pitch-section {
    background: white;
}

.pitch-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pitch-title {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 2rem;
}

.pitch-box {
    background: var(--accent-soft);
    border: 2px solid var(--accent-secondary);
    border-radius: 12px;
    padding: 3rem;
}

.pitch-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-main);
    text-align: left;
}

/* Pricing Grid Two Column */
.pricing-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pricing-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-detail-item {
    padding: 0.75rem;
    background: var(--bg-color);
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Results Timeline */
.results-section {
    background: white;
}

.timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow-x: auto;
    padding: 2rem 0;
}

.timeline-item {
    min-width: 180px;
    text-align: center;
}

.timeline-marker {
    display: inline-block;
    background: var(--accent-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.timeline-metrics {
    background: var(--bg-color);
    padding: 1rem;
    border-radius: 8px;
}

.timeline-metrics p {
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.value-highlight {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-secondary);
}

.timeline-actions {
    list-style: none;
    text-align: left;
    padding-left: 1rem;
}

.timeline-actions li {
    padding: 0.5rem 0;
    color: var(--text-main);
}

.timeline-arrow {
    font-size: 2rem;
    color: var(--accent-secondary);
    font-weight: 800;
    padding: 0 1rem;
}

.timeline-item.final {
    background: var(--accent-soft);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--accent-secondary);
}

.sale-results {
    text-align: left;
}

.sale-results p {
    margin-bottom: 0.75rem;
}

.sale-results .increase {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

.sale-results .vs {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Urgency Section */
.urgency-section {
    background: var(--accent-soft);
}

.urgency-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.urgency-title {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 3rem;
}

.urgency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.urgency-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.urgency-item p {
    color: var(--text-main);
    line-height: 1.7;
}

.urgency-cta {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--accent-secondary);
}

.urgency-conclusion {
    font-size: 1.2rem;
    color: var(--text-main);
    line-height: 1.7;
}

/* Competitive Advantage */
.advantage-section {
    background: white;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table thead th {
    background: var(--accent-primary);
    color: white;
    font-weight: 700;
}

.comparison-table th.you-column {
    background: var(--accent-secondary);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--accent-primary);
}

.comparison-table .yes {
    color: #059669;
    font-weight: 700;
    font-size: 1.5rem;
}

.comparison-table .no {
    color: #dc2626;
    font-weight: 700;
    font-size: 1.5rem;
}

.comparison-table .you-cell {
    background: var(--accent-soft);
}

/* CTA Options */
.cta-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.cta-option {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.cta-option h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-option p {
    color: white;
    opacity: 0.9;
}

/* Responsive Updates for CEPA Sections */
@media (max-width: 968px) {
    .comparison-container,
    .model-comparison,
    .pricing-grid-two {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
    }
    
    .urgency-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
    }
}

