/**
 * Services Overview Page Styles
 *
 * Classes prefixed .psv-* to avoid collision with single-service .sv-* styles.
 * Designed for the 2DRK Lab dark-theme agency site.
 *
 * Sections:
 *  1. Hero
 *  2. Services Grid
 *  3. Process
 *  4. Why 2DRK
 *  5. Final CTA
 *  6. Responsive
 */

/* ==========================================================================
   1. HERO
   ========================================================================== */

.psv-hero {
    background: var(--clr-dark);
    padding: 110px 0 72px;
    text-align: center;
}

.psv-hero .section-label {
    display: block;
    margin-bottom: 18px;
}

.psv-hero h1 {
    font-size: clamp( 2.25rem, 5vw, 3.5rem );
    font-weight: 800;
    color: var(--clr-white);
    line-height: 1.15;
    margin: 0 auto 24px;
}

.psv-hero-sub {
    font-size: 1.0625rem;
    color: var(--clr-muted);
    max-width: 580px;
    line-height: 1.75;
    margin: 0 auto 36px;
}

.psv-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* Stat row */
.psv-hero-stats {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--clr-border);
    padding-top: 32px;
    max-width: 460px;
    margin: 0 auto;
}

.psv-hstat {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.psv-hstat-div {
    width: 1px;
    height: 44px;
    background: var(--clr-border);
    margin: 0 28px;
    flex-shrink: 0;
}

.psv-hstat-num {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--clr-white);
    line-height: 1;
}

.psv-hstat-sup {
    font-size: 1.125rem;
    color: var(--clr-accent);
}

.psv-hstat-lbl {
    font-size: 0.8125rem;
    color: var(--clr-muted);
    font-weight: 500;
}

/* ==========================================================================
   2. SERVICES GRID
   ========================================================================== */

.psv-services-section {
    background: #fff;
}

.psv-services-section .section-head {
    margin-bottom: 48px;
}

.psv-services-section .section-head h2 {
    color: #1a202c;
    font-size: clamp( 1.75rem, 3vw, 2.5rem );
    font-weight: 800;
    line-height: 1.2;
    margin: 8px 0 0;
}

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

.psv-card {
    display: flex;
    flex-direction: column;
    background: #f7f9fc;
    border: 1px solid #e8edf3;
    border-radius: 8px;
    padding: 28px 24px;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.psv-card:hover {
    border-color: rgba( 245, 197, 24, 0.5 );
    background: #fff;
    transform: translateY(-3px);
}

.psv-card--featured {
    border-color: var(--clr-accent);
    background: rgba( 245, 197, 24, 0.04 );
}

.psv-card--featured:hover {
    background: rgba( 245, 197, 24, 0.07 );
}

.psv-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.psv-card-icon {
    width: 44px;
    height: 44px;
    background: #e8edf3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a202c;
    flex-shrink: 0;
}

.psv-card--featured .psv-card-icon {
    background: rgba( 245, 197, 24, 0.15 );
    color: var(--clr-accent);
}

.psv-card-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--clr-accent);
    color: #000;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.psv-card-tag {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #8b949e;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.psv-card--featured .psv-card-tag {
    color: var(--clr-accent);
}

.psv-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.35;
    margin: 0 0 10px;
}

.psv-card p {
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.psv-card-link {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--clr-accent);
    margin-top: 20px;
    transition: letter-spacing 0.2s;
}

.psv-card:hover .psv-card-link {
    letter-spacing: 0.025em;
}

/* ==========================================================================
   3. PROCESS
   ========================================================================== */

.psv-process-section {
    background: var(--clr-dark);
    padding: 80px 0;
}

.psv-process-section .section-head {
    margin-bottom: 56px;
}

.psv-process-section .section-head h2 {
    color: var(--clr-white);
    font-size: clamp( 1.75rem, 3vw, 2.25rem );
    font-weight: 800;
    margin: 8px 0 0;
}

.psv-steps {
    display: flex;
    align-items: flex-start;
}

.psv-step {
    flex: 1;
    padding: 0 32px;
}

.psv-step:first-child { padding-left: 0; }
.psv-step:last-child  { padding-right: 0; }

.psv-step-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-accent);
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.psv-step-bar {
    width: 32px;
    height: 2px;
    background: var(--clr-accent);
    margin-bottom: 18px;
}

.psv-step h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--clr-white);
    margin: 0 0 12px;
}

.psv-step p {
    font-size: 0.9375rem;
    color: var(--clr-muted);
    line-height: 1.72;
    margin: 0;
}

.psv-step-arrow {
    font-size: 1.25rem;
    color: rgba( 255, 255, 255, 0.15 );
    padding-top: 22px;
    flex-shrink: 0;
}

/* ==========================================================================
   4. WHY 2DRK
   ========================================================================== */

.psv-why-section {
    background: #fff;
}

.psv-why-section .section-head {
    margin-bottom: 48px;
}

.psv-services-section .section-label,
.psv-why-section .section-label {
    color: var(--clr-accent);
}

.psv-why-section .section-head h2 {
    color: #1a202c;
    font-size: clamp( 1.75rem, 3vw, 2.25rem );
    font-weight: 800;
    margin: 8px 0 0;
}

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

.psv-why-card {
    background: #f7f9fc;
    border: 1px solid #e8edf3;
    border-radius: 8px;
    padding: 28px 24px;
    transition: border-color 0.2s;
}

.psv-why-card:hover {
    border-color: rgba( 245, 197, 24, 0.5 );
}

.psv-why-icon {
    margin-bottom: 20px;
    display: flex;
}

.psv-why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 10px;
}

.psv-why-card p {
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   5. FINAL CTA
   ========================================================================== */

.psv-cta-section {
    background: var(--clr-dark);
    padding: 96px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.psv-cta-accent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 3px;
    background: var(--clr-accent);
    border-radius: 0 0 4px 4px;
}

.psv-cta-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.psv-cta-h {
    font-size: clamp( 2rem, 4.5vw, 3.25rem );
    font-weight: 800;
    color: var(--clr-white);
    line-height: 1.18;
    margin: 0 0 24px;
}

.psv-cta-sub {
    font-size: 1.0625rem;
    color: var(--clr-muted);
    line-height: 1.72;
    max-width: 560px;
    margin: 0 auto 32px;
}

.psv-cta-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.psv-badge {
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-accent);
    background: rgba( 245, 197, 24, 0.08 );
    border: 1px solid rgba( 245, 197, 24, 0.2 );
    border-radius: 4px;
    padding: 6px 16px;
}

.psv-cta-btn {
    display: inline-block;
}

.psv-cta-email-line {
    font-size: 14px;
    color: var(--clr-muted);
    margin: 20px 0 0;
}

.psv-cta-email-line a {
    color: var(--clr-accent);
    text-decoration: none;
    font-weight: 600;
}

.psv-cta-email-line a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   6. RESPONSIVE
   ========================================================================== */

@media ( max-width: 1100px ) {
    .psv-why-grid {
        grid-template-columns: repeat( 2, 1fr );
    }
}

@media ( max-width: 900px ) {
    .psv-grid {
        grid-template-columns: repeat( 2, 1fr );
    }

    .psv-steps {
        flex-direction: column;
        gap: 40px;
    }

    .psv-step {
        padding: 0;
    }

    .psv-step-arrow {
        display: none;
    }

    .psv-cta-wrap {
        max-width: 100%;
    }
}

@media ( max-width: 640px ) {
    .psv-grid {
        grid-template-columns: 1fr;
    }

    .psv-why-grid {
        grid-template-columns: 1fr;
    }

    .psv-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .psv-hstat-div {
        margin: 0 16px;
    }

    .psv-hero-stats {
        max-width: 100%;
    }
}
