/* ================================
   SECTION-SPECIFIC STYLES
   Background colors for main sections
   ================================ */

/* Services Section */
.services {
    background: var(--color-white);
}

/* Process Section */
.process {
    background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-white) 100%);
}

/* Showcase Section */
.showcase {
    background: var(--color-white);
}

/* Why Website Section */
.why-website {
    background: var(--gradient-dark);
    color: var(--color-white);
}

.why-website .section-tag {
    color: var(--color-secondary-light);
}

.why-website .section-title,
.why-website .section-description {
    color: var(--color-white);
}

/* === INTERACTIVE SPLIT PANEL === */
.why-panel {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-6);
    min-height: 320px;
}

.why-tabs {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2);
}

.why-tab {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.2rem;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    color: rgba(255,255,255,0.55);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.why-tab:last-child {
    border-bottom: none;
}

.why-tab-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.why-tab:hover {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
}

.why-tab.active {
    background: rgba(107,78,255,0.18);
    border-left-color: var(--color-primary-light);
    color: var(--color-white);
    font-weight: 600;
}

.why-content-area {
    position: relative;
    padding: var(--space-4) var(--space-6);
}

.why-content-panel {
    display: none;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.why-content-panel.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.why-panel-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(107,78,255,0.3);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.why-content-panel h3 {
    font-size: var(--text-2xl);
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

.why-content-panel p {
    color: rgba(255,255,255,0.75);
    font-size: var(--text-base);
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

.why-stats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.why-stats li {
    color: rgba(255,255,255,0.65);
    font-size: var(--text-sm);
    padding-left: 1rem;
    position: relative;
}

.why-stats li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-primary-light);
}

.why-stats strong {
    color: var(--color-white);
    font-weight: 700;
}

/* Fix why-conclusion text visibility */
.why-conclusion {
    text-align: center;
    padding: var(--space-4) var(--space-6);
    background: rgba(107,78,255,0.12);
    border: 1px solid rgba(107,78,255,0.25);
    border-radius: var(--radius-xl);
    color: var(--color-white);
}

.why-conclusion .lead {
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-3);
}

.why-strong {
    color: var(--color-white) !important;
    font-weight: 700;
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1.05em;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .why-panel {
        grid-template-columns: 1fr;
    }
    .why-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .why-tab {
        border-bottom: none;
        border-left: none;
        border-bottom: 3px solid transparent;
        flex: 1;
        justify-content: center;
        font-size: var(--text-xs);
        padding: 0.7rem 0.5rem;
    }
    .why-tab.active {
        border-left-color: transparent;
        border-bottom-color: var(--color-primary-light);
    }
}

/* FAQ Section */
.faq {
    background: var(--color-off-white);
}