﻿/* ==========================================================================
   SOLCAMB Core Styles (No Bootstrap)
   ========================================================================== */

:root {
    /* Brand Colours */
    --sc-primary: #1d63da;
    --sc-secondary: #2c4483;
    --sc-navy: #14215e;
    --sc-text: #0f1633;
    --sc-text-muted: #5e698d;
    --sc-surface: #f6f8fc;
    --sc-white: #ffffff;
    --sc-border: rgba(20, 33, 94, 0.12);
    /* Typography */
    --sc-font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    --sc-h1: clamp(2.4rem, 2rem + 1.8vw, 3.2rem);
    --sc-h2: clamp(1.8rem, 1.5rem + 1vw, 2.2rem);
    --sc-h3: 1.25rem;
    --sc-line: 1.6;
    /* Layout */
    --sc-container: 1200px;
    --sc-space-xs: 0.5rem;
    --sc-space-sm: 1rem;
    --sc-space-md: 2rem;
    --sc-space-lg: 4rem;
    --sc-radius: 12px;
}

/* Base */

body {
    margin: 0;
    font-family: var(--sc-font-sans);
    color: var(--sc-text);
    line-height: var(--sc-line);
    background: var(--sc-surface);
}

h1, h2, h3, h4 {
    margin-top: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--sc-h1);
}

h2 {
    font-size: var(--sc-h2);
}

h3 {
    font-size: var(--sc-h3);
}

p {
    margin-top: 0;
    margin-bottom: var(--sc-space-sm);
}

a {
    color: var(--sc-primary);
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* Buttons (base) */

.sc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    font-weight: 650;
    letter-spacing: 0.01em;
    text-decoration: none;
    user-select: none;
    border: 1px solid transparent;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

    .sc-btn:active {
        transform: translateY(1px);
    }

/* Layout Helpers */

.sc-container {
    max-width: var(--sc-container);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.sc-section {
    padding-block: var(--sc-space-lg);
}

.sc-section-tight {
    padding-block: var(--sc-space-md);
}

/* Grid */

.sc-grid {
    display: grid;
    gap: var(--sc-space-md);
}

.sc-grid-2 {
    grid-template-columns: 1fr;
}

.sc-grid-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .sc-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .sc-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sc-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   HERO (blend-style, no stage) — cleaned + consistent
   ========================================================================== */

.sc-hero {
    position: relative;
    overflow: hidden;
    color: var(--sc-white);
    padding-block: clamp(4rem, 3rem + 3vw, 6rem);
    /* Fallback */
    background: linear-gradient(135deg, #0f1f4d 0%, #14215e 35%, #2c4483 100%);
    /* Image + overlay for legibility */
    background-image: linear-gradient( 135deg, rgba(15, 31, 77, 0.86) 0%, rgba(20, 33, 94, 0.76) 38%, rgba(44, 68, 131, 0.60) 100% ), url("/images/backgrounds/hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    /* Right-side vignette + bottom grounding fade (no visible box) */
    .sc-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient( 90deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.00) 50%, rgba(15, 31, 77, 0.22) 72%, rgba(15, 31, 77, 0.46) 100% ), linear-gradient( 180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.00) 55%, rgba(0, 0, 0, 0.22) 100% );
    }

.sc-hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(320px, 1.15fr) minmax(260px, 0.85fr);
    grid-template-areas:
        "content image"
        "actions image";
    column-gap: clamp(1.75rem, 1rem + 2vw, 3rem);
    row-gap: 1.25rem;
    align-items: end;
}

.sc-hero-content {
    grid-area: content;
    max-width: 60ch;
}

.sc-hero-brand {
    margin: 0 0 1.75rem 0;
}

.sc-hero-logo {
    width: clamp(190px, 22vw, 290px);
    height: auto;
    display: block;
}

.sc-hero-tagline {
    margin: 0 0 1.1rem 0;
    font-size: clamp(2.0rem, 1.4rem + 1.6vw, 2.8rem);
    font-weight: 780;
    letter-spacing: -0.02em;
    line-height: 1.10;
    color: rgba(255, 255, 255, 0.98);
    text-wrap: balance;
}

.sc-hero-eyebrow {
    margin: 0 0 1.1rem 0;
    font-size: 1rem;
    font-weight: 560;
    color: rgba(255, 255, 255, 0.80);
    max-width: 60ch;
}

.sc-hero-body {
    margin: 0 0 1.4rem 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.86);
    max-width: 68ch;
}

.sc-hero-signal {
    margin: 0 0 1.9rem 0;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.92);
}

.sc-hero-footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 1.25rem;
}

.sc-hero-actions {
    grid-area: actions;
    margin-top: 0;
}

.sc-hero-image {
    grid-area: image;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-right: clamp(0rem, 1vw, 1rem);
}

.sc-hero-portrait {
    display: block;
    width: auto;
    max-height: 560px;
    filter: drop-shadow(0 22px 46px rgba(0, 0, 0, 0.32));
    transform: translateY(10px);
    /* Fade out edges to avoid crisp cut lines */
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%), linear-gradient(to right, #000 0%, #000 78%, transparent 100%);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%), linear-gradient(to right, #000 0%, #000 78%, transparent 100%);
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-composite: intersect;
}

/* Button tuned for hero */
.sc-btn-hero {
    background: rgba(29, 99, 218, 0.95);
    border-color: rgba(29, 99, 218, 0.80);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

    .sc-btn-hero:hover {
        background: rgba(29, 99, 218, 1);
        border-color: rgba(29, 99, 218, 0.95);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    }

    .sc-btn-hero:focus-visible {
        outline: 3px solid rgba(29, 99, 218, 0.35);
        outline-offset: 3px;
    }

/* Mobile */
@media (max-width: 900px) {
    .sc-hero {
        padding-block: 2.75rem;
    }

    .sc-hero-layout {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "content content"
            "actions image";
        column-gap: 1rem;
        row-gap: 1.25rem;
        align-items: end;
    }

    /* tighten text rhythm */
    .sc-hero-brand {
        margin-bottom: 1.25rem;
    }

    .sc-hero-tagline {
        margin-bottom: 0.9rem;
        font-size: 2.0rem;
    }

    .sc-hero-eyebrow {
        margin-bottom: 0.9rem;
    }

    .sc-hero-body {
        margin-bottom: 1.1rem;
    }

    .sc-hero-signal {
        margin-bottom: 0;
    }

    .sc-hero-actions {
        justify-self: start;
        align-self: end;
    }

    .sc-hero-image {
        justify-self: end;
        align-self: end;
        padding-right: 0;
    }

    .sc-hero-portrait {
        max-height: 220px;
        transform: translateY(6px);
    }

    .sc-btn-hero {
        padding: 0.85rem 1.05rem;
        border-radius: 999px;
        white-space: nowrap;
    }
}

.sc-muted {
    color: var(--sc-text-muted);
}

/* Simple divider tone */

.sc-surface {
    background: var(--sc-surface);
}

/* ==========================================================================
   NAV (SOLCAMB) — responsive topbar + mobile drawer
   ========================================================================== */

.sc-app {
    min-height: 100vh;
}

.sc-main {
    padding-top: 0; /* nav is not sticky by default */
}

.sc-skip-link {
    position: absolute;
    left: -999px;
    top: 0.75rem;
    background: var(--sc-white);
    border: 1px solid var(--sc-border);
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    z-index: 10000;
}

    .sc-skip-link:focus {
        left: 1rem;
    }

/* Top bar */
.sc-nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(246, 248, 252, 0.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--sc-border);
    isolation: isolate;
}

.sc-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.85rem;
    gap: 1rem;
}

.sc-nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.sc-nav__logo {
    height: 34px;
    width: auto;
    display: block;
}

.sc-nav__desktop {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

.sc-nav__link {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    color: var(--sc-text);
    font-weight: 650;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background-color 0.12s ease, border-color 0.12s ease, transform 0.12s ease;
}

    .sc-nav__link:hover {
        background: rgba(20, 33, 94, 0.06);
        text-decoration: none;
    }

    .sc-nav__link.active {
        background: rgba(29, 99, 218, 0.10);
        border-color: rgba(29, 99, 218, 0.22);
        color: var(--sc-navy);
    }

.sc-nav__meta {
    font-size: 0.85rem;
    color: var(--sc-text-muted);
    padding-inline: 0.4rem;
}

.sc-nav__divider {
    width: 1px;
    height: 22px;
    background: var(--sc-border);
    margin-inline: 0.4rem;
}

/* Desktop dropdown group */
.sc-nav__group {
    position: relative;
    padding-inline: 0.25rem;
}

    .sc-nav__group::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 12px; /* cover the gap */
    }

.sc-nav__group-label {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    color: var(--sc-text);
    font-weight: 650;
    cursor: default;
}

.sc-nav__group.is-active .sc-nav__group-label {
    background: rgba(29, 99, 218, 0.10);
    color: var(--sc-navy);
}

.sc-nav__group-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    min-width: 220px;
    padding: 0.6rem;
    background: var(--sc-white);
    border: 1px solid var(--sc-border);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(15, 22, 51, 0.12);
    overflow: hidden;
    display: none;
}

.sc-nav__group:hover .sc-nav__group-menu,
.sc-nav__group:focus-within .sc-nav__group-menu {
    display: block;
}

.sc-nav__link--menu {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Mobile toggle */
.sc-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--sc-border);
    background: var(--sc-white);
    z-index: 1000;
    position: relative;
}

    .sc-nav__toggle:hover {
        background: rgba(20, 33, 94, 0.04);
    }

.sc-nav__burger {
    width: 18px;
    height: 2px;
    background: var(--sc-text);
    position: relative;
    display: block;
    border-radius: 2px;
}

    .sc-nav__burger::before,
    .sc-nav__burger::after {
        content: "";
        position: absolute;
        left: 0;
        width: 18px;
        height: 2px;
        background: var(--sc-text);
        border-radius: 2px;
    }

    .sc-nav__burger::before {
        top: -6px;
    }

    .sc-nav__burger::after {
        top: 6px;
    }

/* Drawer */
.sc-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 22, 51, 0.30);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
    z-index: 998;
}

    .sc-drawer-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

.sc-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(360px, 88vw);
    background: var(--sc-white);
    border-left: 1px solid var(--sc-border);
    transform: translateX(105%);
    transition: transform 0.22s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

    .sc-drawer.is-open {
        transform: translateX(0);
    }

.sc-drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 0.75rem 1rem;
    border-bottom: 1px solid var(--sc-border);
}

.sc-drawer__title {
    font-weight: 780;
    letter-spacing: -0.01em;
}

.sc-drawer__close {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--sc-border);
    background: var(--sc-surface);
}

.sc-drawer__nav {
    padding: 0.75rem;
    overflow: auto;
}

.sc-drawer__section {
    margin: 0.85rem 0 0.35rem;
    padding: 0.35rem 0.5rem;
    font-size: 0.82rem;
    font-weight: 780;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sc-text-muted);
}

.sc-drawer__divider {
    height: 1px;
    background: var(--sc-border);
    margin: 0.75rem 0.25rem;
}

.sc-drawer__link {
    display: flex;
    align-items: center;
    padding: 0.75rem 0.75rem;
    border-radius: 12px;
    color: var(--sc-text);
    font-weight: 650;
    text-decoration: none;
    margin-bottom: 0.25rem;
}

    .sc-drawer__link:hover {
        background: rgba(20, 33, 94, 0.06);
        text-decoration: none;
    }

    .sc-drawer__link.active {
        background: rgba(29, 99, 218, 0.10);
        color: var(--sc-navy);
    }

.sc-drawer__group {
    margin-bottom: 0.25rem;
}

.sc-drawer__group-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0.75rem;
    border-radius: 12px;
    border: 1px solid transparent;
    background: transparent;
    font: inherit;
    font-weight: 650;
    color: var(--sc-text);
    text-align: left;
    margin-bottom: 0.25rem;
}

    .sc-drawer__group-btn:hover {
        background: rgba(20, 33, 94, 0.06);
    }

    .sc-drawer__group-btn.is-active {
        background: rgba(29, 99, 218, 0.10);
        color: var(--sc-navy);
    }

.sc-drawer__chev {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--sc-text-muted);
    border-bottom: 2px solid var(--sc-text-muted);
    transform: rotate(45deg);
}

.sc-drawer__group-items {
    display: none;
    padding-left: 0.5rem;
}

    .sc-drawer__group-items.is-open {
        display: block;
    }

.sc-drawer__link--nested {
    padding-left: 1rem;
}

/* Breakpoints: show desktop nav, hide hamburger/drawer */
@media (min-width: 960px) {
    .sc-nav__desktop {
        display: flex;
    }

    .sc-nav__toggle {
        display: none;
    }

    .sc-drawer, .sc-drawer-backdrop {
        display: none;
    }
}

/* ==========================================================================
   ABOUT / PROSE + TIMELINE
   ========================================================================== */

.sc-prose {
    font-size: 1rem;
    line-height: 1.65;
}

    .sc-prose p {
        margin: 0 0 0.9rem 0;
    }

.sc-split {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 960px) {
    .sc-split {
        grid-template-columns: 1.35fr 0.9fr;
        align-items: start;
    }
}

.sc-panel {
    background: var(--sc-white);
    border: 1px solid var(--sc-border);
    border-radius: 16px;
    padding: 1.15rem;
    box-shadow: 0 12px 26px rgba(15, 22, 51, 0.06);
}

.sc-panel__title {
    margin: 0 0 0.75rem 0;
    font-size: 1.05rem;
    font-weight: 780;
    letter-spacing: -0.01em;
}

.sc-divider {
    height: 1px;
    background: var(--sc-border);
    margin: 0.85rem 0;
}

/* Timeline */
.sc-timeline {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0 0;
    display: grid;
    gap: 0.75rem;
}

.sc-timeline__item {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 0.75rem;
    align-items: start;
}

.sc-timeline__when {
    font-weight: 780;
    color: var(--sc-navy);
    letter-spacing: -0.01em;
}

.sc-timeline__what {
    color: var(--sc-text);
}

    .sc-timeline__what .sc-muted {
        display: block;
        margin-top: 0.25rem;
    }

/* Highlights list (right column) */
.sc-highlights {
    margin: 0;
    padding-left: 1.15rem;
}

    .sc-highlights li {
        margin: 0.45rem 0;
    }


/* ==========================================================================
   HOME — refreshed style
   ========================================================================== */

.sc-home-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20, 37, 120, 0.96), rgba(43, 67, 173, 0.9)), url('/images/backgrounds/hero-bg.png') center/cover no-repeat;
    color: white;
}

.sc-home-hero__inner {
    display: grid;
    gap: 2rem;
    align-items: center;
    min-height: 560px;
    padding-top: 4rem;
    padding-bottom: 5rem;
}

.sc-home-hero__content {
    position: relative;
    z-index: 2;
    max-width: 42rem;
}

.sc-home-hero__title {
    margin: 0 0 1.25rem 0;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    font-weight: 800;
    color: white;
}

.sc-home-hero__lead {
    margin: 0 0 1.2rem 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    max-width: 34rem;
}

.sc-home-hero__body {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    max-width: 38rem;
}

.sc-home-hero__actions {
    margin-top: 2rem;
}

.sc-home-hero__btn {
    min-width: 170px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.95rem 1.4rem;
}

.sc-home-hero__image-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: end;
}

.sc-home-hero__image {
    max-width: min(100%, 500px);
    width: 100%;
    height: auto;
    display: block;
}

.sc-home-hero__curve {
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -140px;
    height: 240px;
    background: var(--sc-bg);
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    box-shadow: 0 -10px 0 rgba(95, 137, 255, 0.28), 0 -24px 0 rgba(255, 255, 255, 0.18);
    z-index: 1;
}

/* Sections */
.sc-home-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.sc-home-section--soft {
    background: linear-gradient(to bottom, rgba(20, 33, 94, 0.03), rgba(20, 33, 94, 0.01));
}

.sc-home-section__intro {
    max-width: 54rem;
    margin: 0 auto 2.5rem auto;
    text-align: center;
}

.sc-home-section__title {
    margin: 0 0 1rem 0;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--sc-navy);
}

.sc-home-section__summary {
    margin: 0 auto 1rem auto;
    max-width: 48rem;
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--sc-text-muted);
}

/* Card grid */
.sc-home-card-grid {
    display: grid;
    gap: 1rem;
}

.sc-home-card-grid--3 {
    grid-template-columns: 1fr;
}

.sc-home-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(20, 33, 94, 0.09);
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 10px 28px rgba(15, 22, 51, 0.06);
    backdrop-filter: blur(8px);
    transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}

    .sc-home-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 36px rgba(15, 22, 51, 0.09);
        border-color: rgba(29, 99, 218, 0.16);
    }

.sc-home-card__media {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.2rem;
    min-height: 100px;
}

    .sc-home-card__media img {
        max-width: 110px;
        width: 100%;
        height: auto;
        display: block;
    }

.sc-home-card__title {
    margin: 0 0 0.85rem 0;
    font-size: 1.8rem;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--sc-navy);
    text-align: center;
}

.sc-home-card__body {
    margin: 0 0 1rem 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--sc-text-muted);
    text-align: center;
}

.sc-home-card__list {
    margin: 0.4rem 0 0 0;
    padding-left: 1.35rem;
    color: #4d5ea8;
}

    .sc-home-card__list li {
        margin: 0.45rem 0;
        line-height: 1.6;
    }

.sc-home-card__link {
    display: inline-flex;
    align-items: center;
    margin-top: 0.5rem;
    font-weight: 700;
    color: var(--sc-blue);
    text-decoration: none;
}

    .sc-home-card__link:hover {
        text-decoration: underline;
    }

.sc-home-card--case {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Steps */
.sc-home-steps {
    display: grid;
    gap: 1rem;
}

.sc-home-step {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(20, 33, 94, 0.08);
    border-radius: 18px;
    padding: 1.35rem 1.25rem;
}

.sc-home-step__number {
    width: 2.2rem;
    height: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(29, 99, 218, 0.1);
    color: var(--sc-blue);
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.sc-home-step__title {
    margin: 0 0 0.55rem 0;
    font-size: 1.1rem;
    color: var(--sc-navy);
}

.sc-home-step__body {
    margin: 0;
    color: var(--sc-text-muted);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .sc-home-card-grid--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sc-home-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 980px) {
    .sc-home-hero__inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
        gap: 2rem;
    }

    .sc-home-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}