.why-hero {
    background: linear-gradient(135deg, #e11d48 0%, #8b5cf6 100%);
    padding: 40px 20px 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.why-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    animation: float 20s linear infinite;
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.why-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.why-hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.why-hero p {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary {
    background: white;
    color: #e11d48;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: #e11d48;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 15px;
    color: #64748b;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(225, 29, 72, 0.15);
    border-color: #e11d48;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e11d48 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
}

.comparison-section {
    background: linear-gradient(135deg, #f9f5ff 0%, #fef2f2 100%);
    padding: 60px 20px;
    margin: 60px 0;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(135deg, #e11d48 0%, #8b5cf6 100%);
    color: white;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 15px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 18px 24px;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background: #f9f5ff;
}

.feature-name {
    font-weight: 500;
    color: #1e293b;
    font-size: 14px;
}

.check-icon {
    color: #10b981;
    font-size: 20px;
    text-align: center;
}

.cross-icon {
    color: #ef4444;
    font-size: 20px;
    text-align: center;
}

.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.problem-card, .solution-card {
    padding: 40px 32px;
    border-radius: 12px;
}

.problem-card {
    background: #fef2f2;
    border-left: 6px solid #ef4444;
}

.solution-card {
    background: #f0fdf4;
    border-left: 6px solid #10b981;
}

.problem-card h3, .solution-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.problem-card h3 {
    color: #dc2626;
}

.solution-card h3 {
    color: #059669;
}

.problem-list, .solution-list {
    list-style: none;
    padding: 0;
}

.problem-list li, .solution-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.problem-list li:last-child, .solution-list li:last-child {
    border-bottom: none;
}

.problem-list li::before {
    content: '✗';
    color: #ef4444;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.solution-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-section {
    background: #1e293b;
    color: white;
    padding: 60px 20px;
    margin: 60px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.testimonial-card {
    background: #334155;
    padding: 32px 24px;
    border-radius: 12px;
    position: relative;
}

.quote-icon {
    font-size: 36px;
    color: #e11d48;
    opacity: 0.3;
    position: absolute;
    top: 16px;
    right: 16px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e11d48 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.author-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 13px;
    color: #94a3b8;
}

.stats-highlight {
    background: white;
    padding: 48px 20px;
    margin: 60px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-box h3 {
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, #e11d48 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-box p {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.use-case-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.use-case-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.use-case-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #e11d48 0%, #8b5cf6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.use-case-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
}

.use-case-card ul {
    list-style: none;
    padding: 0;
}

.use-case-card li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

.use-case-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e11d48;
    font-weight: 700;
}

.final-cta {
    background: linear-gradient(135deg, #e11d48 0%, #8b5cf6 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.final-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 16px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-hero {
        padding: 60px 20px 40px;
    }

    .why-hero h1 {
        font-size: 28px;
    }

    .why-hero p {
        font-size: 15px;
    }

    .section-container {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .benefits-grid,
    .testimonial-grid,
    .use-cases {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 2fr 1fr 1fr;
        font-size: 14px;
        padding: 20px 15px;
    }

    .problem-solution {
        grid-template-columns: 1fr;
    }

    .final-cta {
        padding: 48px 20px;
    }

    .final-cta h2 {
        font-size: 26px;
    }

    .final-cta p {
        font-size: 15px;
    }

    .cta-primary, .cta-secondary {
        padding: 12px 28px;
        font-size: 15px;
    }
}
