/*
 * Ozymind — Service page styles (incremental to style.css)
 * Reuses the brand tokens defined in style.css (:root). Orange is used for
 * fills/borders only; orange text uses --oz-text (AA-compliant). No new colours.
 */

/* ── Breadcrumb ────────────────────────────────────────────── */
.svc-breadcrumb {
    font-size: 13px; letter-spacing: .3px;
    margin-bottom: 22px; color: var(--t3, #6b7280);
}
.svc-breadcrumb ol {
    list-style: none; display: flex; flex-wrap: wrap;
    gap: 8px; padding: 0; margin: 0;
}
.svc-breadcrumb li { display: flex; align-items: center; gap: 8px; }
.svc-breadcrumb li:not(:last-child)::after {
    content: "/"; color: var(--border-strong); }
.svc-breadcrumb a { color: var(--t2); text-decoration: none; }
.svc-breadcrumb a:hover { color: var(--oz-text); text-decoration: underline; }
.svc-breadcrumb [aria-current="page"] { color: var(--t1); font-weight: 600; }

/* ── Hero ──────────────────────────────────────────────────── */
.svc-hero {
    background: var(--oz-soft);
    border-bottom: 1px solid var(--border-oz);
    padding: 130px 0 60px;
}
.svc-eyebrow {
    display: inline-block;
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--oz-text);
    margin-bottom: 16px;
}
.svc-hero h1 {
    font-size: 44px; font-weight: 900; line-height: 1.12;
    color: var(--t1); margin: 0 0 20px;
}
.svc-lead {
    font-size: 20px; line-height: 1.6; color: var(--t2);
    max-width: 720px; margin: 0 0 32px;
}

/* ── Generic section rhythm on service pages ───────────────── */
.svc-section { padding: 70px 0; }
.svc-section h2 {
    font-size: 30px; font-weight: 900; line-height: 1.2;
    color: var(--t1); margin: 0 0 14px;
}
.svc-section .svc-intro {
    font-size: 17px; line-height: 1.7; color: var(--t2);
    max-width: 720px; margin: 0 0 40px;
}

/* ── Audience callout ──────────────────────────────────────── */
.svc-audience {
    background: var(--surface); border: 1px solid var(--border-oz);
    border-left: 4px solid var(--oz);
    border-radius: var(--radius, 10px);
    padding: 26px 30px; box-shadow: var(--shadow-sm);
}
.svc-audience h2 { font-size: 18px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.svc-audience p { font-size: 17px; line-height: 1.7; color: var(--t2); margin: 0; }

/* ── Deliverables grid ─────────────────────────────────────── */
.svc-deliverables { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.svc-deliverable {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius, 10px); padding: 26px 28px;
    box-shadow: var(--shadow-sm); transition: all var(--ease, .2s ease);
}
.svc-deliverable:hover { box-shadow: var(--shadow-md); border-color: var(--border-oz); }
.svc-deliverable h3 { font-size: 18px; font-weight: 700; color: var(--t1); margin: 0 0 10px; }
.svc-deliverable p { font-size: 15.5px; line-height: 1.65; color: var(--t2); margin: 0; }

/* ── Process steps ─────────────────────────────────────────── */
.svc-process { list-style: none; counter-reset: step; padding: 0; margin: 0; }
.svc-process li {
    position: relative; padding: 0 0 28px 64px; }
.svc-process li:not(:last-child)::before {
    content: ""; position: absolute; left: 21px; top: 44px; bottom: 0;
    width: 2px; background: var(--border-oz); }
.svc-process li .svc-step-num {
    counter-increment: step;
    position: absolute; left: 0; top: 0;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--oz); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 17px;
}
.svc-process li .svc-step-num::before { content: counter(step); }
.svc-process h3 { font-size: 18px; font-weight: 700; color: var(--t1); margin: 8px 0 8px; }
.svc-process p { font-size: 15.5px; line-height: 1.65; color: var(--t2); margin: 0; }

/* ── FAQ (native disclosure, keyboard-accessible) ──────────── */
.svc-faq { max-width: 760px; }
.svc-faq details { border-bottom: 1px solid var(--border); }
.svc-faq summary {
    list-style: none; cursor: pointer;
    padding: 22px 40px 22px 0; position: relative;
    font-size: 17px; font-weight: 600; color: var(--t1);
}
.svc-faq summary::-webkit-details-marker { display: none; }
.svc-faq summary::after {
    content: "+"; position: absolute; right: 6px; top: 18px;
    font-size: 24px; font-weight: 400; color: var(--oz-text);
    transition: transform .2s ease;
}
.svc-faq details[open] summary::after { content: "\2212"; } /* minus */
.svc-faq summary:focus-visible { outline: 2px solid var(--oz-text); outline-offset: 3px; }
.svc-faq details p {
    font-size: 16px; line-height: 1.7; color: var(--t2);
    margin: 0 0 22px; padding-right: 40px;
}

/* ── Related services / insights ───────────────────────────── */
.svc-related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-related a {
    display: block; background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius, 10px); padding: 20px 22px;
    text-decoration: none; transition: all var(--ease, .2s ease);
}
.svc-related a:hover { border-color: var(--border-oz); box-shadow: var(--shadow-md); }
.svc-related .svc-related-kind {
    display: block; font-size: 12px; font-weight: 700; letter-spacing: .8px;
    text-transform: uppercase; color: var(--oz-text); margin-bottom: 8px;
}
.svc-related .svc-related-title { font-size: 16px; font-weight: 600; color: var(--t1); line-height: 1.4; }

/* ── Proof ─────────────────────────────────────────────────── */
.svc-note {
    font-size: 16px; line-height: 1.7; color: var(--t2);
    max-width: 720px; margin: 26px auto 0; text-align: center;
}
.svc-proof-statement {
    font-size: 22px; line-height: 1.5; font-weight: 500; color: var(--t1);
    max-width: 760px; margin: 0; border-left: 4px solid var(--oz);
    padding-left: 24px;
}

/* ── Closing CTA (reuses .blog-cta rhythm) ─────────────────── */
.svc-cta { text-align: center; padding: 60px 0 20px; }
.svc-cta p { font-size: 20px; font-weight: 500; color: var(--t1); margin-bottom: 24px; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 767px) {
    .svc-hero { padding: 110px 0 44px; }
    .svc-hero h1 { font-size: 32px; }
    .svc-lead { font-size: 17px; }
    .svc-section { padding: 48px 0; }
    .svc-section h2 { font-size: 25px; }
    .svc-deliverables { grid-template-columns: 1fr; }
    .svc-related { grid-template-columns: 1fr; }
}
