/* ============================================================
   Shared page theme: homepage + service pages.

   Everything is scoped under .home-page so nothing here can leak
   into blades that have not opted in. A blade opts in by pushing
   this stylesheet and wrapping its content in .home-page.

   Rules of the language:
   - Square corners everywhere. No radius on buttons, cards or inputs.
   - Uniform hairline borders. Never a thicker or coloured single edge.
   - Low shadow for depth instead of heavy outlines.
   - Alternating white / tint / grey / dark bands for rhythm.
   ============================================================ */

.home-page {
    --home-ink: #16181d;
    --home-ink-soft: #4a4f57;
    --home-ink-muted: #6b7280;
    --home-line: #e8eaed;
    --home-tint: #fff7f0;
    --home-tint-deep: #fff1e4;
    --home-surface: #fafafa;
    --home-dark: #16181d;
    --home-radius: 0;
    --home-radius-sm: 0;
    --home-shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 10px 28px -14px rgba(16, 24, 40, 0.12);
    --home-shadow-lift: 0 2px 4px rgba(16, 24, 40, 0.05), 0 18px 40px -16px rgba(16, 24, 40, 0.18);
}

.home-page .btn {
    border-radius: 0;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.home-page .btn-outline-primary {
    border-width: 2px;
}

/* The fixed navbar offset lands on .sk-main > :first-child. Because this theme
   wraps the page in .home-page, move that offset onto the hero so the tinted
   band starts directly under the navbar instead of behind a white strip. */
.sk-main > .home-page {
    padding-top: 0;
}

/* Brush-stroke emphasis: a soft translucent wash over the lower third of the
   text rather than a hard, heavy underline. */
.home-page .sk-em {
    position: relative;
    z-index: 0;
    text-decoration: none;
    color: inherit;
    font-weight: inherit;
}

.home-page .sk-em::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: -0.1em;
    right: -0.1em;
    bottom: 0.14em;
    height: 0.3em;
    background: rgba(var(--sk-accent-rgb), 0.5);
    filter: blur(2.5px);
    pointer-events: none;
}

/* ---------- Section scaffolding ---------- */

.home-section {
    padding: 4.5rem 0;
    background: #fff;
}

.home-section--tint {
    background: var(--home-tint);
}

.home-section--surface {
    background: var(--home-surface);
}

.home-section--dark {
    background: var(--home-dark);
}

.home-section--tight {
    padding-top: 3rem;
}

.home-head {
    max-width: 44rem;
    margin: 0 0 3rem;
}

.home-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.home-eyebrow {
    font-family: var(--sk-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--sk-accent);
    margin: 0 0 0.85rem;
}

.home-title {
    font-family: var(--sk-font-heading);
    font-size: clamp(1.65rem, 3.4vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--home-ink);
    margin: 0 0 1rem;
}

.home-lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--home-ink-soft);
    margin: 0;
}

/* ---------- Hero ---------- */

.home-hero {
    padding: calc(var(--sk-main-offset) + 1.5rem) 0 4rem;
    background: linear-gradient(180deg, var(--home-tint-deep) 0%, #fffdfb 100%);
}

.home-hero__eyebrow {
    font-family: var(--sk-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--sk-accent);
    margin: 0 0 1rem;
}

.home-hero__headline {
    font-family: var(--sk-font-heading);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--home-ink);
    margin: 0 0 1.25rem;
}

.home-hero__headline-intro {
    display: block;
    font-size: clamp(1.45rem, 2.9vw, 1.95rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--home-ink-soft);
    margin-bottom: 0.35rem;
}

.home-hero__headline-accent {
    display: block;
    font-size: clamp(2.1rem, 5vw, 3.15rem);
}

/* Service heroes carry a single-sentence headline instead of the
   two-part homepage treatment. */
.home-hero__headline--service {
    font-size: clamp(1.95rem, 4.4vw, 2.85rem);
}

/* Service heroes are a single centred column so every service page
   opens the same way, with or without a supporting image. */
.home-hero--center {
    text-align: center;
}

.home-hero--center .home-hero__lead {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.home-hero--center .home-hero__actions,
.home-hero--center .home-hero__trust {
    justify-content: center;
}

.home-hero__lead {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--home-ink-soft);
    max-width: 34rem;
    margin: 0 0 1.75rem;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.home-hero__proof {
    font-size: 0.9375rem;
    color: var(--home-ink-muted);
    margin: 0;
}

.home-hero__visual {
    position: relative;
    border-radius: var(--home-radius);
    overflow: hidden;
    box-shadow: var(--home-shadow);
    background: #fff;
}

.home-hero__image {
    display: block;
    width: 100%;
    height: auto;
}

/* ---------- Stat strip ---------- */

.home-stats {
    padding: 3rem 0;
    background: #fff;
    border-bottom: 1px solid var(--home-line);
}

.home-stats__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .home-stats__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .home-stats__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

.home-stat__number {
    font-family: var(--sk-font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--sk-accent);
    margin: 0 0 0.6rem;
}

.home-stat__title {
    font-family: var(--sk-font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--home-ink);
    margin: 0 0 0.35rem;
}

.home-stat__desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--home-ink-muted);
    margin: 0;
}

/* ---------- Note / manifesto band ---------- */

.home-note__grid {
    display: grid;
    gap: 1.5rem 3.5rem;
    align-items: start;
}

@media (min-width: 992px) {
    .home-note__grid {
        grid-template-columns: 0.85fr 1.15fr;
    }
}

.home-note__title {
    font-family: var(--sk-font-heading);
    font-size: clamp(1.6rem, 3.2vw, 2.15rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--home-ink);
    margin: 0;
}

.home-note__body p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--home-ink-soft);
    margin: 0 0 1.1rem;
}

.home-note__body p:last-of-type {
    margin-bottom: 0;
}

.home-note__body strong {
    color: var(--home-ink);
    font-weight: 700;
}

/* ---------- Opt-in band ---------- */

.home-optin {
    padding: 4rem 0;
    background: var(--home-tint);
}

.home-optin__inner {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
}

.home-optin__form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.home-optin__field {
    flex: 1 1 18rem;
    max-width: 24rem;
}

.home-page .home-optin__input {
    height: 3.25rem;
    border-radius: var(--home-radius-sm);
    border: 1px solid #e2d7cd;
    background: #fff;
    font-size: 1rem;
    padding: 0 1rem;
}

.home-page .home-optin__input:focus {
    border-color: var(--sk-accent);
    box-shadow: 0 0 0 4px rgba(var(--sk-accent-rgb), 0.14);
}

/* ---------- Pillar cards ---------- */

.home-cards {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .home-cards--3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.home-card {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius);
    box-shadow: var(--home-shadow);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.home-card:hover {
    box-shadow: var(--home-shadow-lift);
    transform: translateY(-3px);
}

.home-card__index {
    font-family: var(--sk-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--sk-accent);
    margin: 0 0 0.9rem;
}

.home-card__title {
    font-family: var(--sk-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.015em;
    margin: 0 0 0.7rem;
}

.home-card__title a {
    color: var(--home-ink);
    text-decoration: none;
}

.home-card__title a:hover {
    color: var(--sk-accent);
}

.home-card__text {
    font-size: 0.9875rem;
    line-height: 1.7;
    color: var(--home-ink-soft);
    margin: 0 0 1.25rem;
}

.home-card__link {
    margin-top: auto;
    font-family: var(--sk-font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--sk-accent);
    text-decoration: none;
}

.home-card__link:hover {
    color: var(--sk-accent-hover);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ---------- Two paths comparison ---------- */

.home-paths {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .home-paths {
        grid-template-columns: 1fr 1fr;
    }
}

.home-path {
    padding: 1.75rem;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius);
    box-shadow: var(--home-shadow);
}

.home-path--good {
    background: linear-gradient(180deg, var(--home-tint) 0%, #fff 55%);
}

.home-path__title {
    font-family: var(--sk-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--home-ink);
    margin: 0 0 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--home-line);
}

.home-path__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-path__item {
    display: flex;
    gap: 0.85rem;
    padding: 0.7rem 0;
    font-size: 0.9875rem;
    line-height: 1.6;
    color: var(--home-ink-soft);
}

.home-path__mark {
    flex: 0 0 1.4rem;
    width: 1.4rem;
    height: 1.4rem;
    margin-top: 0.1rem;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
}

.home-path__mark--no {
    background: #f1f2f4;
    color: #8b9098;
}

.home-path__mark--yes {
    background: rgba(var(--sk-accent-rgb), 0.12);
    color: var(--sk-accent);
}

.home-paths__footer {
    text-align: center;
    margin-top: 2.5rem;
}

.home-note-line {
    font-size: 0.9375rem;
    color: var(--home-ink-muted);
    margin: 1rem 0 0;
}

/* ---------- Split feature ---------- */

.home-split {
    display: grid;
    gap: 2.5rem 3.5rem;
    align-items: center;
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .home-split {
        grid-template-columns: 1fr 1fr;
    }
}

.home-split__media {
    border-radius: var(--home-radius);
    overflow: hidden;
    border: 1px solid var(--home-line);
    box-shadow: var(--home-shadow);
    background: #fff;
}

.home-split__image {
    display: block;
    width: 100%;
    height: auto;
}

.home-split__text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--home-ink-soft);
    margin: 0 0 1.5rem;
}

.home-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
}

.home-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 0;
    font-family: var(--sk-font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--home-ink);
}

.home-chip::before {
    content: "\2713";
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--sk-accent);
}

/* ---------- Post cards ---------- */

.home-posts__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.home-posts__head .home-head {
    margin-bottom: 0;
}

.home-post {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius);
    box-shadow: var(--home-shadow);
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.home-post:hover {
    box-shadow: var(--home-shadow-lift);
    transform: translateY(-3px);
}

.home-post__media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--home-surface);
}

.home-post__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-post__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 1.5rem;
}

.home-post__kicker {
    font-family: var(--sk-font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sk-accent);
    margin: 0 0 0.6rem;
}

.home-post__title {
    font-family: var(--sk-font-heading);
    font-size: 1.075rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.015em;
    margin: 0 0 0.7rem;
}

.home-post__title a {
    color: var(--home-ink);
    text-decoration: none;
}

.home-post__title a:hover {
    color: var(--sk-accent);
}

.home-post__excerpt {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--home-ink-soft);
    margin: 0 0 1rem;
}

.home-post__byline {
    margin: auto 0 0;
    font-size: 0.8125rem;
    color: var(--home-ink-muted);
}

.home-post__byline a {
    color: var(--home-ink-soft);
}

/* ---------- Dark closing CTA ---------- */

.home-cta__grid {
    display: grid;
    gap: 2.5rem 3.5rem;
    align-items: center;
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .home-cta__grid {
        grid-template-columns: 1.15fr 0.85fr;
    }
}

.home-cta__eyebrow {
    font-family: var(--sk-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #ffb27a;
    margin: 0 0 0.9rem;
}

.home-cta__title {
    font-family: var(--sk-font-heading);
    font-size: clamp(1.7rem, 3.6vw, 2.5rem);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 1rem;
}

.home-cta__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    max-width: 34rem;
    margin: 0 0 1.75rem;
}

.home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.home-page .home-cta__ghost {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: transparent;
}

.home-page .home-cta__ghost:hover {
    background: #fff;
    border-color: #fff;
    color: var(--home-ink);
}

.home-cta__note {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.home-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.home-tile {
    padding: 1.35rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--home-radius);
    text-align: center;
}

.home-tile__number {
    font-family: var(--sk-font-heading);
    font-size: clamp(1.35rem, 2.6vw, 1.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffab6b;
    margin: 0 0 0.35rem;
}

.home-tile__label {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.66);
    margin: 0;
}

/* ---------- Related links ---------- */

.home-related {
    padding: 2.5rem 0;
    background: #fff;
    border-top: 1px solid var(--home-line);
}

.home-related__label {
    font-family: var(--sk-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--home-ink-muted);
    margin: 0 0 0.85rem;
}

.home-related__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-related__link {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border: 1px solid var(--home-line);
    border-radius: 0;
    font-size: 0.9375rem;
    color: var(--home-ink-soft);
    text-decoration: none;
}

.home-related__link:hover {
    border-color: var(--sk-accent);
    color: var(--sk-accent);
}

/* ---------- Modal ---------- */

.home-modal {
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius);
}

.home-modal .modal-header {
    align-items: flex-start;
}

.home-modal__title {
    font-family: var(--sk-font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--home-ink);
    padding-right: 1rem;
}

.home-modal__body {
    max-height: min(70vh, 34rem);
}

.home-modal__body p {
    font-size: 1.0417rem;
    line-height: 1.75;
    color: var(--home-ink-soft);
    margin-bottom: 1.1rem;
}

.home-steps {
    list-style: none;
    counter-reset: home-steps;
    padding: 0;
    margin: 0 0 1.5rem;
}

.home-steps li {
    counter-increment: home-steps;
    position: relative;
    padding: 0 0 0 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.0417rem;
    line-height: 1.7;
    color: var(--home-ink-soft);
}

.home-steps li::before {
    content: counter(home-steps);
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 1.65rem;
    height: 1.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: rgba(var(--sk-accent-rgb), 0.12);
    color: var(--sk-accent);
    font-family: var(--sk-font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
}

/* ---------- Mobile rhythm ---------- */

@media (max-width: 767.98px) {
    .home-section {
        padding: 3rem 0;
    }

    .home-hero {
        padding: calc(var(--sk-main-offset) + 0.5rem) 0 3rem;
    }

    .home-head {
        margin-bottom: 2rem;
    }

    .home-optin {
        padding: 3rem 0;
    }

    .home-hero__actions .btn,
    .home-cta__actions .btn {
        width: 100%;
    }

    .home-tiles {
        gap: 0.75rem;
    }
}

/* ============================================================
   Service pages

   These blades already use cm-section-head, cm-feature-card,
   stats-card, step-card and Bootstrap spacing utilities. The
   theme restyles those components while they sit inside
   .home-page rather than rewriting all of their markup.
   ============================================================ */

/* Band rhythm, driven by the utilities the blades already carry */
.home-page section.py-5 {
    padding: 4.5rem 0 !important;
    background: #fff;
}

.home-page section.py-5.bg-light {
    background: var(--home-surface) !important;
}

.home-page section.py-5.sk-cta--band {
    background: var(--home-tint) !important;
}

/* Section headers */
.home-page .cm-section-head {
    max-width: 44rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.home-page .cm-section-head__eyebrow {
    font-family: var(--sk-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--sk-accent);
    margin: 0 0 0.85rem;
}

.home-page .cm-section-head__title {
    font-family: var(--sk-font-heading);
    font-size: clamp(1.65rem, 3.4vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--home-ink);
    margin: 0 0 1rem;
}

.home-page .cm-section-head__lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--home-ink-soft);
    margin: 0;
}

/* Feature and problem cards */
.home-page .cm-feature-card {
    height: 100%;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 0;
    box-shadow: var(--home-shadow);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.home-page .cm-feature-card:hover {
    box-shadow: var(--home-shadow-lift);
    transform: translateY(-3px);
}

.home-page .cm-feature-card__title {
    font-family: var(--sk-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: var(--home-ink);
    margin: 0 0 0.7rem;
    text-decoration: none;
}

.home-page a:hover .cm-feature-card__title {
    color: var(--sk-accent);
}

.home-page .cm-feature-card__text {
    font-size: 0.9875rem;
    line-height: 1.7;
    color: var(--home-ink-soft);
    margin: 0;
}

/* Child-service link cards hold a single centred line */
.home-page a .cm-feature-card.d-flex {
    min-height: 5rem;
    justify-content: center;
    text-align: center;
}

/* Stat tiles */
.home-page .stats-card {
    height: 100%;
    padding: 1.5rem 1.25rem;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 0;
    box-shadow: var(--home-shadow);
    text-align: center;
}

.home-page .stats-card .stats-number,
.home-page .stats-card .cm-stats__number {
    font-family: var(--sk-font-heading);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--sk-accent);
    margin-bottom: 0.5rem;
}

.home-page .stats-card .h6 {
    font-family: var(--sk-font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--home-ink);
}

.home-page .stats-card .small,
.home-page .stats-card p.text-secondary {
    font-size: 0.85rem;
    color: var(--home-ink-muted) !important;
}

/* Process steps */
.home-page .step-card {
    height: 100%;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 0;
    box-shadow: var(--home-shadow);
}

.home-page .step-card .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: 1.1rem;
    background: rgba(var(--sk-accent-rgb), 0.12);
    color: var(--sk-accent);
    font-family: var(--sk-font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 0;
}

.home-page .step-card h3 {
    font-family: var(--sk-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--home-ink);
}

.home-page .step-card p {
    font-size: 0.9875rem;
    line-height: 1.7;
    color: var(--home-ink-soft) !important;
}

/* Panels used for inline calls to action and benefit groups */
.home-page .card {
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 0;
    box-shadow: var(--home-shadow);
}

.home-page .card h3 {
    font-family: var(--sk-font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--home-ink);
}

.home-page .card p {
    color: var(--home-ink-soft) !important;
}

.home-page .service-icon i {
    color: var(--sk-accent) !important;
}

/* Risk rows */
.home-page .fa-arrow-down.text-danger {
    color: var(--sk-accent) !important;
}

.home-page h4.h6 {
    font-family: var(--sk-font-heading);
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--home-ink);
}

/* FAQ accordion */
.home-page .accordion-item {
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 0;
    margin-bottom: 0.75rem;
}

.home-page .accordion-button {
    font-family: var(--sk-font-heading);
    font-size: 1.0417rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--home-ink);
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    padding: 1.1rem 1.25rem;
}

.home-page .accordion-button:not(.collapsed) {
    background: var(--home-tint);
    color: var(--home-ink);
}

.home-page .accordion-button:focus {
    box-shadow: none;
    border-color: var(--home-line);
}

.home-page .accordion-body {
    font-size: 0.9875rem;
    line-height: 1.75;
    color: var(--home-ink-soft);
    padding: 0 1.25rem 1.25rem;
}

/* Editor content coming from the CMS description field */
.home-page .home-rich {
    max-width: 48rem;
    margin: 0 auto;
}

.home-page .home-rich h2 {
    font-family: var(--sk-font-heading);
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--home-ink);
    margin: 2.5rem 0 1rem;
}

.home-page .home-rich h3 {
    font-family: var(--sk-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--home-ink);
    margin: 2rem 0 0.75rem;
}

.home-page .home-rich p,
.home-page .home-rich li {
    font-size: 1.0417rem;
    line-height: 1.8;
    color: var(--home-ink-soft);
}

.home-page .home-rich p {
    margin-bottom: 1.15rem;
}

.home-page .home-rich img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

.home-page .home-rich table {
    width: 100%;
    margin-bottom: 1.5rem;
    border-collapse: collapse;
}

.home-page .home-rich th,
.home-page .home-rich td {
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--home-line);
    font-size: 0.9875rem;
    line-height: 1.6;
    color: var(--home-ink-soft);
}

.home-page .home-rich th {
    background: var(--home-surface);
    font-family: var(--sk-font-heading);
    font-weight: 700;
    color: var(--home-ink);
}

/* CMS-driven service pages keep their two-column reading layout, but
   inherit the square corners and hairline borders of the theme. */
.home-page .cm-layout {
    padding: 4.5rem 0;
}

.home-page .cm-aside-block,
.home-page .cm-toc,
.home-page .cm-rich__table,
.home-page .cm-rich img,
.home-page .cm-card,
.home-page .cm-cta {
    border-radius: 0;
}

.home-page .cm-crumbs {
    margin-bottom: 1.25rem;
}

.home-hero--center .cm-crumbs__list {
    justify-content: center;
}

/* Service hero trust row */
.home-page .home-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.home-page .home-hero__trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.85rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(22, 24, 29, 0.08);
    font-family: var(--sk-font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--home-ink);
}

.home-page .home-hero__trust i {
    color: var(--sk-accent);
}

@media (max-width: 767.98px) {
    .home-page section.py-5 {
        padding: 3rem 0 !important;
    }

    .home-page .cm-section-head {
        margin-bottom: 2rem;
    }
}
