/* ========================================
   JOUVER High-Converting Comparison Page CSS
   Based on Airtable, Notion, Asana, Zapier best practices
   Optimized for conversion, scannability, pSEO
   ======================================== */

/* ================
   CSS VARIABLES - Brand & System
   ================ */
:root {
    /* Brand Colors */
    --jouver-orange: #FF6B35;
    --jouver-orange-dark: #e55a2b;
    --jouver-orange-light: #ff8659;
    --primary-blue: #2563eb;
    --primary-blue-dark: #1d4ed8;
    
    /* Semantic Grays */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Semantic Colors */
    --success-green: #10b981;
    --success-green-bg: #d1fae5;
    --warning-yellow: #fbbf24;
    --warning-yellow-bg: #fef3c7;
    --info-blue: #3b82f6;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography Scale */
    --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
}

/* ================
   GLOBAL RESET & BASE
   ================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-800);
    background: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.comparison-page {
    overflow-x: hidden;
}

/* ================
   TYPOGRAPHY
   ================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--gray-900);
}

h1 {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
}

h3 {
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
    line-height: 1.7;
}

/* ================
   HERO SECTION - Critical for First 3-5 Seconds
   ================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #fef3c7 100%);
    padding: 80px 20px 60px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 1;
}

/* Intent Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-badge .competitor {
    color: var(--jouver-orange);
}

/* Hero H1 - Ultra-Direct */
.hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.hero h1 .vs {
    color: var(--gray-500);
    font-weight: 600;
}

.hero h1 .competitor-name {
    color: var(--primary-blue);
}

/* Outcome Promise - Single Line */
.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 36px;
    line-height: 1.5;
}

.hero-subtitle strong {
    color: var(--jouver-orange);
    font-weight: 600;
}

/* CTA Group - Primary + Secondary */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-display);
}

.btn-primary {
    background: var(--jouver-orange);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--jouver-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

/* Trust Strip - Immediate Social Proof */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
}

.trust-item strong {
    color: var(--gray-900);
    font-weight: 600;
    color: var(--gray-900);
}

.trust-rating {
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.trust-rating .stars {
    color: #fbbf24;
    font-size: 16px;
}

/* ================
   SECTION CONTAINERS
   ================ */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-compact {
    padding: 60px 20px;
}

.section-bg-white {
    background: white;
}

.section-bg-gray {
    background: var(--gray-50);
}

.section-bg-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--jouver-orange) 100%);
    color: white;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ================
   KEY TAKEAWAYS SECTION
   ================ */
.takeaway-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.takeaway-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    transition: all var(--transition);
}

.takeaway-item:hover {
    border-color: var(--jouver-orange);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.takeaway-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--success-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.takeaway-item p {
    margin: 0;
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.6;
}

/* ================
   FEATURE DEEP-DIVE SECTION - FULL WIDTH SEQUENTIAL
   ================ */

/* Container for deep-dive section */
.deep-dive-section {
    padding: 80px 20px;
    background: var(--gray-50);
}

/* Remove grid layout - go full width sequential */
.deep-dive-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1000px; /* Optimal reading width */
    margin: 0 auto;
}

/* Full-width cards */
.deep-dive-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: 48px;
    transition: all var(--transition-slow);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06);
}

.deep-dive-card:hover {
    border-color: var(--jouver-orange);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
                0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Jouver card gets special highlighting */
.deep-dive-card-jouver {
    border-left: 6px solid var(--jouver-orange);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf5 100%);
}

/* Competitor card styling */
.deep-dive-card-competitor {
    border-left: 6px solid var(--primary-blue);
}

/* Header section */
.deep-dive-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.deep-dive-header h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.2;
}

/* Badge positioning */
.deep-dive-badge {
    display: inline-block;
    background: var(--jouver-orange);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

.deep-dive-badge-blue {
    background: var(--primary-blue);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

/* Intro paragraph */
.deep-dive-intro {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--gray-100);
}

/* Feature list */
.deep-dive-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px 24px;
}

.deep-dive-features li {
    padding: 14px 0;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

/* Checkmark styling */
.deep-dive-features li::before {
    content: '✓';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--success-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-top: 2px;
}

/* Strengths section */
.deep-dive-strengths {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin-top: 32px;
    border: 1px solid var(--gray-200);
}

.deep-dive-strengths h4 {
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.deep-dive-strengths h4::before {
    content: '💪';
    font-size: 24px;
}

.deep-dive-strengths ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deep-dive-strengths li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.deep-dive-strengths li:last-child {
    border-bottom: none;
}

.deep-dive-strengths li::before {
    content: '→';
    color: var(--jouver-orange);
    font-weight: 700;
    flex-shrink: 0;
}

/* Optional: Add CTA at bottom of each card */
.deep-dive-cta {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid var(--gray-100);
    text-align: center;
}

.deep-dive-cta .btn {
    min-width: 240px;
}

/* ================
   MOBILE RESPONSIVE - FEATURE DEEP-DIVE
   ================ */

@media (max-width: 768px) {
    .deep-dive-grid {
        gap: 32px;
    }
    
    .deep-dive-card {
        padding: 32px 24px;
    }
    
    .deep-dive-header h3 {
        font-size: 28px;
    }
    
    .deep-dive-intro {
        font-size: 15px;
        margin-bottom: 24px;
        padding-bottom: 24px;
    }
    
    /* Stack feature list on mobile */
    .deep-dive-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .deep-dive-features li {
        padding: 10px 0;
        font-size: 14px;
    }
    
    .deep-dive-strengths {
        padding: 24px 20px;
    }
    
    .deep-dive-strengths h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .deep-dive-card {
        padding: 24px 20px;
    }
    
    .deep-dive-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .deep-dive-badge {
        margin-top: 8px;
    }
}
/* ================
   WHY SWITCH REASONS (Orange Highlights)
   ================ */
.why-switch-reasons {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-switch-reason {
    background: white;
    border: 2px solid var(--gray-100);
    border-left: 6px solid var(--jouver-orange);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition);
}

.why-switch-reason:hover {
    border-color: var(--jouver-orange);
    box-shadow: var(--shadow-lg);
    transform: translateX(4px);
}

.why-switch-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
}

.why-switch-reason h3 {
    font-size: 22px;
    color: var(--gray-900);
    margin-bottom: 12px;
    font-weight: 700;
}

.why-switch-reason p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

.why-switch-reason p strong {
    color: var(--jouver-orange);
    font-weight: 600;
}

/* Comparison Section Variations */
.comparison-section {
    padding: 80px 20px;
}

.comparison-section-white {
    background: white;
}

.comparison-section-gray {
    background: var(--gray-50);
}

/* Feature Section */
.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.feature-section:nth-child(even) {
    direction: rtl;
}

.feature-section:nth-child(even) > * {
    direction: ltr;
}

/* ================
   TRANSITION PARAGRAPHE
   ================ */

.transition-section {
    padding: 40px 20px;
    background: #f8fafc;
    border-left: 4px solid #FF6B35;
}

.transition-container {
    max-width: 900px;
    margin: 0 auto;
}

.transition-text {
    font-size: 18px;
    line-height: 1.6;
    color: #475569;
    font-style: italic;
    margin: 0;
}

@media (max-width: 768px) {
    .transition-section {
        padding: 24px 16px;
    }
    
    .transition-text {
        font-size: 16px;
    }
}


/* ================
   WHY SWITCH CARDS - Alternating Layout
   ================ */
.switch-cards {
    max-width: 1000px;
    margin: 0 auto;
}

/* Grid for switch tiles */
.why-switch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.switch-tile {
    background: white;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-2xl);
    padding: 32px;
    transition: all var(--transition);
    text-align: center;
}

.switch-tile:hover {
    border-color: var(--jouver-orange);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.switch-tile-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.switch-tile h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.3;
}

.switch-tile p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

.switch-tile p strong {
    color: var(--jouver-orange);
    font-weight: 600;
}

.switch-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: start;
    padding: 40px;
    margin-bottom: 32px;
    background: white;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-2xl);
    transition: all var(--transition);
}

.switch-card:hover {
    border-color: var(--jouver-orange);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.switch-card-alt {
    background: var(--gray-50);
}

.switch-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--jouver-orange-light), var(--jouver-orange));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
}

.switch-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--gray-900);
    font-weight: 700;
}

.switch-benefit {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

.switch-benefit strong {
    color: var(--jouver-orange);
    font-weight: 600;
}

/* ================
   COMPARISON TABLE - Side-by-Side with Visual Wins
   ================ */
.comparison-table-section {
    background: white;
    padding: 64px 20px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 600px;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: white;
}

.comparison-table th {
    padding: 20px 24px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table th:first-child {
    border-top-left-radius: var(--radius-2xl);
}

.comparison-table th:last-child {
    border-top-right-radius: var(--radius-2xl);
}

.comparison-table tbody tr {
    transition: background var(--transition-fast);
}

.comparison-table tbody tr:hover {
    background: var(--gray-50);
}

.comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 15px;
    vertical-align: top;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Feature Category Headers */
.feature-category {
    font-weight: 700;
    color: var(--gray-900);
    background: var(--gray-50);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 24px !important;
}

/* Feature Name Styling */
.feature-name {
    font-weight: 600;
    color: var(--gray-900);
}

.feature-desc {
    display: block;
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 4px;
    font-weight: 400;
}

/* Jouver Wins Highlighting */
.jouver-win {
    background: var(--warning-yellow-bg);
    font-weight: 600;
    position: relative;
    padding-left: 32px;
}

.jouver-win::before {
    content: '✓';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--success-green);
    font-weight: 700;
    font-size: 18px;
}

.winner-badge {
    display: inline-block;
    background: var(--success-green);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jouver-advantage {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--success-green-bg);
    color: var(--success-green);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

/* ================
   FEATURE BLOCKS - Alternating Layouts
   ================ */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-block-alt {
    direction: rtl;
}

.feature-block-alt > * {
    direction: ltr;
}

.feature-content h3 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 16px;
    color: var(--gray-900);
}

.feature-content p {
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--success-green-bg);
    color: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.feature-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--jouver-orange);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.feature-cta:hover {
    color: var(--jouver-orange-dark);
    gap: 10px;
}

.feature-visual {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.feature-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================
   MIGRATION/SWITCHING SECTION
   ================ */
.migration-section {
    background: linear-gradient(135deg, #dbeafe 0%, #fef3c7 100%);
    padding: 64px 20px;
    text-align: center;
}

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

.migration-section h2 {
    margin-bottom: 24px;
}

.migration-section p {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 32px;
}

.migration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.migration-feature {
    background: white;
    padding: 24px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.migration-feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: var(--jouver-orange);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.migration-feature h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.migration-feature p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

/* ================
   PRICING SECTION
   ================ */
.pricing-section {
    padding: 64px 20px;
    background: white;
}

.pricing-comparison {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.pricing-card {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: 40px 32px;
    text-align: center;
}

.pricing-card-jouver {
    background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
    border-color: var(--jouver-orange);
    position: relative;
}

.pricing-card-jouver::before {
    content: 'Recommended';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--jouver-orange);
    color: white;
    padding: 4px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.pricing-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--jouver-orange);
    margin-bottom: 8px;
    line-height: 1;
}

.pricing-period {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--success-green);
    font-weight: 700;
}

.risk-reversal {
    background: var(--success-green-bg);
    color: var(--success-green);
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    font-size: 13px;
    font-weight: 600;
    margin-top: 20px;
}

/* ================
   FAQ SECTION
   ================ */
.faq-section {
    padding: 64px 20px;
    background: var(--gray-50);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 28px 32px;
    margin-bottom: 16px;
    transition: all var(--transition);
}

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

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.faq-answer {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.7;
}

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

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

/* ================
   FINAL CTA BANNER
   ================ */
.final-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--jouver-orange) 100%);
    padding: 100px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.final-cta h2 {
    font-size: clamp(32px, 5vw, 56px);
    color: white;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: clamp(18px, 3vw, 24px);
    opacity: 0.95;
    margin-bottom: 40px;
}

.btn-huge {
    padding: 20px 48px;
    font-size: 20px;
    font-weight: 700;
    background: white;
    color: var(--gray-900);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.btn-huge:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-meta {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.85;
}

/* ================
   MIGRATION/SWITCHING SECTION
   ================ */
.migration-section {
    background: linear-gradient(135deg, #dbeafe 0%, #fef3c7 100%);
    padding: 64px 20px;
    text-align: center;
}

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

.migration-section h2 {
    margin-bottom: 24px;
}

.migration-section p {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 32px;
}

.migration-timeline {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 48px 0;
    flex-wrap: wrap;
}

.migration-step {
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    background: white;
    padding: 32px 20px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.migration-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.migration-step-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.migration-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.migration-step p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* ================
   MOBILE STICKY CTA
   ================ */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: white;
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform var(--transition-slow);
    z-index: 999;
    display: none;
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
}

/* ================
   SECTION BG GRADIENT
   ================ */
.section-bg-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--jouver-orange) 100%);
    color: white;
}

.section-bg-gradient .section-header h2,
.section-bg-gradient .section-header p {
    color: white;
}

/* ================
   RESPONSIVE BREAKPOINTS
   ================ */
@media (max-width: 768px) {
    .hero {
        padding: 60px 16px 40px;
    }
    
    .section {
        padding: 60px 16px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 340px;
    }
    
    .switch-card {
        grid-template-columns: 1fr;
        padding: 24px;
        text-align: center;
    }
    
    .switch-card-icon {
        margin: 0 auto 20px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 16px 12px;
        font-size: 14px;
    }
    
    .feature-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .feature-block-alt {
        direction: ltr;
    }
    
    .migration-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .migration-step {
        max-width: 100%;
    }
    
    .pricing-comparison {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .final-cta {
        padding: 60px 20px;
    }
    
    /* Key Takeaways Mobile */
    .takeaway-item {
        padding: 16px;
    }
    
    /* Deep Dive Mobile */
    .deep-dive-grid {
        grid-template-columns: 1fr;
    }
    
    .deep-dive-card {
        padding: 24px;
    }
    
    .deep-dive-header h3 {
        font-size: 24px;
    }
    
    /* Why Switch Reasons Mobile */
    .why-switch-reason {
        padding: 24px;
    }
    
    .why-switch-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .why-switch-reason h3 {
        font-size: 18px;
    }
}

/* ================
   UTILITIES
   ================ */
.text-center {
    text-align: center;
}

.mb-4 { margin-bottom: 32px; }
.mt-4 { margin-top: 32px; }

/* ================
   COMPARISON PAGE TEXT FIX - Force Dark Text in Light Sections
   ================ */
.comparison-section-white,
.comparison-section-white p,
.comparison-section-white h1,
.comparison-section-white h2,
.comparison-section-white h3,
.comparison-section-white h4,
.comparison-section-white div,
.comparison-section-white span,
.comparison-section-white li,
.comparison-section-white td,
.comparison-section-white th {
    color: var(--gray-800) !important;
}

.comparison-section-white strong {
    color: var(--gray-900) !important;
}

.comparison-section-gray,
.comparison-section-gray p,
.comparison-section-gray h1,
.comparison-section-gray h2,
.comparison-section-gray h3,
.comparison-section-gray h4,
.comparison-section-gray div,
.comparison-section-gray span,
.comparison-section-gray li,
.comparison-section-gray td,
.comparison-section-gray th {
    color: var(--gray-800) !important;
}

.comparison-section-gray strong {
    color: var(--gray-900) !important;
}

/* ================
   TOP NAVIGATION - Jump Links
   ================ */
.top-nav {
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 1px solid var(--gray-200);
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.top-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    gap: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.top-nav-container::-webkit-scrollbar {
    display: none;
}

.top-nav a {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    text-decoration: none;
    transition: color var(--transition);
    padding: 8px 0;
}

.top-nav a:hover {
    color: var(--jouver-orange);
}

.top-nav a:last-child {
    color: var(--jouver-orange);
}

@media (max-width: 768px) {
    .top-nav-container {
        gap: 16px;
        padding: 10px 16px;
    }
    
    .top-nav a {
        font-size: 13px;
    }
}


/* ====================================
   SOURCES & METHODOLOGY SECTION
   ==================================== */

.sources-methodology-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 3px solid #FF6B35;
}

.sources-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.sources-header {
    text-align: center;
    margin-bottom: 60px;
}

.sources-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.sources-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
}

/* Sources Grid */
.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

/* Sources Card */
.sources-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sources-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.sources-card-jouver {
    border: 2px solid #FF6B35;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
}

/* Card Header */
.sources-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e2e8f0;
}

.sources-icon {
    font-size: 32px;
}

.sources-card-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

/* Sources List */
.sources-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.sources-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

.source-bullet {
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

/* Quality Score */
.sources-quality {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #FF6B35;
}

.quality-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

.quality-score {
    font-size: 20px;
    font-weight: 700;
    color: #FF6B35;
}

/* Disclaimer */
.sources-disclaimer {
    background: white;
    border-left: 4px solid #fbbf24;
    padding: 24px 32px;
    border-radius: 8px;
    margin-bottom: 60px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sources-disclaimer p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 12px 0;
}

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

.sources-disclaimer strong {
    color: #1e293b;
    font-weight: 700;
}

/* Methodology Section */
.sources-methodology {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sources-methodology h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 40px;
}

/* Methodology Grid */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.methodology-step {
    text-align: center;
    padding: 24px;
    background: #f8fafc;
    border-radius: 8px;
    transition: background 0.3s;
}

.methodology-step:hover {
    background: #fff5f0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #FF6B35;
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.methodology-step h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.methodology-step p {
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sources-methodology-section {
        padding: 60px 16px;
    }
    
    .sources-header h2 {
        font-size: 28px;
    }
    
    .sources-intro {
        font-size: 16px;
    }
    
    .sources-grid {
        gap: 24px;
    }
    
    .sources-card {
        padding: 24px;
    }
    
    .sources-card-header h3 {
        font-size: 20px;
    }
    
    .sources-disclaimer {
        padding: 20px;
    }
    
    .sources-methodology {
        padding: 24px 20px;
    }
    
    .sources-methodology h3 {
        font-size: 24px;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}


/* TOP NAV - Make Visible & Sticky */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 12px 0;
    margin-bottom: 20px;
}

.top-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.top-nav a {
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.2s;
}

.top-nav a:hover {
    background: #FF6B35;
    color: white;
}

.top-nav a[style*="color: #FF6B35"] {
    background: #FF6B35;
    color: white !important;
    padding: 10px 20px;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-nav-container {
        gap: 12px;
        padding: 0 16px;
    }
    .top-nav a {
        padding: 6px 12px;
        font-size: 13px;
    }
}
