/* ============================================
   HERO-SIMPLE.CSS - Hero Section Simplified
   F1Key Website - Clean & Effective Hero
   ============================================ */

/* ==================== */
/* HERO SIMPLE LAYOUT */
/* ==================== */

.hero-simple {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 100px 0 40px;
}

/* Subtitle Pill */
.hero-subtitle-pill {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(220, 20, 60, 0.1); 
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 50px;
    color: var(--color-ferrari-red);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

/* ==================== */
/* HERO TITLE */
/* ==================== */

.hero-simple h1 {
    font-family: var(--font-primary) !important;
    font-size: 4rem !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.02em !important;
}

.text-gradient {
    background: linear-gradient(135deg, 
        var(--color-primary) 0%, 
        #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-simple .hero-description {
    font-size: 1.25rem !important;
    line-height: 1.6 !important;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== */
/* HERO MINI STATS */
/* ==================== */

.hero-stats {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 24px;
    background: var(--color-surface-1);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 140px;
}

.stat-mini:hover {
    transform: translateY(-2px);
    border-color: rgba(220, 20, 60, 0.2);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.15);
}

.stat-mini-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.stat-mini-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.stat-mini-label {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    text-align: center;
    line-height: 1.3;
}

/* ==================== */
/* HERO CTAs */
/* ==================== */

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, 
        var(--color-primary) 0%, 
        #ff4d4d 100%);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.4);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: var(--color-text-primary);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    border-color: var(--color-primary);
    background: rgba(220, 20, 60, 0.05);
}

.cta-icon {
    font-size: 1.2em;
    line-height: 1;
}

/* ==================== */
/* HERO TRUST */
/* ==================== */

.hero-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-avatars {
    display: flex;
    align-items: center;
    gap: -8px;
}

.trust-avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--color-background);
    margin-left: -12px;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.trust-count {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-surface-2);
    border: 3px solid var(--color-background);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-left: -12px;
}

.trust-text {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin: 0;
}

.trust-text strong {
    color: var(--color-text-primary);
}

/* ==================== */
/* RESPONSIVE */
/* ==================== */

/* Laptop */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-simple h1 {
        font-size: 3.5rem !important;
        font-weight: 900 !important;
    }
    
    .hero-simple .hero-description {
        font-size: 1.2rem !important;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .hero-simple {
        padding: 80px 0 60px;
    }
    
    .hero-simple h1 {
        font-size: 2.75rem !important;
        font-weight: 900 !important;
    }
    
    .hero-simple .hero-description {
        font-size: 1.15rem !important;
    }
    
    .hero-stats {
        gap: 12px;
    }
    
    .stat-mini {
        min-width: 120px;
        padding: 14px 20px;
    }
    
    .stat-mini-icon {
        font-size: 1.3rem;
    }
    
    .stat-mini-value {
        font-size: 1rem;
    }
    
    .stat-mini-label {
        font-size: 0.7rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-simple h1 {
        font-size: 2.1rem !important;
        font-weight: 900 !important;
        line-height: 1.3 !important;
    }
    
    .hero-simple .hero-description {
        font-size: 1.05rem !important;
    }
    
    .hero-stats {
        flex-direction: column;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat-mini {
        width: 100%;
    }
    
    .trust-avatars img,
    .trust-count {
        width: 40px;
        height: 40px;
    }
}
        margin-left: auto;
        margin-right: auto;
    }

    .stat-mini {
        width: 100%;
    }
    
    .hero-trust-line {
        margin-top: 32px;
        padding-top: 24px;
    }
}

/* Trust Line */
.hero-trust-line {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.trust-flags {
    font-size: 1.5rem;
}

.hero-trust-line p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 400px;
    font-weight: 500;
}
