/* Optimized CSS for meilleurclavieripad.com - Performance & SEO Ready */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=SF+Pro+Display:wght@300;400;500;600;700&display=swap');

/* Premium Tech Bento Grid System */
:root {
    --primary-color: #2C3E50;
    --secondary-color: #1E293B;
    --accent-color: #FF6B35;
    --text-primary: #1A1A1C;
    --text-secondary: #6C757D;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FF;
    --bg-tertiary: #E6F3FF;
    --bento-bg: #F0F7FF;
    --shadow-diffuse: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.12);
    --shadow-light: rgba(0, 0, 0, 0.04);
    --shadow-medium: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.06);
    
    /* Spacing system */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    
    /* Typography */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-skip: 1050;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    background: linear-gradient(to bottom, #FAFAFA, #F5F5F7);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container Width Harmonization */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.75rem;
    }
}

h1 {
    font-family: 'SF Pro Display', -apple-system, sans-serif;
    font-size: clamp(5rem, 12vw, 8rem);
    font-weight: 950;
    line-height: 0.8;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 8px 40px rgba(0,0,0,0.6);
    letter-spacing: -0.05em;
    text-transform: uppercase;
    display: block;
}

.brand-highlight {
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    display: inline-block;
    font-weight: 700;
}

.hero-title {
    font-size: clamp(3.2rem, 8vw, 5.5rem);
    font-weight: 950;
    line-height: 0.85;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 6px 30px rgba(0,0,0,0.5);
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

h2 {
    font-family: 'SF Pro Display', -apple-system, sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 4rem 0 2rem 0;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Section Headers with enhanced styling */
.section-header-enhanced {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    border-radius: 24px;
    padding: 4rem;
    margin-bottom: 4rem;
    border: none;
    box-shadow: 0 1px 4px var(--shadow-light);
}

.section-header-enhanced h2 {
    margin: 0 0 1.5rem 0;
    padding-left: 0;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header-enhanced h2::before {
    display: none;
}

h3 {
    font-family: 'SF Pro Display', -apple-system, sans-serif;
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 700;
    margin: 2.5rem 0 1.5rem 0;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 5rem) !important;
    font-weight: 900 !important;
    line-height: 0.9 !important;
    margin-bottom: 2rem !important;
    color: white !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
    letter-spacing: -0.03em !important;
    text-transform: none !important;
    display: block !important;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.site-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    position: relative;
}

.site-logo::before {
    content: '⌨';
    font-size: 2.5rem;
    color: #1e3a8a;
    font-weight: bold;
}

.site-logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 8px;
    background: #1e3a8a;
    border-radius: 4px;
}

.main-content {
    background: var(--bg-primary);
    border-radius: 24px;
    box-shadow: 0 2px 8px var(--shadow-light);
    margin: -3rem auto 6rem auto;
    padding: 5rem;
    position: relative;
    border: none;
}

/* Premium Tech Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin: 4rem 0;
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.bento-card {
    background: var(--bento-bg);
    border-radius: 40px;
    border: none;
    box-shadow: 0 4px 20px var(--shadow-diffuse);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.bento-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px var(--shadow-hover);
}

.bento-image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-secondary);
    position: relative;
    overflow: hidden;
}

.bento-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
}

.bento-content {
    padding: 2.5rem;
}

.bento-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bento-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.bento-badge {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.bento-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.badge-weight {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.badge-connection {
    background: linear-gradient(135deg, #10b981, #059669);
}

.badge-haptic-yes {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.badge-haptic-no {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.bento-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1;
}

.bento-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.bento-cta {
    width: 100%;
    padding: 1.25rem;
    background: #000000;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.bento-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #1a1a1a;
}

.bento-accroche {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bento-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.bento-cta:active {
    transform: translateY(-1px);
}

.product-card {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 4rem;
    margin: 4rem 0;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 4px var(--shadow-light);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 8px 24px var(--shadow-medium);
}

.product-card:hover::before {
    opacity: 1;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

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

.feature-item {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 24px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px var(--shadow-light);
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 16px var(--shadow-medium);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px var(--shadow-light);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--shadow-medium);
}

.ia-ready-badge {
    background: linear-gradient(135deg, #FF3B30, #FF9500);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin: 0.5rem 0;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2.5rem 0;
}

.pros, .cons {
    padding: 2.5rem;
    border-radius: 24px;
    border: none;
    box-shadow: 0 1px 4px var(--shadow-light);
}

.pros {
    background: rgba(52, 199, 89, 0.05);
}

.cons {
    background: rgba(255, 59, 48, 0.05);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.star {
    color: #FFD700;
    font-size: 1.2rem;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* Critères de Test Section */
.criteria-section {
    margin: 0 0 3rem 0;
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.criteria-box {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.criteria-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .criteria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .criteria-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.criteria-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.criteria-icon {
    font-size: 1.25rem;
    color: var(--primary-color);
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.criteria-text {
    flex: 1;
}

.criteria-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.85rem;
    line-height: 1.2;
}

.criteria-desc {
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-top: 0.1rem;
    line-height: 1.2;
}

/* Verdict Box Styles - Centered */
.verdict-box {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.verdict-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.verdict-icon {
    color: #007AFF;
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.verdict-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e40af;
}

.verdict-text {
    color: #1e40af;
    font-weight: 500;
    line-height: 1.6;
}

/* List Styles */
.innovation-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.innovation-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.space-y-2 {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.space-y-2 li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.space-y-2 li:last-child {
    border-bottom: none;
}

/* Pros/Cons Icons */
.pros-icon {
    color: #22c55e;
    margin-right: 0.5rem;
}

.cons-icon {
    color: #ef4444;
    margin-right: 0.5rem;
}

/* Bugs/Problems Sections */
.bugs-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 0.75rem;
}

.bugs-icon {
    color: #dc2626;
    margin-right: 0.5rem;
}

.problems-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ea580c;
    margin-bottom: 0.75rem;
}

.problems-icon {
    color: #ea580c;
    margin-right: 0.5rem;
}

.bugs-list, .problems-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.bugs-list li, .problems-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.bugs-list li:last-child, .problems-list li:last-child {
    border-bottom: none;
}

/* Note de l'expert */
.expert-note {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-weight: 500;
}

/* Responsive - Apple Store Style */
@media (max-width: 768px) {
    .main-content {
        padding: 3rem 2rem;
        margin: -2rem 1rem 4rem 1rem;
        border-radius: 20px;
    }

    .pros-cons {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header-enhanced {
        padding: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .product-card {
        padding: 2.5rem;
        margin: 3rem 0;
        border-radius: 20px;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .conclusion-box {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
        padding: 3rem;
    }

    .innovation-card {
        padding: 2.5rem;
    }

    .innovation-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Responsive Table Optimizations */
.overflow-x-auto {
    scrollbar-width: thin;
    scrollbar-color: rgba(0,122,255,0.3) transparent;
}

.overflow-x-auto::-webkit-scrollbar {
    height: 6px;
}

.overflow-x-auto::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 3px;
}

.overflow-x-auto::-webkit-scrollbar-thumb {
    background: rgba(0,122,255,0.3);
    border-radius: 3px;
}

.overflow-x-auto::-webkit-scrollbar-thumb:hover {
    background: rgba(0,122,255,0.5);
}

/* Mobile Card Optimizations */
@media (max-width: 767px) {
    /* Prevent text overflow in mobile cards */
    .md\:hidden .space-y-4 > div {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .md\:hidden .flex.justify-between {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .md\:hidden .font-semibold {
        flex-shrink: 0;
        min-width: 100px;
    }
    
    /* Enhanced mobile cards */
    .md\:hidden .bg-white {
        background: var(--bg-primary) !important;
        border-radius: 20px !important;
        border: 1px solid var(--border-light) !important;
        padding: 2rem !important;
        margin-bottom: 1.5rem !important;
        box-shadow: 0 4px 20px var(--shadow-light) !important;
        transition: all 0.3s ease !important;
    }
    
    .md\:hidden .bg-white:hover {
        transform: translateY(-4px) !important;
        box-shadow: 0 8px 32px var(--shadow-medium) !important;
    }
    
    .md\:hidden .font-bold {
        font-size: 1.3rem !important;
        font-weight: 700 !important;
        margin-bottom: 1rem !important;
    }
    
    .md\:hidden .space-y-2 {
        gap: 1rem !important;
    }
    
    .md\:hidden .space-y-2 > div {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-light);
    }
    
    .md\:hidden .space-y-2 > div:last-child {
        border-bottom: none;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,122,255,0.3);
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.section-title {
    font-family: 'SF Pro Display', -apple-system, sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-desc.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Section Headers with Max Width */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-enhanced {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.section-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Content Width Constraints */
.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.pros-cons {
    max-width: 800px;
    margin: 0 auto;
}

/* Comparison Table Styles */
.comparison-table-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    margin: 2rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table caption {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 1rem;
    text-align: center;
    background: var(--bg-tertiary);
    margin-bottom: 0;
}

.comparison-table thead {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-light);
    font-size: 0.85rem;
    white-space: nowrap;
}

.comparison-table td {
    padding: 1rem 0.75rem;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.comparison-table tbody tr {
    transition: all 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: var(--bg-tertiary);
    transform: translateX(2px);
}

.product-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.product-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

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

.strengths-list li {
    padding: 0.25rem 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.strengths-list li::before {
    content: "✓";
    color: #22c55e;
    font-weight: bold;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.verdict-cell {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-secondary);
    max-width: 200px;
}

.price-cell {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.rating-excellent {
    background: #dcfce7;
    color: #166534;
}

.rating-good {
    background: #fef3c7;
    color: #92400e;
}

.rating-average {
    background: #fee2e2;
    color: #991b1b;
}

.cta-cell {
    padding: 0.5rem;
}

.cta-table {
    display: inline-block;
    background: linear-gradient(135deg, #ff9900, #ff6600);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-table:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .comparison-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table {
        min-width: 700px;
    }
    
    .product-thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .comparison-table caption {
        font-size: 1rem;
        padding: 0.75rem 0.5rem;
    }
    
    .verdict-cell {
        max-width: 150px;
        font-size: 0.8rem;
    }
}

/* Innovation Grid - Optimized for better UX */
.innovation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin: 1rem 0;
    }
}

.innovation-card {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: auto;
}

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

.innovation-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

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

.innovation-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.innovation-badge {
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.innovation-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 0;
    color: var(--text-primary);
}

.innovation-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0.5rem 0;
    line-height: 1.4;
}

.innovation-features {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
}

.innovation-features li {
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
}

.innovation-impact {
    background: var(--bg-tertiary);
    padding: 0.5rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
}

.impact-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.impact-value {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Conclusion Box - Apple Store Style */
.conclusion-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 4rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    color: white;
    box-shadow: 0 4px 20px var(--shadow-medium);
    border: none;
}

.conclusion-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.conclusion-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.conclusion-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .conclusion-box {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem;
    }

    .innovation-card {
        padding: 2rem;
    }

    .innovation-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Verdict Box Styles */
.verdict-box {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.verdict-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.verdict-icon {
    color: #007AFF;
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.verdict-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e40af;
}

.verdict-text {
    color: #1e40af;
    font-weight: 500;
    line-height: 1.6;
}

/* Enhanced Amazon CTA Buttons */
.amazon-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff9900, #ff6600);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(255, 153, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.amazon-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.amazon-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 153, 0, 0.4);
    background: linear-gradient(135deg, #ff6600, #ff9900);
}

.amazon-cta:hover::before {
    left: 100%;
}

.amazon-cta:active {
    transform: translateY(-1px);
}

/* Footer CITAE - Professional Minimalist Design */
.footer-citae {
    background: #000000;
    color: #e5e5e5;
    padding: 3rem 0 1rem 0;
    margin-top: 6rem;
    position: relative;
}

.footer-citae::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #333333, transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-title {
    font-family: 'SF Pro Display', -apple-system, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 1px;
    background: #333333;
}

.footer-text {
    font-size: 0.7rem;
    line-height: 1.6;
    color: #888888;
    margin: 0;
    max-width: 280px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    font-size: 0.7rem;
    color: #888888;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    display: inline-block;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 1px;
    background: #333333;
    transition: all 0.2s ease;
}

.footer-link:hover::before {
    background: #ffffff;
    width: 6px;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.65rem;
    color: #666666;
    margin: 0;
    font-family: 'SF Pro Display', -apple-system, sans-serif;
}

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

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.2s ease;
    border: 1px solid #333333;
    border-radius: 4px;
}

.social-icon:hover {
    color: #ffffff;
    border-color: #555555;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-citae {
        padding: 2rem 0 1rem 0;
        margin-top: 4rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-text {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-citae {
        padding: 1.5rem 0 1rem 0;
    }
    
    .footer-grid {
        gap: 1.5rem;
    }
    
    .footer-title {
        font-size: 0.7rem;
    }
    
    .footer-text,
    .footer-link {
        font-size: 0.65rem;
    }
    
    .footer-copyright {
        font-size: 0.6rem;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }
}

/* Profil Cards - Modern Horizontal Layout */
.profil-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.profil-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.profil-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.profil-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.profil-card:hover::before {
    transform: scaleX(1);
}

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

.profil-emoji {
    font-size: 2rem;
    line-height: 1;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.profil-card:hover .profil-emoji {
    filter: grayscale(0);
    transform: scale(1.1);
}

.profil-title {
    font-family: 'SF Pro Display', -apple-system, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.profil-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.profil-benefit {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 122, 255, 0.1);
}

.profil-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.profil-action i {
    transition: transform 0.3s ease;
}

.profil-card:hover .profil-action {
    color: var(--secondary-color);
}

.profil-card:hover .profil-action i {
    transform: translateX(4px);
}

/* Responsive Design for Profil Cards */
@media (max-width: 768px) {
    .profil-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .profil-card {
        padding: 1.5rem;
    }
    
    .profil-card-header {
        margin-bottom: 1rem;
    }
    
    .profil-emoji {
        font-size: 1.5rem;
    }
    
    .profil-title {
        font-size: 1.1rem;
    }
    
    .profil-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .profil-benefit {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .profil-cards-container {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .profil-card {
        padding: 1.25rem;
    }
    
    .profil-card-header {
        gap: 0.75rem;
    }
    
    .profil-emoji {
        font-size: 1.25rem;
    }
    
    .profil-title {
        font-size: 1rem;
    }
    
    .profil-description {
        font-size: 0.8rem;
    }
    
    .profil-benefit {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .profil-action {
        font-size: 0.8rem;
    }
}

/* Summary Card - Glassmorphism Design */
.summary-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.3), transparent);
}

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

.summary-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(0, 122, 255, 0.1);
    padding: 0.75rem;
    border-radius: 12px;
}

.summary-title {
    font-family: 'SF Pro Display', -apple-system, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.summary-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.summary-item:hover {
    background: rgba(248, 250, 252, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.summary-item-icon {
    font-size: 1.25rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.summary-item div {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Compact Tabs System */
.tabs-container {
    background: white;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.tabs-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 1.25rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    position: relative;
}

.tab-btn:hover {
    background: rgba(0, 0, 0, 0.03);
}

.tab-btn.active {
    background: white;
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

.tab-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.tab-name {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.tab-btn.active .tab-name {
    color: var(--primary-color);
}

.tabs-content {
    padding: 2rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.compact-product {
    max-width: 600px;
    margin: 0 auto;
}

.compact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.compact-header h3 {
    font-family: 'SF Pro Display', -apple-system, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.compact-rating {
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
}

.compact-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.compact-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 122, 255, 0.1);
}

.compact-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.compact-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.25);
}

/* Responsive Design for Summary and Tabs */
@media (max-width: 768px) {
    .summary-card {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .summary-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .summary-item {
        padding: 0.75rem;
    }
    
    .tabs-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-btn {
        padding: 1rem 0.5rem;
    }
    
    .tab-price {
        font-size: 1rem;
    }
    
    .tab-name {
        font-size: 0.75rem;
    }
    
    .tabs-content {
        padding: 1.5rem;
    }
    
    .compact-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .compact-features {
        gap: 0.5rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .summary-card {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .summary-header {
        gap: 0.75rem;
    }
    
    .summary-icon {
        font-size: 1.25rem;
        padding: 0.5rem;
    }
    
    .summary-title {
        font-size: 1.1rem;
    }
    
    .summary-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .summary-item-icon {
        font-size: 1rem;
    }
    
    .summary-item div {
        font-size: 0.8rem;
    }
    
    .tabs-content {
        padding: 1rem;
    }
    
    .compact-header h3 {
        font-size: 1.1rem;
    }
    
    .compact-desc {
        font-size: 0.9rem;
    }
    
    .compact-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Optimized Spacing - Reduce Vertical Space */
.section-header-enhanced {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: var(--z-skip);
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin: 2.5rem 0 1.5rem 0;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin: 2rem 0 1rem 0;
}

.mb-8 {
    margin-bottom: 3rem;
}

.mb-6 {
    margin-bottom: 2rem;
}

.product-card {
    padding: 2.5rem;
    margin: 2rem 0;
}

.feature-grid {
    margin: 2rem 0;
}

.innovation-grid {
    margin: 1.5rem 0;
}

.pros-cons {
    margin: 2rem 0;
}
