/* Services Page — Editorial Typography Design */

/* ── Hero ────────────────────────────────────── */
.svc-hero {
    background: #0f172a;
    color: white;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.svc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(37, 99, 235, 0.15), transparent),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(118, 75, 162, 0.1), transparent);
}

.svc-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.4), transparent);
}

.svc-hero .container {
    position: relative;
    z-index: 2;
}

.svc-hero-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 1.5rem;
}

.svc-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.svc-hero h1 em {
    font-style: italic;
    color: #60a5fa;
}

.svc-hero-sub {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ── Animations ──────────────────────────────── */
@keyframes svcFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.svc-hero .container > * {
    animation: svcFadeUp 0.8s ease-out both;
}

.svc-hero .container > *:nth-child(1) { animation-delay: 0s; }
.svc-hero .container > *:nth-child(2) { animation-delay: 0.1s; }
.svc-hero .container > *:nth-child(3) { animation-delay: 0.2s; }

/* ── Service Card Sections ───────────────────── */
.svc-card-section {
    padding: 80px 0;
    position: relative;
}

.svc-card-white {
    background: white;
}

.svc-card-alt {
    background: #f8fafc;
}

.svc-card-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.15), transparent);
}

.svc-card-layout {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 900px;
}

.svc-card-meta {
    padding-top: 0.25rem;
}

.svc-card-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(37, 99, 235, 0.3);
    line-height: 1;
    display: block;
}

.svc-card-timeline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2563eb;
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 2px;
    background: rgba(37, 99, 235, 0.04);
}

.svc-card-body h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.svc-card-desc {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.svc-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    gap: 0.5rem;
}

.svc-card-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #334155;
    font-size: 1rem;
    line-height: 1.6;
}

.svc-card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    border: 1.5px solid #2563eb;
    border-radius: 50%;
}

.svc-card-footer {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.svc-card-investment {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.svc-card-invest-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #94a3b8;
}

.svc-card-invest-value {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: #0f172a;
}

/* ── CTA Button ──────────────────────────────── */
.svc-cta-btn {
    display: inline-block;
    background: #0f172a;
    color: white;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 2px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.svc-cta-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}

.svc-cta-btn-dark {
    background: #0f172a;
    color: white;
}

.svc-cta-btn-dark:hover {
    background: #2563eb;
}

/* ── Our Approach ────────────────────────────── */
.svc-approach {
    background: #0f172a;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.svc-approach::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 80% 80%, rgba(37, 99, 235, 0.1), transparent);
}

.svc-approach::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

.svc-approach .container {
    position: relative;
    z-index: 2;
}

.svc-approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.svc-approach-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 1.5rem;
}

.svc-approach-left h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.svc-approach-sub {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.svc-approach-result {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.svc-approach-step {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    align-items: flex-start;
}

.svc-approach-step:first-child {
    padding-top: 0;
}

.svc-approach-step:last-child {
    border-bottom: none;
}

.svc-approach-step-label {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: #60a5fa;
    min-width: 2rem;
    line-height: 1.3;
}

.svc-approach-step strong {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #e2e8f0;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.svc-approach-step p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ── Why Choose Us ───────────────────────────── */
.svc-why {
    padding: 100px 0;
    background: white;
    position: relative;
}

.svc-why::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.15), transparent);
}

.svc-why-header {
    margin-bottom: 3.5rem;
}

.svc-why-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 1rem;
}

.svc-why-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: #0f172a;
    line-height: 1.2;
}

.svc-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.svc-why-item {
    padding: 2rem;
    position: relative;
    border-left: 3px solid #2563eb;
    background: #f8fafc;
    border-radius: 2px;
}

.svc-why-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.svc-why-item p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ── Testimonial ─────────────────────────────── */
.svc-testimonial {
    background: #0f172a;
    color: white;
    padding: 80px 0;
    position: relative;
}

.svc-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

.svc-testimonial-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.svc-testimonial-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 2rem;
}

.svc-testimonial blockquote {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0 0 2rem;
}

.svc-testimonial cite {
    font-style: normal;
    color: #94a3b8;
    font-size: 0.95rem;
    display: block;
}

/* ── Bottom CTA ──────────────────────────────── */
.svc-bottom-cta {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.svc-bottom-cta h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #0f172a;
    margin-bottom: 1rem;
}

.svc-bottom-cta p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
    .svc-approach-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .svc-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .svc-hero {
        padding: 120px 0 60px;
    }

    .svc-card-section {
        padding: 50px 0;
    }

    .svc-card-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .svc-card-number {
        font-size: 2.5rem;
    }

    .svc-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

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

    .svc-approach {
        padding: 60px 0;
    }

    .svc-why {
        padding: 60px 0;
    }

    .svc-testimonial blockquote {
        font-size: 1.25rem;
    }

    .svc-bottom-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .svc-hero h1 {
        font-size: 2.2rem;
    }

    .svc-card-body h2 {
        font-size: 1.6rem;
    }

    .svc-approach-left h2 {
        font-size: 1.8rem;
    }

    .svc-why-header h2 {
        font-size: 1.8rem;
    }
}
