/* Hero KPIs Prominent */
.hero-kpis-prominent {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.primary-kpis {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 1rem;
}

.primary-kpi {
    text-align: center;
    position: relative;
}

.primary-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-heading);
    line-height: 0.9;
    text-shadow: 0 0 30px rgba(222, 222, 0, 0.3);
    display: block;
}

.primary-unit {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.primary-coverage {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    font-family: var(--font-heading);
    line-height: 0.9;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    display: block;
}

.coverage-unit {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.primary-label {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 700;
    margin: 0.5rem 0 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-sub {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.3;
}

.kpi-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    opacity: 0.6;
}

.platforms-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.platforms-visual {
    display: flex;
    gap: 1rem;
}

.platform-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.platform-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.platform-icon:hover::before {
    opacity: 1;
}

.platform-icon:hover {
    transform: translateY(-3px) scale(1.05);
}

.instagram-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.tiktok-icon {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
}

.youtube-icon {
    background: linear-gradient(45deg, #c4302b, #ff0000);
}

.platforms-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.platforms-title {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}

.platforms-detail {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Hero Section Updates */
.hero {
    padding-top: 120px; /* More space from header */
}

.title-claim {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
    font-family: var(--font-primary);
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 580px;
    line-height: 1.7;
    font-weight: 500;
}

.hero-description strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* CTA Section */
.hero-cta {
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), #f0f000);
    color: var(--black);
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(222, 222, 0, 0.4);
    margin-bottom: 1rem;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(222, 222, 0, 0.6);
    background: linear-gradient(135deg, #f0f000, var(--primary-color));
}

.btn-primary-large i {
    font-size: 1.1rem;
}

.cta-support {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Social Proof */
.social-proof {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(222, 222, 0, 0.2);
}

.proof-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.proof-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.proof-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.brand-logo {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(222, 222, 0, 0.2);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-separator {
    font-size: 0.8rem;
    color: var(--text-dark);
    font-style: italic;
}

/* Layout Balance */
.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: start; /* Changed to start for better alignment */
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-top: 1rem; /* Align with dashboard top */
}

.hero-dashboard {
    padding-top: 1rem; /* Consistent top padding */
}

/* Responsive KPIs */
@media (max-width: 768px) {
    .primary-kpis {
        flex-direction: column;
        gap: 2rem;
    }
    
    .kpi-divider {
        width: 60px;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    }
    
    .platforms-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: center;
    }
    
    .hero-content {
        padding-top: 0;
        text-align: center;
    }
    
    .hero-dashboard {
        padding-top: 0;
    }
    
    .cta-support {
        justify-content: center;
    }
    
    .proof-logos {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .primary-number, .primary-coverage {
        font-size: 3rem;
    }
    
    .primary-unit, .coverage-unit {
        font-size: 2rem;
    }
    
    .platform-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .hero-benefits {
        gap: 1rem;
    }
    
    .benefit-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Dashboard Balance */
.dashboard-preview-large {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
}