/* ===== HERO SECTION ===== */

/* Remove border between sections */
.section-hero + .site-section,
.section-hero {
    border-top: none !important;
}

/* Hero title and subtitle styling */
.section-hero .section-header {
    text-align: left !important;
    margin-bottom: 2rem;
}

.section-hero .section-title {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    text-align: left !important;
}

.section-hero .section-desc {
    font-size: 1.5rem !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
    text-align: left !important;
}

/* Feature List with Custom SVG Icons */
.hero-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-body-color);
    font-size: var(--font-size-base);
}

.hero-features .check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" version="1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" enable-background="new 0 0 48 48"><polygon fill="%2343A047" points="40.6,12.1 17,35.7 7.4,26.1 4.6,29 17,41.3 43.4,14.9"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
}

/* Trustpilot styling */
.hero-trustpilot {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 182, 122, 0.1) 0%, rgba(0, 182, 122, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 182, 122, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-trustpilot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

.hero-trustpilot h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.trustpilot-brand-large {
    font-size: 2rem;
    font-weight: bold;
    color: #00b67a;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 182, 122, 0.3);
}

.stars-large {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 1rem 0;
}

.trustpilot-stars-large i {
    color: #00b67a !important;
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 182, 122, 0.4));
    transition: transform 0.2s ease;
}

.trustpilot-stars-large i:hover {
    transform: scale(1.1);
}

.hero-trustpilot a {
    color: #00b67a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
    background: rgba(0, 182, 122, 0.1);
    border: 1px solid rgba(0, 182, 122, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-trustpilot a:hover {
    color: #ffffff;
    background: #00b67a;
    border-color: #00b67a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 182, 122, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991.98px) {
    .section-hero {
        text-align: center;
    }
    
    .section-hero .section-header {
        text-align: center !important;
    }
    
    .section-hero .section-title {
        font-size: 2.5rem !important;
        text-align: center !important;
    }
    
    .section-hero .section-desc {
        font-size: 1.25rem !important;
        text-align: center !important;
    }
    
    .hero-features {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-trustpilot {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

@media (max-width: 575.98px) {
    .section-hero .section-title {
        font-size: 2rem !important;
    }
    
    .section-hero .section-desc {
        font-size: 1.125rem !important;
    }
    
    .hero-trustpilot {
        padding: 1rem;
    }
}
