.hero-badge {
    display: inline-block;
    background: rgba(87, 165, 128, 0.15);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.problem-card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid #e53935;
}

.problem-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-sm);
}

.problem-icon svg {
    width: 100%;
    height: 100%;
    color: #e53935;
}

.problem-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.problem-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: var(--spacing-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table thead {
    background: var(--bg-dark);
    color: var(--text-white);
}

.comparison-table th.highlight {
    background: var(--primary);
}

.comparison-table td.highlight {
    background: rgba(87, 165, 128, 0.08);
    color: var(--primary-dark);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.comparison-table tbody tr:hover td.highlight {
    background: rgba(87, 165, 128, 0.15);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn,
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

.section-brand .info-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-lg);
}

.section-brand .info-card .info-icon {
    width: 48px;
    height: 48px;
    background: rgba(87, 165, 128, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.section-brand .info-card .info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.section-brand .info-card h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.section-brand .info-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}