/* =========================================
   Why Us Section Styles
   ========================================= */
#why-us {
    background-color: white;
    padding: 96px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.why-us-content .section__tagline {
    color: #ff5000;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 16px;
}

.why-us-content .section__title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.why-us-content .section__subtitle {
    font-size: 18px;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.625;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.reason-item {
    display: flex;
    gap: 16px;
}

.reason-icon-box {
    width: 48px;
    height: 48px;
    background-color: #fff7ed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reason-icon-box svg {
    width: 24px;
    height: 24px;
    color: #ff5000;
}

.reason-title {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.reason-desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.5;
}

/* Visual Side (Stats) */
.why-us-visual {
    position: relative;
}

.visual-gradient-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 24px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

@media (max-width: 640px) {
    .visual-gradient-box {
        padding: 32px;
    }
}

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

.stat-box-glass {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.stat-box-glass .val {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.stat-box-glass .lab {
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.partner-box-glass {
    margin-top: 32px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.partner-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.partner-icon-circle {
    width: 40px;
    height: 40px;
    background-color: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-icon-circle svg {
    width: 20px;
    height: 20px;
    color: #ff5000;
}

.partner-title {
    color: #0f172a;
    /* Fixed white color to dark for better visibility on light bg */
    font-weight: 600;
    font-size: 16px;
}

.partner-desc {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

/* Decorative Elements */
.decor-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.decor-1 {
    top: -24px;
    left: -24px;
    width: 96px;
    height: 96px;
    background-color: #cbd5e1;
}

.decor-2 {
    bottom: -24px;
    right: -24px;
    width: 128px;
    height: 128px;
    background-color: #94a3b8;
}

/* =========================================
   Dark Variant: .why-us--dark
   ========================================= */
#why-us.why-us--dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 96px 0;
}

#why-us.why-us--dark .why-us-content .section__title {
    color: #ffffff;
}

#why-us.why-us--dark .why-us-content .section__subtitle {
    color: #94a3b8;
}

#why-us.why-us--dark .reason-title {
    color: #f1f5f9;
}

#why-us.why-us--dark .reason-desc {
    color: #94a3b8;
}

#why-us.why-us--dark .reason-icon-box {
    background-color: rgba(255, 80, 0, 0.15);
    border: 1px solid rgba(255, 80, 0, 0.2);
}

#why-us.why-us--dark .visual-gradient-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

#why-us.why-us--dark .stat-box-glass {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#why-us.why-us--dark .stat-box-glass .val {
    color: #ffffff;
}

#why-us.why-us--dark .stat-box-glass .lab {
    color: #94a3b8;
}

#why-us.why-us--dark .partner-box-glass {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#why-us.why-us--dark .partner-title {
    color: #f1f5f9;
}

#why-us.why-us--dark .partner-desc {
    color: #94a3b8;
}

#why-us.why-us--dark .partner-icon-circle {
    background-color: rgba(255, 80, 0, 0.15);
    border: 1px solid rgba(255, 80, 0, 0.2);
}

#why-us.why-us--dark .decor-1 {
    background-color: rgba(255, 80, 0, 0.12);
}

#why-us.why-us--dark .decor-2 {
    background-color: rgba(30, 41, 59, 0.8);
}