/* Small adjustments for hero section */

/* Make header navigation smaller */
.nav-link {
    font-size: 0.9rem !important;
}

.header-actions .btn {
    padding: 0.65rem 1.25rem !important;
    font-size: 0.85rem !important;
}

/* Make stats smaller */
.hero-stats {
    gap: 1rem !important;
}

@media (min-width: 480px) {
    .hero-stats {
        gap: 1.5rem !important;
    }
}

@media (min-width: 640px) {
    .hero-stats {
        gap: 2rem !important;
    }
}

@media (min-width: 768px) {
    .hero-stats {
        gap: 2.5rem !important;
    }
}

.stat-value {
    font-size: 1.35rem !important;
}
@media (min-width: 400px) { 
    .stat-value { font-size: 1.6rem !important; } 
}
@media (min-width: 480px) { 
    .stat-value { font-size: 1.85rem !important; } 
}
@media (min-width: 640px) { 
    .stat-value { font-size: 2rem !important; } 
}
@media (min-width: 768px) { 
    .stat-value { font-size: 2.75rem !important; } 
}

.stat-label {
    font-size: 0.45rem !important;
}
@media (min-width: 400px) { 
    .stat-label { font-size: 0.5rem !important; } 
}
@media (min-width: 480px) { 
    .stat-label { font-size: 0.575rem !important; } 
}
@media (min-width: 640px) { 
    .stat-label { font-size: 0.7rem !important; } 
}
@media (min-width: 768px) { 
    .stat-label { font-size: 0.8rem !important; } 
}

/* Make badge slightly smaller */
.hero-badge {
    padding: 0.35rem 0.7rem !important;
    font-size: 0.7rem !important;
    margin-bottom: 0.85rem !important;
}
@media (min-width: 640px) {
    .hero-badge {
        padding: 0.45rem 0.9rem !important;
        font-size: 0.8rem !important;
        margin-bottom: 1rem !important;
    }
}
@media (min-width: 768px) { 
    .hero-badge { 
        padding: 0.55rem 1.1rem !important;
        font-size: 0.9rem !important;
        margin-bottom: 1.25rem !important;
    } 
}

/* Make title slightly smaller */
.hero-title {
    font-size: 2.4rem !important;
    margin-bottom: 0.35rem !important;
}
@media (min-width: 400px) { 
    .hero-title { 
        font-size: 2.85rem !important;
        margin-bottom: 0.4rem !important;
    } 
}
@media (min-width: 640px) { 
    .hero-title { 
        font-size: 3.5rem !important;
        margin-bottom: 0.45rem !important;
    } 
}
@media (min-width: 768px) { 
    .hero-title { 
        font-size: 4.25rem !important;
        margin-bottom: 0.55rem !important;
    } 
}
@media (min-width: 1024px) { 
    .hero-title { 
        font-size: 5.75rem !important;
        margin-bottom: 0.65rem !important;
    } 
}
@media (min-width: 1280px) { 
    .hero-title { 
        font-size: 7.75rem !important;
        margin-bottom: 0.75rem !important;
    } 
}

/* Make subtitle slightly smaller */
.hero-subtitle {
    font-size: 1.05rem !important;
    margin-bottom: 0.85rem !important;
}
@media (min-width: 400px) { 
    .hero-subtitle { 
        font-size: 1.3rem !important;
        margin-bottom: 0.95rem !important;
    } 
}
@media (min-width: 640px) { 
    .hero-subtitle { 
        font-size: 1.6rem !important;
        margin-bottom: 1.05rem !important;
    } 
}
@media (min-width: 768px) { 
    .hero-subtitle { 
        font-size: 2.65rem !important;
        margin-bottom: 1.25rem !important;
    } 
}
@media (min-width: 1024px) { 
    .hero-subtitle { 
        font-size: 3.25rem !important;
        margin-bottom: 1.5rem !important;
    } 
}

/* Make description slightly smaller */
.hero-description {
    font-size: 0.825rem !important;
}
@media (min-width: 640px) { 
    .hero-description { font-size: 0.95rem !important; } 
}
@media (min-width: 768px) { 
    .hero-description { font-size: 1.05rem !important; } 
}
@media (min-width: 1024px) { 
    .hero-description { font-size: 1.175rem !important; } 
}

/* Fix SEO content section spacing */
.seo-content-section {
    background: linear-gradient(135deg, rgba(20,20,20,0.5) 0%, rgba(36,36,36,0.3) 100%) !important;
}

.seo-content-section .section-header {
    margin-bottom: 3rem !important;
}

.seo-content-section .section-label {
    display: block !important;
    margin-bottom: 0.75rem !important;
    font-size: 0.875rem !important;
    color: var(--primary) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    font-weight: 600 !important;
}

.seo-content-section .section-title {
    margin-bottom: 0.75rem !important;
    font-size: 2.5rem !important;
    color: #fff !important;
}

.seo-content-section .section-subtitle {
    margin-bottom: 2rem !important;
    color: var(--muted-foreground) !important;
    font-size: 1.1rem !important;
}

.seo-features-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
}

@media (min-width: 768px) {
    .seo-features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
}

@media (min-width: 1024px) {
    .seo-features-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.seo-feature-card {
    background: rgba(20, 20, 20, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 1.25rem !important;
    padding: 2rem 1.5rem !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.seo-feature-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--primary), transparent) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.seo-feature-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(255, 0, 0, 0.3) !important;
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.15) !important;
}

.seo-feature-card:hover::before {
    opacity: 1 !important;
}

.seo-feature-icon {
    width: 64px !important;
    height: 64px !important;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(255, 0, 0, 0.05)) !important;
    border: 2px solid rgba(255, 0, 0, 0.2) !important;
    border-radius: 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1.25rem !important;
    transition: all 0.3s ease !important;
}

.seo-feature-card:hover .seo-feature-icon {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.25), rgba(255, 0, 0, 0.1)) !important;
    border-color: rgba(255, 0, 0, 0.4) !important;
    transform: scale(1.05) !important;
}

.seo-feature-icon i {
    font-size: 1.75rem !important;
    color: var(--primary) !important;
}

.seo-feature-card h3 {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.5rem !important;
    color: var(--foreground) !important;
    margin: 0 0 0.75rem 0 !important;
    line-height: 1.3 !important;
    transition: color 0.3s ease !important;
}

.seo-feature-card:hover h3 {
    color: var(--primary) !important;
}

.seo-feature-card p {
    font-size: 1rem !important;
    line-height: 1.7 !important;
    color: var(--muted-foreground) !important;
    margin: 0 !important;
}

/* Improve promo card design */
.promo-card {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, rgba(36, 36, 36, 0.5) 100%) !important;
    border: 2px solid rgba(255, 0, 0, 0.2) !important;
    border-radius: 1.5rem !important;
    padding: 2.5rem 2rem !important;
    position: relative !important;
    overflow: hidden !important;
}

@media (min-width: 768px) {
    .promo-card {
        padding: 3rem 2.5rem !important;
        border-radius: 2rem !important;
    }
}

.promo-decoration {
    opacity: 0.08 !important;
}

.promo-glow {
    opacity: 0.6 !important;
}

.promo-content {
    gap: 2.5rem !important;
}

@media (min-width: 1024px) {
    .promo-content {
        gap: 3rem !important;
    }
}

.promo-icon {
    font-size: 3.5rem !important;
    filter: drop-shadow(0 4px 12px rgba(255, 0, 0, 0.4)) !important;
}

@media (min-width: 768px) {
    .promo-icon {
        font-size: 4.5rem !important;
    }
}

.promo-left .promo-title {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 2.5rem !important;
    margin: 0.5rem 0 0.25rem 0 !important;
    line-height: 1 !important;
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

@media (min-width: 768px) {
    .promo-left .promo-title {
        font-size: 3.5rem !important;
    }
}

.promo-subtitle {
    font-size: 1.15rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 !important;
}

@media (min-width: 768px) {
    .promo-subtitle {
        font-size: 1.35rem !important;
    }
}

.promo-offer-title {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.35rem !important;
    color: var(--primary) !important;
    margin: 0 0 0.5rem 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

@media (min-width: 768px) {
    .promo-offer-title {
        font-size: 1.65rem !important;
    }
}

.promo-right p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 1.5rem !important;
    max-width: 400px !important;
}

@media (min-width: 768px) {
    .promo-right p {
        font-size: 1.1rem !important;
    }
}

.promo-right .btn-hero {
    padding: 0.85rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.35) !important;
}

.promo-right .btn-hero:hover {
    transform: scale(1.05) translateY(-2px) !important;
    box-shadow: 0 12px 32px rgba(255, 0, 0, 0.5) !important;
}

/* Improve hero features - compact and clean */
.hero-features {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem 2rem !important;
    list-style: none !important;
    margin-top: 0 !important;
}

@media (min-width: 768px) {
    .hero-features {
        gap: 1rem 3rem !important;
    }
}

.hero-feature {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
}

@media (min-width: 640px) {
    .hero-feature {
        font-size: 0.9rem !important;
    }
}

@media (min-width: 768px) {
    .hero-feature {
        font-size: 0.95rem !important;
    }
}

.hero-feature i {
    color: var(--primary) !important;
    font-size: 1rem !important;
    flex-shrink: 0 !important;
}

@media (min-width: 768px) {
    .hero-feature i {
        font-size: 1.1rem !important;
    }
}

.hero-feature span {
    line-height: 1.4 !important;
}

/* Make buttons slightly taller with more spacing */
.hero-buttons {
    gap: 1rem !important;
}

@media (min-width: 768px) {
    .hero-buttons {
        gap: 1.25rem !important;
    }
}

.btn-hero {
    padding: 0.75rem 1.15rem !important;
    font-size: 0.8rem !important;
}
@media (min-width: 640px) { 
    .btn-hero { 
        padding: 0.85rem 1.35rem !important;
        font-size: 0.9rem !important;
    } 
}
@media (min-width: 768px) { 
    .btn-hero { 
        padding: 0.95rem 1.75rem !important;
        font-size: 1rem !important;
    } 
}

.btn-hero-outline {
    padding: 0.75rem 1.15rem !important;
    font-size: 0.8rem !important;
}
@media (min-width: 640px) { 
    .btn-hero-outline { 
        padding: 0.85rem 1.35rem !important;
        font-size: 0.9rem !important;
    } 
}
@media (min-width: 768px) { 
    .btn-hero-outline { 
        padding: 0.95rem 1.75rem !important;
        font-size: 1rem !important;
    } 
}
