/* ===== WHY US ===== */
.why-us-section { padding: 100px 0; }

.why-us-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.why-us-stat { text-align: center; }

.why-us-num {
    font-family: 'Adineue', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ff4b22;
    line-height: 1;
}

.why-us-label {
    font-size: 14px;
    color: #999;
    margin-top: 4px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-us-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.why-us-card:hover {
    border-color: #ff4b22;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.why-us-icon { font-size: 32px; margin-bottom: 14px; }

.why-us-card-title {
    font-family: 'Bauhaus', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-us-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===== PROCESS ===== */
.process-section {
    padding: 100px 0;
    background: #f9f9f9;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.process-step {
    padding: 28px 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: #ff4b22;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.process-num {
    font-family: 'Adineue', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #f0f0f0;
    line-height: 1;
    margin-bottom: 12px;
}

.process-step:hover .process-num { color: #ff4b22; }

.process-step-title {
    font-family: 'Bauhaus', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===== SEO BOTTOM ===== */
.seo-bottom-section {
    padding: 60px 0;
    border-top: 1px solid #f0f0f0;
}

.seo-bottom-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-bottom-content h2 {
    font-family: 'Bauhaus', sans-serif;
    font-size: 22px;
    margin-bottom: 16px;
    color: #333;
}

.seo-bottom-content p {
    font-size: 15px;
    color: #777;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ===== CTA BLOCK ===== */
.cta-block-section { padding: 60px 0; }

.cta-block-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 2px solid #ff4b22;
    border-radius: 20px;
    padding: 36px 40px;
    gap: 32px;
}

.cta-block-title {
    font-family: 'Adineue', sans-serif;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
}

.cta-block-desc {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.cta-block-right {
    display: flex;
    flex-shrink: 0;
    gap: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .why-us-section, .process-section { padding: 60px 0; }
    .why-us-stats { gap: 24px; }
    .why-us-num { font-size: 36px; }
    .why-us-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .cta-block-card { flex-direction: column; text-align: center; padding: 28px 24px; }
    .cta-block-right { flex-direction: column; width: 100%; }
    .cta-block-right a { width: 100%; justify-content: center; margin-left: 0 !important; }
}
