/* service-page.css — nav/footer rules stripped (61 blocks).
   The shared Layout supplies the nav and footer, styled by
   home.css. This file's originals collided with them. */

/* service-page.css — extracted verbatim from the inline <style> in
   src/templates/service-page.php (lines 38-761). Shared by 40 service pages. */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
        --dark:        #0A0A0A;
        --dark-2:      #0D0D0D;
        --dark-3:      #111111;
        --light:       #FFFFFF;
        --amber:       #D97706;
        --amber-hover: #B45309;
        --muted:       #666666;
        --border:      rgba(255,255,255,0.08);
        --max-w:       1200px;
        --gutter:      2.5rem;
    }

    html { scroll-behavior: smooth; }

    body {
        font-family: 'DM Sans', sans-serif;
        background: var(--dark);
        color: #fff;
        line-height: 1.75;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

    .wrap {
        width: 100%;
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--gutter);
    }

    h1, h2, h3, h4 {
        font-family: 'Sora', sans-serif;
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1.08;
    }

    p { line-height: 1.75; }

    .eyebrow {
        display: block;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 1.25rem;
    }
    .eyebrow-amber { color: var(--amber); }

    .fade-up {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ── HERO ── */
    #service-hero {
        padding: 10rem var(--gutter) 6rem;
        background: var(--dark);
        border-bottom: 1px solid var(--border);
    }
    .service-hero-inner {
        max-width: var(--max-w);
        margin: 0 auto;
    }
    #service-hero .eyebrow { color: var(--amber); }
    #service-hero h1 {
        font-size: clamp(3rem, 7vw, 6rem);
        margin-bottom: 1.5rem;
        max-width: 800px;
    }
    #service-hero .hero-sub {
        font-size: 1.1rem;
        color: rgba(255,255,255,0.5);
        max-width: 560px;
        line-height: 1.7;
    }
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        background: rgba(217,119,6,0.12);
        color: var(--amber);
        border: 1px solid rgba(217,119,6,0.28);
        padding: 0.35rem 0.85rem;
        border-radius: 100px;
        margin-bottom: 1.75rem;
    }
    .hero-badge-dot {
        width: 6px; height: 6px;
        background: var(--amber);
        border-radius: 50%;
        animation: pulse-dot 2s ease-in-out infinite;
    }@keyframes pulse-dot {
        0%, 100% { opacity: 1; }
        50%       { opacity: 0.3; }
    }

    /* ── WHAT IS IT ── */
    #service-what {
        background: #ffffff;
        padding: 6rem 0;
    }
    .service-what-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--gutter);
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 5rem;
        align-items: center;
    }
    .service-what-left .eyebrow { color: #888888; }
    .service-what-left h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.75rem);
        color: #0A0A0A;
        line-height: 1.1;
    }
    .service-what-right p {
        font-size: 1rem;
        color: #444444;
        line-height: 1.85;
    }

    /* ── WHAT'S INCLUDED ── */
    #service-includes {
        background: var(--dark);
        padding: 6rem 0;
    }
    .service-includes-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--gutter);
    }
    .service-includes-head {
        margin-bottom: 3.5rem;
    }
    .service-includes-head .eyebrow { color: var(--muted); }
    .service-includes-head h2 {
        font-size: clamp(2rem, 4vw, 3.25rem);
        margin-bottom: 0.75rem;
    }
    .service-includes-head .subhead {
        font-size: 0.95rem;
        color: var(--amber);
        font-weight: 500;
    }
    .includes-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .include-card {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 16px;
        padding: 2rem;
        transition: background 0.2s, border-color 0.2s;
    }
    .include-card:hover {
        background: rgba(255,255,255,0.07);
        border-color: rgba(255,255,255,0.1);
    }
    .include-card h3 {
        font-size: 0.95rem;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.015em;
        margin-bottom: 0.6rem;
    }
    .include-card p {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.55);
        line-height: 1.65;
    }
    .include-icon {
        width: 32px;
        height: 32px;
        background: rgba(217,119,6,0.12);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }
    .include-icon svg { width: 16px; height: 16px; stroke: var(--amber); fill: none; }

    /* ── WHY IT MATTERS ── */
    #service-why {
        background: #ffffff;
        padding: 6rem 0;
    }
    .service-why-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--gutter);
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 5rem;
        align-items: center;
    }
    .service-why-left .eyebrow { color: #888888; }
    .service-why-left h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.75rem);
        color: #0A0A0A;
        line-height: 1.1;
    }
    .service-why-right p {
        font-size: 1rem;
        color: #444444;
        line-height: 1.85;
    }

    /* ── PROCESS ── */
    #service-process {
        background: var(--dark-3);
        padding: 6rem 0;
    }
    .service-process-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--gutter);
    }
    .service-process-head {
        margin-bottom: 3.5rem;
    }
    .service-process-head .eyebrow { color: var(--muted); }
    .service-process-head h2 {
        font-size: clamp(2rem, 4vw, 3.25rem);
    }
    .process-steps { }
    .process-step {
        display: flex;
        gap: 2.5rem;
        align-items: flex-start;
        padding: 2rem 0;
        border-top: 1px solid rgba(255,255,255,0.06);
    }
    .process-step:last-child { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .process-step-num {
        font-family: 'Sora', sans-serif;
        font-size: 3rem;
        font-weight: 800;
        color: rgba(255,255,255,0.08);
        line-height: 1;
        flex-shrink: 0;
        min-width: 4rem;
    }
    .process-step-body { flex: 1; }
    .process-step-body h3 {
        font-size: 1.05rem;
        font-weight: 700;
        color: white;
        letter-spacing: -0.015em;
        margin-bottom: 0.4rem;
    }
    .process-step-body p {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.45);
        line-height: 1.7;
    }

    /* ── DEEP DIVE (long-form content) ── */
    #service-deep-dive {
        background: #ffffff;
        padding: 6rem 0;
        color: #1a1a1a;
    }
    .service-deep-dive-inner {
        max-width: 760px;
        margin: 0 auto;
        padding: 0 var(--gutter);
        font-family: 'DM Sans', sans-serif;
    }
    .service-deep-dive-inner h2 {
        font-family: 'Sora', sans-serif;
        font-size: clamp(1.5rem, 3vw, 2.1rem);
        color: #0A0A0A;
        margin: 3rem 0 1rem;
        letter-spacing: -0.025em;
        line-height: 1.15;
    }
    .service-deep-dive-inner h2:first-child { margin-top: 0; }
    .service-deep-dive-inner h3 {
        font-family: 'Sora', sans-serif;
        font-size: 1.15rem;
        color: #0A0A0A;
        margin: 2rem 0 0.75rem;
        letter-spacing: -0.015em;
        font-weight: 700;
    }
    .service-deep-dive-inner p {
        font-size: 1rem;
        color: #333333;
        line-height: 1.85;
        margin-bottom: 1.25rem;
    }
    .service-deep-dive-inner ul,
    .service-deep-dive-inner ol {
        margin: 0 0 1.5rem 1.5rem;
        padding: 0;
    }
    .service-deep-dive-inner li {
        font-size: 1rem;
        color: #333333;
        line-height: 1.8;
        margin-bottom: 0.5rem;
    }
    .service-deep-dive-inner a {
        color: var(--amber);
        text-decoration: underline;
        text-decoration-thickness: 1px;
        text-underline-offset: 3px;
    }
    .service-deep-dive-inner a:hover { color: var(--amber-hover); }
    .service-deep-dive-inner strong { color: #0A0A0A; font-weight: 700; }
    .service-deep-dive-inner blockquote {
        border-left: 3px solid var(--amber);
        padding-left: 1.5rem;
        margin: 2rem 0;
        font-style: italic;
        color: #555555;
        font-size: 1.05rem;
    }
    .service-deep-dive-eyebrow {
        display: block;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--amber);
        margin-bottom: 1rem;
    }
    .service-deep-dive-intro {
        font-size: 1.05rem;
        color: #444444;
        line-height: 1.8;
        margin-bottom: 2.5rem;
    }

    /* ── FAQ ── */
    #service-faq {
        background: var(--dark);
        padding: 6rem 0;
        border-top: 1px solid rgba(255,255,255,0.04);
    }
    .service-faq-inner {
        max-width: 820px;
        margin: 0 auto;
        padding: 0 var(--gutter);
    }
    .service-faq-head {
        margin-bottom: 2.5rem;
        text-align: center;
    }
    .service-faq-head .eyebrow { color: var(--muted); }
    .service-faq-head h2 {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    .faq-list { display: block; }
    .faq-item {
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .faq-item summary {
        list-style: none;
        cursor: pointer;
        padding: 1.4rem 0;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 1.5rem;
        font-family: 'Sora', sans-serif;
        font-weight: 600;
        font-size: 1.02rem;
        color: #fff;
        letter-spacing: -0.015em;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
        content: '+';
        font-family: 'Sora', sans-serif;
        font-weight: 400;
        font-size: 1.4rem;
        color: var(--amber);
        line-height: 1;
        flex-shrink: 0;
        transition: transform .2s ease;
    }
    .faq-item[open] summary::after {
        content: '−';
    }
    .faq-item-body {
        padding: 0 0 1.4rem 0;
        font-size: 0.92rem;
        color: rgba(255,255,255,0.55);
        line-height: 1.75;
    }

    /* ── CTA ── */
    #service-cta {
        background: var(--dark);
        padding: 7rem var(--gutter);
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    #service-cta::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 700px;
        height: 500px;
        background: radial-gradient(ellipse at center, rgba(217,119,6,0.09) 0%, transparent 65%);
        pointer-events: none;
    }
    .service-cta-inner {
        max-width: 600px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    #service-cta .eyebrow { color: var(--muted); }
    #service-cta h2 {
        font-size: clamp(2.25rem, 5vw, 4rem);
        margin-bottom: 1.25rem;
        line-height: 1.05;
    }
    #service-cta p {
        font-size: 1rem;
        color: rgba(255,255,255,0.45);
        line-height: 1.7;
        margin-bottom: 2.5rem;
    }
    .cta-btns {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        font-family: 'DM Sans', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        border: none;
        transition: all 0.22s ease;
        white-space: nowrap;
    }
    .btn-primary {
        background: white;
        color: #0A0A0A;
        padding: 0.75rem 2rem;
        border-radius: 100px;
    }
    .btn-primary:hover { background: #f0f0f0; transform: translateY(-1px); }
    .btn-ghost {
        background: transparent;
        border: 1px solid rgba(255,255,255,0.25);
        color: white;
        padding: 0.75rem 2rem;
        border-radius: 100px;
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
        .service-what-inner,
        .service-why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
        .includes-grid { grid-template-columns: repeat(2, 1fr); }
        .footer-top { grid-template-columns: 1fr; }
        .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
    }@media (max-width: 768px) {
        :root { --gutter: 1.25rem; }
        /* Hero */
        .service-hero { padding: 6rem var(--gutter) 3.5rem; text-align: center; }
        .service-hero h1 { font-size: clamp(1.9rem, 7vw, 2.8rem) !important; }
        .service-hero-btns { justify-content: center; flex-wrap: wrap; }
        /* Section spacing */
        .service-what, .service-includes, .service-process,
        .service-why, .service-cta { padding: 3.5rem var(--gutter) !important; }
        /* Process steps */
        .process-steps { grid-template-columns: 1fr !important; }
    }@media (max-width: 640px) {
        :root { --gutter: 1rem; }
        .includes-grid { grid-template-columns: 1fr; }
        .cta-btns { flex-direction: column; align-items: center; }
    }@media (max-width: 480px) {
        .includes-grid { grid-template-columns: 1fr; }
    }
        .chevron-icon { width: 12px; height: 12px; opacity: 0.5; }@keyframes ddSlideDown {
            from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
            to   { opacity: 1; transform: translateX(-50%) translateY(0); }
        }
