/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-main {
    font-family: 'VeniteAdoremus', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--pure-white);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

/* Offer Section */
.offer-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 2;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.offer-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.offer-number {
    font-family: 'VeniteAdoremus', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.offer-icon-wrap {
    margin-bottom: 1.5rem;
}

.offer-icon {
    width: 40px;
    height: 40px;
    stroke: var(--pure-white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.offer-card:hover .offer-icon {
    opacity: 1;
    transform: translateY(-2px);
}

.offer-title {
    font-family: 'VeniteAdoremus', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--pure-white);
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
}

.offer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us Section */
.why-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.why-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text {
    text-align: left;
}

.why-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-check {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: 0.25rem;
}

.why-feature-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
}

.why-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-stat-box {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-stat-box:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.why-stat-number {
    font-family: 'VeniteAdoremus', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--pure-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.why-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: 'VeniteAdoremus', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--pure-white);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.cta-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 0.95rem;
}

.btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .stats-grid {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-divider {
        height: 40px;
    }
}
