/* =========================================================
   STEER TR PARTIALS CSS
   Title + Content + CSS Only Tabs + Steps
========================================================= */

/* =========================
   GLOBAL TOKENS
========================= */

:root {
    --st-font: var(--font-main, 'Poppins', Arial, sans-serif);

    --st-brand: var(--brand, #0b85da);
    --st-brand-dark: var(--brand-dark, #0672bd);
    --st-brand-soft: var(--brand-soft, #eef8ff);
    --st-brand-soft-2: rgba(11, 133, 218, 0.075);
    --st-brand-border: rgba(11, 133, 218, 0.26);

    --st-title: var(--title, #031b5b);
    --st-text: var(--text, #243044);
    --st-muted: var(--muted, #647084);

    --st-white: #ffffff;
    --st-soft-bg: #f8fbff;
    --st-border: rgba(226, 229, 233, 0.94);
    --st-border-soft: rgba(226, 229, 233, 0.78);

    --st-container: var(--container, 1536px);
    --st-container-gap: 48px;
    --st-container-gap-mobile: 28px;

    --st-radius-xs: 10px;
    --st-radius-sm: 14px;
    --st-radius-md: 20px;
    --st-radius-lg: 30px;
    --st-radius-xl: 34px;
    --st-radius-pill: 999px;

    --st-shadow-xs: 0 10px 24px rgba(15, 23, 42, 0.045);
    --st-shadow-sm: 0 14px 36px rgba(15, 23, 42, 0.06);
    --st-shadow-md: 0 30px 84px rgba(15, 23, 42, 0.10);
    --st-shadow-brand: 0 16px 36px rgba(11, 133, 218, 0.20);

    --st-size-xs: 12px;
    --st-size-sm: 13px;
    --st-size-md: 15px;
    --st-size-button: 14px;
    --st-size-card-title: 16px;
    --st-size-lg: clamp(16px, 1.2vw, 18px);
    --st-size-h1: clamp(36px, 4.4vw, 66px);
    --st-size-h2: clamp(28px, 3vw, 46px);
    --st-size-h3: clamp(24px, 2vw, 30px);

    --st-line-tight: 1.08;
    --st-line-heading: 1.12;
    --st-line-card: 1.35;
    --st-line-text: 1.72;

    --st-letter-title: -0.055em;
    --st-letter-text: -0.02em;

    --st-section-space: 92px;
    --st-section-space-tablet: 72px;
    --st-section-space-mobile: 54px;

    --st-transition: 0.22s ease;
}

@media (max-width: 768px) {
    :root {
        --st-size-h1: clamp(32px, 10vw, 46px);
        --st-size-h2: 28px;
        --st-size-h3: 24px;
        --st-size-lg: 15.5px;
        --st-size-md: 14.5px;
    }
}

/* =========================
   GLOBAL PARTIAL RESET
========================= */

.st-title,
.st-title *,
.st-content,
.st-content *,
.st-tabs,
.st-tabs *,
.st-steps,
.st-steps * {
    box-sizing: border-box;
    font-family: var(--st-font);
}

.st-title a,
.st-content a,
.st-tabs a,
.st-steps a {
    text-decoration: none;
}

.st-title img,
.st-content img,
.st-tabs img,
.st-steps img {
    max-width: 100%;
}

/* =========================
   SHARED HELPERS
========================= */

.st-title__container,
.st-content__container,
.st-tabs__container,
.st-steps__container {
    position: relative;
    z-index: 2;
    width: calc(100% - var(--st-container-gap));
    max-width: var(--st-container);
    margin: 0 auto;
}

.st-title__eyebrow,
.st-content__eyebrow,
.st-tabs__eyebrow,
.st-steps__eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: var(--st-radius-pill);
    background: var(--st-brand-soft);
    color: var(--st-brand);
    font-size: var(--st-size-sm);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.st-title__eyebrow::before,
.st-content__eyebrow::before,
.st-tabs__eyebrow::before,
.st-steps__eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--st-brand);
    box-shadow: 0 0 0 5px rgba(11, 133, 218, 0.10);
}

.st-title__heading,
.st-content__title,
.st-tabs__title,
.st-steps__title {
    margin: 0;
    color: var(--st-title);
    font-weight: 800;
}

.st-title__heading span,
.st-content__title span,
.st-tabs__title span,
.st-steps__title span {
    display: block;
    color: var(--st-brand);
}

.st-title__description,
.st-content__lead,
.st-tabs__lead,
.st-tabs__panel-lead,
.st-steps__lead {
    color: var(--st-muted);
    font-size: var(--st-size-lg);
    line-height: var(--st-line-text);
    font-weight: 400;
    letter-spacing: var(--st-letter-text);
}

.st-title__description,
.st-content__lead,
.st-tabs__lead,
.st-steps__lead {
    max-width: 780px;
    margin: 22px 0 0;
}

/* =========================
   SHARED BUTTON
========================= */

.st-title__button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 22px;
    border-radius: var(--st-radius-pill);
    border: 1px solid transparent;
    font-size: var(--st-size-button);
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition:
        transform var(--st-transition),
        background-color var(--st-transition),
        color var(--st-transition),
        border-color var(--st-transition),
        box-shadow var(--st-transition);
}

.st-title__button:hover {
    transform: translateY(-2px);
}

.st-title__button svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
}

.st-title__button path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.st-title__button--primary {
    background: var(--st-brand);
    color: var(--st-white);
    box-shadow: var(--st-shadow-brand);
}

.st-title__button--primary:hover {
    background: var(--st-brand-dark);
}

.st-title__button--secondary {
    background: var(--st-white);
    color: var(--st-title);
    border-color: var(--st-border);
}

.st-title__button--secondary:hover {
    color: var(--st-brand);
    background: var(--st-brand-soft);
    border-color: var(--st-brand-border);
}

/* =========================
   TITLE SECTION
========================= */

.st-title {
    position: relative;
    width: 100%;
    padding: 64px 0 82px;
    background:
        radial-gradient(circle at 15% 15%, rgba(11, 133, 218, 0.10), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(3, 27, 91, 0.07), transparent 28%),
        linear-gradient(180deg, var(--st-white) 0%, var(--st-soft-bg) 100%);
    overflow: hidden;
}

.st-title::before {
    content: "";
    position: absolute;
    left: -180px;
    bottom: -220px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(11, 133, 218, 0.07);
    pointer-events: none;
}

.st-title::after {
    content: "";
    position: absolute;
    right: -220px;
    top: 90px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(3, 27, 91, 0.045);
    pointer-events: none;
}

.st-title__breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    color: var(--st-muted);
    font-size: var(--st-size-sm);
    line-height: 1.4;
    font-weight: 700;
}

.st-title__breadcrumb a {
    color: var(--st-muted);
    transition: color var(--st-transition);
}

.st-title__breadcrumb a:hover {
    color: var(--st-brand);
}

.st-title__breadcrumb strong {
    color: var(--st-title);
    font-weight: 800;
}

.st-title__breadcrumb span {
    color: rgba(100, 112, 132, 0.48);
}

.st-title__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
    gap: 56px;
    align-items: center;
}

.st-title__content,
.st-title__visual,
.st-content__text,
.st-content__visual {
    min-width: 0;
}

.st-title__heading {
    max-width: 850px;
    font-size: var(--st-size-h1);
    line-height: var(--st-line-tight);
    letter-spacing: -0.06em;
}

.st-title__description {
    max-width: 760px;
    margin-top: 24px;
}

.st-title__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.st-title__items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 760px;
    margin-top: 34px;
}

.st-title__item {
    min-width: 0;
    padding: 16px;
    border-radius: var(--st-radius-md);
    background: var(--st-white);
    border: 1px solid var(--st-border);
    box-shadow: var(--st-shadow-sm);
}

.st-title__item strong {
    display: block;
    color: var(--st-title);
    font-size: var(--st-size-card-title);
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.st-title__item span {
    display: block;
    margin-top: 6px;
    color: var(--st-muted);
    font-size: 12.5px;
    line-height: 1.5;
    font-weight: 600;
}

.st-title__visual {
    position: relative;
}

.st-title__screen {
    position: relative;
    padding: 14px;
    border-radius: var(--st-radius-xl);
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid var(--st-border);
    box-shadow: var(--st-shadow-md);
}

.st-title__screen::before {
    content: "";
    position: absolute;
    inset: 28px -14px -14px 28px;
    z-index: -1;
    border-radius: var(--st-radius-xl);
    background: rgba(11, 133, 218, 0.08);
}

.st-title__screen-top {
    height: 38px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    border-radius: 22px 22px 0 0;
    background: var(--st-white);
    border: 1px solid var(--st-border-soft);
    border-bottom: 0;
}

.st-title__screen-top span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(100, 112, 132, 0.30);
}

.st-title__screen-top span:first-child {
    background: rgba(11, 133, 218, 0.55);
}

.st-title__image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0 0 24px 24px;
    background: var(--st-brand-soft);
    overflow: hidden;
    border: 1px solid var(--st-border-soft);
}

.st-title__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.st-title__float {
    position: absolute;
    z-index: 5;
    width: 176px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--st-border);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.11);
}

.st-title__float strong {
    display: block;
    color: var(--st-title);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.st-title__float span {
    display: block;
    margin-top: 4px;
    color: var(--st-muted);
    font-size: var(--st-size-xs);
    line-height: 1.35;
    font-weight: 600;
}

.st-title__float--top {
    top: 36px;
    right: 8px;
}

.st-title__float--bottom {
    left: 8px;
    bottom: 36px;
}

/* =========================
   CONTENT SECTION
========================= */

.st-content {
    position: relative;
    width: 100%;
    padding: var(--st-section-space) 0;
    background: var(--st-white);
    overflow: hidden;
}

.st-content--soft {
    background:
        radial-gradient(circle at 12% 14%, var(--st-brand-soft-2), transparent 28%),
        linear-gradient(180deg, var(--st-soft-bg) 0%, var(--st-white) 100%);
}

.st-content__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
    gap: 58px;
    align-items: center;
}

.st-content--image-left .st-content__text {
    order: 2;
}

.st-content--image-left .st-content__visual {
    order: 1;
}

.st-content__title {
    max-width: 760px;
    font-size: var(--st-size-h2);
    line-height: var(--st-line-heading);
    letter-spacing: var(--st-letter-title);
}

.st-content__lead {
    max-width: 760px;
}

.st-content__paragraphs {
    display: grid;
    gap: 15px;
    max-width: 780px;
    margin-top: 24px;
}

.st-content__paragraphs p {
    margin: 0;
    color: var(--st-text);
    font-size: var(--st-size-md);
    line-height: var(--st-line-text);
    font-weight: 400;
}

.st-content__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 780px;
    margin-top: 28px;
}

.st-content__feature {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 13px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 22px;
    background: var(--st-white);
    border: 1px solid var(--st-border);
    box-shadow: var(--st-shadow-sm);
}

.st-content__feature > span {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: var(--st-brand-soft);
    position: relative;
}

.st-content__feature > span::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 8px;
    width: 9px;
    height: 15px;
    border: solid var(--st-brand);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.st-content__feature strong {
    display: block;
    color: var(--st-title);
    font-size: var(--st-size-card-title);
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.st-content__feature p {
    margin: 6px 0 0;
    color: var(--st-muted);
    font-size: var(--st-size-sm);
    line-height: 1.55;
    font-weight: 500;
}

.st-content__actions {
    margin-top: 30px;
}

.st-content__visual {
    position: relative;
}

.st-content__visual::before {
    content: "";
    position: absolute;
    inset: 34px -18px -18px 34px;
    z-index: 0;
    border-radius: var(--st-radius-xl);
    background: rgba(11, 133, 218, 0.08);
}

.st-content__image {
    position: relative;
    z-index: 1;
    padding: 14px;
    border-radius: var(--st-radius-xl);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--st-border);
    box-shadow: var(--st-shadow-md);
}

.st-content__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 24px;
}

/* =========================
   CSS ONLY TABS SECTION
========================= */

.st-tabs {
    position: relative;
    width: 100%;
    padding: var(--st-section-space) 0;
    background:
        radial-gradient(circle at 12% 12%, var(--st-brand-soft-2), transparent 28%),
        linear-gradient(180deg, var(--st-soft-bg) 0%, var(--st-white) 100%);
    overflow: hidden;
}

.st-tabs--white {
    background: var(--st-white);
}

.st-tabs__heading {
    max-width: 880px;
    margin-bottom: 42px;
}

.st-tabs__title {
    max-width: 880px;
    font-size: var(--st-size-h2);
    line-height: var(--st-line-heading);
    letter-spacing: var(--st-letter-title);
}

.st-tabs__lead {
    max-width: 780px;
}

.st-tabs__state {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.st-tabs__layout {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
}

.st-tabs__nav {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 10px;
    z-index: 3;
}

.st-tabs__tab-label {
    width: 100%;
    min-height: 76px;
    display: grid;
    gap: 5px;
    align-content: center;
    padding: 16px 18px;
    border: 1px solid var(--st-border);
    border-radius: var(--st-radius-md);
    background: rgba(255, 255, 255, 0.92);
    color: var(--st-title);
    text-align: left;
    cursor: pointer;
    box-shadow: var(--st-shadow-sm);
    user-select: none;
    transition:
        background-color var(--st-transition),
        border-color var(--st-transition),
        transform var(--st-transition),
        box-shadow var(--st-transition);
}

.st-tabs__tab-label:hover {
    background: var(--st-white);
    border-color: var(--st-brand-border);
    transform: translateY(-1px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.st-tabs__tab-label strong {
    display: block;
    color: var(--st-title);
    font-size: var(--st-size-md);
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.st-tabs__tab-label span {
    display: block;
    color: var(--st-muted);
    font-size: 12.5px;
    line-height: 1.45;
    font-weight: 600;
}

.st-tabs__panels {
    min-width: 0;
}

.st-tabs__panel {
    display: none;
    min-width: 0;
}

.st-tabs__panel-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.68fr);
    gap: 32px;
    align-items: stretch;
    padding: 28px;
    border-radius: 32px;
    background: var(--st-white);
    border: 1px solid var(--st-border);
    box-shadow: var(--st-shadow-md);
}

.st-tabs__panel-content {
    min-width: 0;
    align-self: center;
}

.st-tabs__panel-content h3 {
    max-width: 720px;
    margin: 0;
    color: var(--st-title);
    font-size: var(--st-size-h3);
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.st-tabs__panel-lead {
    max-width: 740px;
    margin: 18px 0 0;
}

.st-tabs__paragraphs {
    display: grid;
    gap: 14px;
    max-width: 760px;
    margin-top: 22px;
}

.st-tabs__paragraphs p {
    margin: 0;
    color: var(--st-text);
    font-size: var(--st-size-md);
    line-height: var(--st-line-text);
}

.st-tabs__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.st-tabs__feature {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 54px;
    padding: 12px;
    border-radius: 16px;
    background: var(--st-brand-soft);
}

.st-tabs__feature > span {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: var(--st-white);
    position: relative;
}

.st-tabs__feature > span::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 7px;
    width: 7px;
    height: 12px;
    border: solid var(--st-brand);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.st-tabs__feature strong {
    color: var(--st-title);
    font-size: var(--st-size-sm);
    line-height: var(--st-line-card);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.st-tabs__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.st-tabs__links a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border-radius: var(--st-radius-pill);
    background: var(--st-white);
    border: 1px solid var(--st-border);
    color: var(--st-title);
    font-size: var(--st-size-sm);
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    transition:
        background-color var(--st-transition),
        color var(--st-transition),
        border-color var(--st-transition);
}

.st-tabs__links a:hover {
    background: var(--st-brand);
    border-color: var(--st-brand);
    color: var(--st-white);
}

.st-tabs__panel-side {
    min-width: 0;
    display: grid;
    gap: 14px;
    align-content: start;
}

.st-tabs__image {
    padding: 12px;
    border-radius: 26px;
    background: var(--st-brand-soft);
    border: 1px solid var(--st-border-soft);
}

.st-tabs__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-radius: var(--st-radius-md);
}

.st-tabs__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.st-tabs__stats div {
    min-width: 0;
    padding: 15px;
    border-radius: 18px;
    background: var(--st-white);
    border: 1px solid var(--st-border);
}

.st-tabs__stats strong {
    display: block;
    color: var(--st-title);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.st-tabs__stats span {
    display: block;
    margin-top: 5px;
    color: var(--st-muted);
    font-size: var(--st-size-xs);
    line-height: 1.4;
    font-weight: 600;
}

/* CSS only tab active states - max 10 tabs */

.st-tabs__state:nth-of-type(1):checked ~ .st-tabs__layout .st-tabs__nav .st-tabs__tab-label:nth-child(1),
.st-tabs__state:nth-of-type(2):checked ~ .st-tabs__layout .st-tabs__nav .st-tabs__tab-label:nth-child(2),
.st-tabs__state:nth-of-type(3):checked ~ .st-tabs__layout .st-tabs__nav .st-tabs__tab-label:nth-child(3),
.st-tabs__state:nth-of-type(4):checked ~ .st-tabs__layout .st-tabs__nav .st-tabs__tab-label:nth-child(4),
.st-tabs__state:nth-of-type(5):checked ~ .st-tabs__layout .st-tabs__nav .st-tabs__tab-label:nth-child(5),
.st-tabs__state:nth-of-type(6):checked ~ .st-tabs__layout .st-tabs__nav .st-tabs__tab-label:nth-child(6),
.st-tabs__state:nth-of-type(7):checked ~ .st-tabs__layout .st-tabs__nav .st-tabs__tab-label:nth-child(7),
.st-tabs__state:nth-of-type(8):checked ~ .st-tabs__layout .st-tabs__nav .st-tabs__tab-label:nth-child(8),
.st-tabs__state:nth-of-type(9):checked ~ .st-tabs__layout .st-tabs__nav .st-tabs__tab-label:nth-child(9),
.st-tabs__state:nth-of-type(10):checked ~ .st-tabs__layout .st-tabs__nav .st-tabs__tab-label:nth-child(10) {
    background: var(--st-brand-soft);
    border-color: rgba(11, 133, 218, 0.30);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.st-tabs__state:nth-of-type(1):checked ~ .st-tabs__layout .st-tabs__panels .st-tabs__panel:nth-child(1),
.st-tabs__state:nth-of-type(2):checked ~ .st-tabs__layout .st-tabs__panels .st-tabs__panel:nth-child(2),
.st-tabs__state:nth-of-type(3):checked ~ .st-tabs__layout .st-tabs__panels .st-tabs__panel:nth-child(3),
.st-tabs__state:nth-of-type(4):checked ~ .st-tabs__layout .st-tabs__panels .st-tabs__panel:nth-child(4),
.st-tabs__state:nth-of-type(5):checked ~ .st-tabs__layout .st-tabs__panels .st-tabs__panel:nth-child(5),
.st-tabs__state:nth-of-type(6):checked ~ .st-tabs__layout .st-tabs__panels .st-tabs__panel:nth-child(6),
.st-tabs__state:nth-of-type(7):checked ~ .st-tabs__layout .st-tabs__panels .st-tabs__panel:nth-child(7),
.st-tabs__state:nth-of-type(8):checked ~ .st-tabs__layout .st-tabs__panels .st-tabs__panel:nth-child(8),
.st-tabs__state:nth-of-type(9):checked ~ .st-tabs__layout .st-tabs__panels .st-tabs__panel:nth-child(9),
.st-tabs__state:nth-of-type(10):checked ~ .st-tabs__layout .st-tabs__panels .st-tabs__panel:nth-child(10) {
    display: block !important;
}

/* =========================
   STEPS SECTION
========================= */

.st-steps {
    position: relative;
    width: 100%;
    padding: var(--st-section-space) 0;
    background: var(--st-white);
    overflow: hidden;
}

.st-steps--soft {
    background:
        radial-gradient(circle at 12% 12%, var(--st-brand-soft-2), transparent 28%),
        linear-gradient(180deg, var(--st-soft-bg) 0%, var(--st-white) 100%);
}

.st-steps__heading {
    max-width: 900px;
    margin-bottom: 42px;
}

.st-steps__title {
    max-width: 900px;
    font-size: var(--st-size-h2);
    line-height: var(--st-line-heading);
    letter-spacing: var(--st-letter-title);
}

.st-steps__lead {
    max-width: 820px;
}

.st-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.st-steps__card {
    position: relative;
    min-width: 0;
    min-height: 100%;
    padding: 22px;
    border-radius: 26px;
    background: var(--st-white);
    border: 1px solid var(--st-border);
    box-shadow: var(--st-shadow-sm);
    overflow: hidden;
}

.st-steps__card::before {
    content: "";
    position: absolute;
    right: -44px;
    top: -44px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(11, 133, 218, 0.075);
    pointer-events: none;
}

.st-steps__number {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: var(--st-brand-soft);
    color: var(--st-brand);
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.st-steps__card h3 {
    margin: 0;
    color: var(--st-title);
    font-size: 18px;
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.st-steps__card p {
    margin: 14px 0 0;
    color: var(--st-muted);
    font-size: var(--st-size-sm);
    line-height: 1.65;
    font-weight: 500;
}

.st-steps__card ul {
    display: grid;
    gap: 9px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.st-steps__card li {
    position: relative;
    padding-left: 18px;
    color: var(--st-text);
    font-size: 12.8px;
    line-height: 1.5;
    font-weight: 700;
}

.st-steps__card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--st-brand);
}

.st-steps__summary {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
    gap: 28px;
    align-items: center;
    margin-top: 22px;
    padding: 28px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 15%, rgba(11, 133, 218, 0.08), transparent 30%),
        var(--st-brand-soft);
    border: 1px solid rgba(11, 133, 218, 0.16);
}

.st-steps__summary-content h3 {
    margin: 0;
    color: var(--st-title);
    font-size: 26px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.st-steps__summary-content p {
    max-width: 760px;
    margin: 14px 0 0;
    color: var(--st-muted);
    font-size: var(--st-size-md);
    line-height: var(--st-line-text);
    font-weight: 500;
}

.st-steps__summary-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.st-steps__summary-items div {
    min-width: 0;
    padding: 16px;
    border-radius: 18px;
    background: var(--st-white);
    border: 1px solid rgba(226, 229, 233, 0.82);
}

.st-steps__summary-items strong {
    display: block;
    color: var(--st-title);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.st-steps__summary-items span {
    display: block;
    margin-top: 6px;
    color: var(--st-muted);
    font-size: var(--st-size-xs);
    line-height: 1.45;
    font-weight: 600;
}

.st-steps__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.st-steps__links a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border-radius: var(--st-radius-pill);
    background: var(--st-white);
    border: 1px solid var(--st-border);
    color: var(--st-title);
    font-size: var(--st-size-sm);
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    transition:
        background-color var(--st-transition),
        border-color var(--st-transition),
        color var(--st-transition);
}

.st-steps__links a:hover {
    background: var(--st-brand);
    border-color: var(--st-brand);
    color: var(--st-white);
}

.st-steps__actions {
    margin-top: 28px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1180px) {
    .st-title {
        padding: 54px 0 68px;
    }

    .st-content,
    .st-tabs,
    .st-steps {
        padding: var(--st-section-space-tablet) 0;
    }

    .st-title__grid,
    .st-content__grid,
    .st-tabs__layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .st-title__heading,
    .st-title__description,
    .st-content__title,
    .st-content__lead,
    .st-content__paragraphs,
    .st-content__features,
    .st-tabs__title,
    .st-tabs__lead,
    .st-steps__title,
    .st-steps__lead {
        max-width: 920px;
    }

    .st-title__visual,
    .st-content__visual,
    .st-tabs__panel-side {
        max-width: 900px;
    }

    .st-content--image-left .st-content__text,
    .st-content--image-left .st-content__visual {
        order: initial;
    }

    .st-tabs__nav {
        position: relative;
        top: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .st-tabs__panel-grid {
        grid-template-columns: 1fr;
    }

    .st-tabs__panel-side {
        max-width: 760px;
    }

    .st-steps__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .st-steps__summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .st-title {
        padding: 38px 0 54px;
    }

    .st-content,
    .st-tabs,
    .st-steps {
        padding: var(--st-section-space-mobile) 0;
    }

    .st-title__container,
    .st-content__container,
    .st-tabs__container,
    .st-steps__container {
        width: calc(100% - var(--st-container-gap-mobile));
    }

    .st-title__breadcrumb {
        margin-bottom: 24px;
        font-size: var(--st-size-xs);
    }

    .st-title__eyebrow,
    .st-content__eyebrow,
    .st-tabs__eyebrow,
    .st-steps__eyebrow {
        margin-bottom: 15px;
        padding: 7px 12px;
        font-size: var(--st-size-xs);
    }

    .st-title__heading {
        letter-spacing: -0.052em;
    }

    .st-title__description,
    .st-content__lead,
    .st-tabs__lead,
    .st-steps__lead {
        margin-top: 18px;
    }

    .st-title__actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 26px;
    }

    .st-title__button {
        width: 100%;
        min-height: 50px;
    }

    .st-title__items {
        grid-template-columns: 1fr;
        margin-top: 26px;
    }

    .st-title__screen,
    .st-content__image {
        padding: 10px;
        border-radius: 24px;
    }

    .st-title__screen::before,
    .st-content__visual::before {
        display: none;
    }

    .st-title__screen-top {
        height: 34px;
        border-radius: 18px 18px 0 0;
    }

    .st-title__image {
        border-radius: 0 0 18px 18px;
        aspect-ratio: 4 / 3;
    }

    .st-title__float {
        position: static;
        width: 100%;
        margin-top: 10px;
        box-shadow: var(--st-shadow-sm);
    }

    .st-content__feature {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
        border-radius: 18px;
    }

    .st-content__feature > span {
        width: 30px;
        height: 30px;
        border-radius: 10px;
    }

    .st-content__image img {
        border-radius: 18px;
    }

    .st-tabs__heading,
    .st-steps__heading {
        margin-bottom: 30px;
    }

    .st-tabs__nav {
        grid-template-columns: 1fr;
    }

    .st-tabs__tab-label {
        min-height: auto;
        padding: 14px;
        border-radius: 16px;
    }

    .st-tabs__panel-grid {
        padding: 18px;
        border-radius: 24px;
        gap: 24px;
    }

    .st-tabs__panel-content h3 {
        font-size: 24px;
        letter-spacing: -0.04em;
    }

    .st-tabs__features,
    .st-tabs__stats {
        grid-template-columns: 1fr;
    }

    .st-tabs__image {
        padding: 10px;
        border-radius: 22px;
    }

    .st-tabs__image img {
        border-radius: 16px;
    }

    .st-steps__grid {
        grid-template-columns: 1fr;
    }

    .st-steps__card {
        padding: 18px;
        border-radius: 22px;
    }

    .st-steps__summary {
        padding: 18px;
        border-radius: 24px;
    }

    .st-steps__summary-content h3 {
        font-size: 22px;
    }

    .st-steps__summary-items {
        grid-template-columns: 1fr;
    }

    .st-steps__actions .st-title__button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .st-title__heading {
        font-size: clamp(30px, 10vw, 40px);
    }

    .st-title__description,
    .st-content__lead,
    .st-tabs__lead,
    .st-tabs__panel-lead,
    .st-steps__lead {
        font-size: 14.5px;
    }

    .st-title__item,
    .st-content__feature,
    .st-steps__card {
        padding: 14px;
    }
}

/* =========================
   TABLE SECTION
========================= */

.st-table,
.st-table * {
    box-sizing: border-box;
    font-family: var(--st-font);
}

.st-table {
    position: relative;
    width: 100%;
    padding: var(--st-section-space) 0;
    background:
        radial-gradient(circle at 12% 12%, var(--st-brand-soft-2), transparent 28%),
        linear-gradient(180deg, var(--st-soft-bg) 0%, var(--st-white) 100%);
    overflow: hidden;
}

.st-table--white {
    background: var(--st-white);
}

.st-table__container {
    position: relative;
    z-index: 2;
    width: calc(100% - var(--st-container-gap));
    max-width: var(--st-container);
    margin: 0 auto;
}

.st-table__heading {
    max-width: 920px;
    margin-bottom: 42px;
}

.st-table__eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: var(--st-radius-pill);
    background: var(--st-brand-soft);
    color: var(--st-brand);
    font-size: var(--st-size-sm);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.st-table__eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--st-brand);
    box-shadow: 0 0 0 5px rgba(11, 133, 218, 0.10);
}

.st-table__title {
    max-width: 920px;
    margin: 0;
    color: var(--st-title);
    font-size: var(--st-size-h2);
    line-height: var(--st-line-heading);
    font-weight: 800;
    letter-spacing: var(--st-letter-title);
}

.st-table__title span {
    display: block;
    color: var(--st-brand);
}

.st-table__lead {
    max-width: 820px;
    margin: 22px 0 0;
    color: var(--st-muted);
    font-size: var(--st-size-lg);
    line-height: var(--st-line-text);
    font-weight: 400;
    letter-spacing: var(--st-letter-text);
}

.st-table__wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 30px;
    background: var(--st-white);
    border: 1px solid var(--st-border);
    box-shadow: var(--st-shadow-md);
}

.st-table__table {
    width: 100%;
    min-width: 980px;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--st-white);
}

.st-table__table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.st-table__table thead th {
    padding: 20px 22px;
    background: var(--st-brand-soft);
    color: var(--st-title);
    font-size: var(--st-size-sm);
    line-height: 1.35;
    font-weight: 900;
    text-align: left;
    letter-spacing: -0.02em;
    border-bottom: 1px solid rgba(11, 133, 218, 0.16);
}

.st-table__table thead th:first-child {
    border-top-left-radius: 30px;
}

.st-table__table thead th:last-child {
    border-top-right-radius: 30px;
}

.st-table__table tbody th,
.st-table__table tbody td {
    padding: 20px 22px;
    vertical-align: top;
    border-bottom: 1px solid var(--st-border-soft);
}

.st-table__table tbody tr:last-child th,
.st-table__table tbody tr:last-child td {
    border-bottom: 0;
}

.st-table__table tbody th {
    width: 23%;
    color: var(--st-title);
    font-size: var(--st-size-md);
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.st-table__table tbody td {
    color: var(--st-muted);
    font-size: var(--st-size-sm);
    line-height: 1.65;
    font-weight: 500;
}

.st-table__row--featured th,
.st-table__row--featured td {
    background: rgba(11, 133, 218, 0.035);
}

.st-table__summary {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
    gap: 28px;
    align-items: center;
    margin-top: 22px;
    padding: 28px;
    border-radius: 30px;
    background: var(--st-white);
    border: 1px solid var(--st-border);
    box-shadow: var(--st-shadow-sm);
}

.st-table__summary-text h3 {
    margin: 0;
    color: var(--st-title);
    font-size: 26px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.st-table__summary-text p {
    max-width: 780px;
    margin: 14px 0 0;
    color: var(--st-muted);
    font-size: var(--st-size-md);
    line-height: var(--st-line-text);
    font-weight: 500;
}

.st-table__summary-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.st-table__summary-items div {
    min-width: 0;
    padding: 16px;
    border-radius: 18px;
    background: var(--st-brand-soft);
    border: 1px solid rgba(11, 133, 218, 0.12);
}

.st-table__summary-items strong {
    display: block;
    color: var(--st-title);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.st-table__summary-items span {
    display: block;
    margin-top: 6px;
    color: var(--st-muted);
    font-size: var(--st-size-xs);
    line-height: 1.45;
    font-weight: 600;
}

.st-table__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.st-table__links a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border-radius: var(--st-radius-pill);
    background: var(--st-white);
    border: 1px solid var(--st-border);
    color: var(--st-title);
    font-size: var(--st-size-sm);
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    transition:
        background-color var(--st-transition),
        border-color var(--st-transition),
        color var(--st-transition);
}

.st-table__links a:hover {
    background: var(--st-brand);
    border-color: var(--st-brand);
    color: var(--st-white);
}

.st-table__actions {
    margin-top: 28px;
}

@media (max-width: 1180px) {
    .st-table {
        padding: var(--st-section-space-tablet) 0;
    }

    .st-table__summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .st-table {
        padding: var(--st-section-space-mobile) 0;
    }

    .st-table__container {
        width: calc(100% - var(--st-container-gap-mobile));
    }

    .st-table__heading {
        margin-bottom: 30px;
    }

    .st-table__eyebrow {
        margin-bottom: 15px;
        padding: 7px 12px;
        font-size: var(--st-size-xs);
    }

    .st-table__lead {
        margin-top: 18px;
    }

    .st-table__wrapper {
        overflow: visible;
        border-radius: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .st-table__table {
        min-width: 0;
        display: block;
        background: transparent;
    }

    .st-table__table thead {
        display: none;
    }

    .st-table__table tbody {
        display: grid;
        gap: 14px;
    }

    .st-table__table tr,
    .st-table__table tbody th,
    .st-table__table tbody td {
        display: block;
        width: 100%;
    }

    .st-table__table tr {
        padding: 16px;
        border-radius: 22px;
        background: var(--st-white);
        border: 1px solid var(--st-border);
        box-shadow: var(--st-shadow-sm);
    }

    .st-table__table tbody th,
    .st-table__table tbody td {
        padding: 0;
        border-bottom: 0;
    }

    .st-table__table tbody th {
        margin-bottom: 14px;
        color: var(--st-title);
        font-size: 17px;
        line-height: 1.3;
        font-weight: 900;
    }

    .st-table__table tbody th::before,
    .st-table__table tbody td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 5px;
        color: var(--st-brand);
        font-size: 11px;
        line-height: 1.2;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .st-table__table tbody td {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid var(--st-border-soft);
        color: var(--st-muted);
        font-size: 13px;
        line-height: 1.6;
        font-weight: 500;
    }

    .st-table__summary {
        padding: 18px;
        border-radius: 24px;
    }

    .st-table__summary-text h3 {
        font-size: 22px;
    }

    .st-table__summary-items {
        grid-template-columns: 1fr;
    }

    .st-table__actions .st-title__button {
        width: 100%;
    }
}

/* =========================
   AUDIENCE SECTION
========================= */

.st-audience,
.st-audience * {
    box-sizing: border-box;
    font-family: var(--st-font);
}

.st-audience {
    position: relative;
    width: 100%;
    padding: var(--st-section-space) 0;
    background: var(--st-white);
    overflow: hidden;
}

.st-audience--soft {
    background:
        radial-gradient(circle at 12% 12%, var(--st-brand-soft-2), transparent 28%),
        linear-gradient(180deg, var(--st-soft-bg) 0%, var(--st-white) 100%);
}

.st-audience__container {
    position: relative;
    z-index: 2;
    width: calc(100% - var(--st-container-gap));
    max-width: var(--st-container);
    margin: 0 auto;
}

.st-audience__heading {
    max-width: 920px;
    margin-bottom: 42px;
}

.st-audience__eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: var(--st-radius-pill);
    background: var(--st-brand-soft);
    color: var(--st-brand);
    font-size: var(--st-size-sm);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.st-audience__eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--st-brand);
    box-shadow: 0 0 0 5px rgba(11, 133, 218, 0.10);
}

.st-audience__title {
    max-width: 920px;
    margin: 0;
    color: var(--st-title);
    font-size: var(--st-size-h2);
    line-height: var(--st-line-heading);
    font-weight: 800;
    letter-spacing: var(--st-letter-title);
}

.st-audience__title span {
    display: block;
    color: var(--st-brand);
}

.st-audience__lead {
    max-width: 840px;
    margin: 22px 0 0;
    color: var(--st-muted);
    font-size: var(--st-size-lg);
    line-height: var(--st-line-text);
    font-weight: 400;
    letter-spacing: var(--st-letter-text);
}

.st-audience__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.st-audience__card {
    position: relative;
    min-width: 0;
    min-height: 100%;
    padding: 22px;
    border-radius: 26px;
    background: var(--st-white);
    border: 1px solid var(--st-border);
    box-shadow: var(--st-shadow-sm);
    overflow: hidden;
    transition:
        transform var(--st-transition),
        border-color var(--st-transition),
        box-shadow var(--st-transition);
}

.st-audience__card:hover {
    transform: translateY(-3px);
    border-color: var(--st-brand-border);
    box-shadow: var(--st-shadow-md);
}

.st-audience__card::before {
    content: "";
    position: absolute;
    right: -52px;
    top: -52px;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: rgba(11, 133, 218, 0.07);
    pointer-events: none;
}

.st-audience__card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--st-title);
    font-size: 19px;
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.st-audience__card p {
    position: relative;
    z-index: 1;
    margin: 14px 0 0;
    color: var(--st-muted);
    font-size: var(--st-size-sm);
    line-height: 1.65;
    font-weight: 500;
}

.st-audience__tags {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 16px;
}

.st-audience__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: var(--st-radius-pill);
    background: var(--st-brand-soft);
    color: var(--st-brand);
    font-size: 11.5px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.st-audience__link {
    position: relative;
    z-index: 1;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    color: var(--st-title);
    font-size: var(--st-size-sm);
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
    transition: color var(--st-transition);
}

.st-audience__link::after {
    content: "→";
    color: currentColor;
    font-size: 15px;
    line-height: 1;
    transform: translateY(-1px);
}

.st-audience__link:hover {
    color: var(--st-brand);
}

.st-audience__summary {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
    gap: 28px;
    align-items: center;
    margin-top: 22px;
    padding: 28px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 15%, rgba(11, 133, 218, 0.08), transparent 30%),
        var(--st-brand-soft);
    border: 1px solid rgba(11, 133, 218, 0.16);
}

.st-audience__summary-text h3 {
    margin: 0;
    color: var(--st-title);
    font-size: 26px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.st-audience__summary-text p {
    max-width: 780px;
    margin: 14px 0 0;
    color: var(--st-muted);
    font-size: var(--st-size-md);
    line-height: var(--st-line-text);
    font-weight: 500;
}

.st-audience__summary-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.st-audience__summary-items div {
    min-width: 0;
    padding: 16px;
    border-radius: 18px;
    background: var(--st-white);
    border: 1px solid rgba(226, 229, 233, 0.82);
}

.st-audience__summary-items strong {
    display: block;
    color: var(--st-title);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.st-audience__summary-items span {
    display: block;
    margin-top: 6px;
    color: var(--st-muted);
    font-size: var(--st-size-xs);
    line-height: 1.45;
    font-weight: 600;
}

.st-audience__actions {
    margin-top: 28px;
}

@media (max-width: 1180px) {
    .st-audience {
        padding: var(--st-section-space-tablet) 0;
    }

    .st-audience__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .st-audience__summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .st-audience {
        padding: var(--st-section-space-mobile) 0;
    }

    .st-audience__container {
        width: calc(100% - var(--st-container-gap-mobile));
    }

    .st-audience__heading {
        margin-bottom: 30px;
    }

    .st-audience__eyebrow {
        margin-bottom: 15px;
        padding: 7px 12px;
        font-size: var(--st-size-xs);
    }

    .st-audience__lead {
        margin-top: 18px;
    }

    .st-audience__grid {
        grid-template-columns: 1fr;
    }

    .st-audience__card {
        padding: 18px;
        border-radius: 22px;
    }

    .st-audience__card:hover {
        transform: none;
    }

    .st-audience__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
        border-radius: 14px;
    }

    .st-audience__card h3 {
        font-size: 18px;
    }

    .st-audience__summary {
        padding: 18px;
        border-radius: 24px;
    }

    .st-audience__summary-text h3 {
        font-size: 22px;
    }

    .st-audience__summary-items {
        grid-template-columns: 1fr;
    }

    .st-audience__actions .st-title__button {
        width: 100%;
    }
}

/* =========================
   STEPS SLIDER SECTION
========================= */

.st-steps-slider,
.st-steps-slider * {
    box-sizing: border-box;
    font-family: var(--st-font);
}

.st-steps-slider {
    position: relative;
    width: 100%;
    padding: var(--st-section-space) 0;
    background:
        radial-gradient(circle at 12% 12%, var(--st-brand-soft-2), transparent 28%),
        linear-gradient(180deg, var(--st-soft-bg) 0%, var(--st-white) 100%);
    overflow: hidden;
}

.st-steps-slider--white {
    background: var(--st-white);
}

.st-steps-slider__container {
    position: relative;
    z-index: 2;
    width: calc(100% - var(--st-container-gap));
    max-width: var(--st-container);
    margin: 0 auto;
}

.st-steps-slider__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 28px;
    align-items: end;
    margin-bottom: 42px;
}

.st-steps-slider__eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: var(--st-radius-pill);
    background: var(--st-brand-soft);
    color: var(--st-brand);
    font-size: var(--st-size-sm);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.st-steps-slider__eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--st-brand);
    box-shadow: 0 0 0 5px rgba(11, 133, 218, 0.10);
}

.st-steps-slider__title {
    max-width: 920px;
    margin: 0;
    color: var(--st-title);
    font-size: var(--st-size-h2);
    line-height: var(--st-line-heading);
    font-weight: 800;
    letter-spacing: var(--st-letter-title);
}

.st-steps-slider__title span {
    display: block;
    color: var(--st-brand);
}

.st-steps-slider__lead {
    max-width: 850px;
    margin: 22px 0 0;
    color: var(--st-muted);
    font-size: var(--st-size-lg);
    line-height: var(--st-line-text);
    font-weight: 400;
    letter-spacing: var(--st-letter-text);
}

.st-steps-slider__count {
    width: 150px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
    border-radius: 26px;
    background: var(--st-white);
    border: 1px solid var(--st-border);
    box-shadow: var(--st-shadow-sm);
}

.st-steps-slider__count strong {
    display: block;
    color: var(--st-brand);
    font-size: 42px;
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.st-steps-slider__count span {
    display: block;
    margin-top: 8px;
    color: var(--st-muted);
    font-size: var(--st-size-xs);
    line-height: 1.35;
    font-weight: 800;
}

.st-steps-slider__viewport {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(11, 133, 218, 0.35) transparent;
}

.st-steps-slider__viewport::-webkit-scrollbar {
    height: 8px;
}

.st-steps-slider__viewport::-webkit-scrollbar-track {
    background: transparent;
}

.st-steps-slider__viewport::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(11, 133, 218, 0.28);
}

.st-steps-slider__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 28px) / 3);
    gap: 14px;
}

.st-steps-slider__card {
    min-width: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    padding: 22px;
    border-radius: 28px;
    background: var(--st-white);
    border: 1px solid var(--st-border);
    box-shadow: var(--st-shadow-sm);
    transition:
        transform var(--st-transition),
        border-color var(--st-transition),
        box-shadow var(--st-transition);
}

.st-steps-slider__card:hover {
    transform: translateY(-3px);
    border-color: var(--st-brand-border);
    box-shadow: var(--st-shadow-md);
}

.st-steps-slider__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}

.st-steps-slider__badge {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: var(--st-radius-pill);
    background: var(--st-brand-soft);
    color: var(--st-brand);
    font-size: var(--st-size-xs);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.st-steps-slider__number {
    color: rgba(11, 133, 218, 0.16);
    font-size: 42px;
    line-height: 0.8;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.st-steps-slider__card h3 {
    margin: 0;
    color: var(--st-title);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: -0.05em;
}

.st-steps-slider__card p {
    margin: 14px 0 0;
    color: var(--st-muted);
    font-size: var(--st-size-sm);
    line-height: 1.65;
    font-weight: 500;
}

.st-steps-slider__card ul {
    display: grid;
    gap: 9px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.st-steps-slider__card li {
    position: relative;
    padding-left: 22px;
    color: var(--st-title);
    font-size: var(--st-size-sm);
    line-height: 1.5;
    font-weight: 700;
}

.st-steps-slider__card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--st-brand);
    box-shadow: 0 0 0 5px rgba(11, 133, 218, 0.10);
}

.st-steps-slider__link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 20px;
    color: var(--st-brand);
    font-size: var(--st-size-sm);
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
}

.st-steps-slider__link::after {
    content: "→";
    font-size: 15px;
    line-height: 1;
}

.st-steps-slider__summary {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
    gap: 28px;
    align-items: center;
    margin-top: 22px;
    padding: 28px;
    border-radius: 30px;
    background: var(--st-white);
    border: 1px solid var(--st-border);
    box-shadow: var(--st-shadow-sm);
}

.st-steps-slider__summary h3 {
    margin: 0;
    color: var(--st-title);
    font-size: 26px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.st-steps-slider__summary p {
    max-width: 780px;
    margin: 14px 0 0;
    color: var(--st-muted);
    font-size: var(--st-size-md);
    line-height: var(--st-line-text);
    font-weight: 500;
}

.st-steps-slider__summary-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.st-steps-slider__summary-list div {
    min-width: 0;
    padding: 16px;
    border-radius: 18px;
    background: var(--st-brand-soft);
    border: 1px solid rgba(11, 133, 218, 0.12);
}

.st-steps-slider__summary-list strong {
    display: block;
    color: var(--st-title);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.st-steps-slider__summary-list span {
    display: block;
    margin-top: 6px;
    color: var(--st-muted);
    font-size: var(--st-size-xs);
    line-height: 1.45;
    font-weight: 600;
}

.st-steps-slider__actions {
    margin-top: 28px;
}

@media (max-width: 1180px) {
    .st-steps-slider {
        padding: var(--st-section-space-tablet) 0;
    }

    .st-steps-slider__heading {
        grid-template-columns: 1fr;
    }

    .st-steps-slider__count {
        display: none;
    }

    .st-steps-slider__track {
        grid-auto-columns: calc((100% - 14px) / 2);
    }

    .st-steps-slider__summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .st-steps-slider {
        padding: var(--st-section-space-mobile) 0;
    }

    .st-steps-slider__container {
        width: calc(100% - var(--st-container-gap-mobile));
    }

    .st-steps-slider__heading {
        margin-bottom: 30px;
    }

    .st-steps-slider__eyebrow {
        margin-bottom: 15px;
        padding: 7px 12px;
        font-size: var(--st-size-xs);
    }

    .st-steps-slider__lead {
        margin-top: 18px;
    }

    .st-steps-slider__viewport {
        width: calc(100% + 18px);
        margin-right: -18px;
        padding-right: 18px;
    }

    .st-steps-slider__track {
        grid-auto-columns: minmax(280px, 86%);
        gap: 12px;
    }

    .st-steps-slider__card {
        padding: 18px;
        border-radius: 22px;
    }

    .st-steps-slider__card:hover {
        transform: none;
    }

    .st-steps-slider__top {
        margin-bottom: 18px;
    }

    .st-steps-slider__number {
        font-size: 36px;
    }

    .st-steps-slider__card h3 {
        font-size: 19px;
    }

    .st-steps-slider__summary {
        padding: 18px;
        border-radius: 24px;
    }

    .st-steps-slider__summary h3 {
        font-size: 22px;
    }

    .st-steps-slider__summary-list {
        grid-template-columns: 1fr;
    }

    .st-steps-slider__actions .st-title__button {
        width: 100%;
    }
}

/* =========================
   FAQ TABS SECTION
========================= */

.st-faq-tabs,
.st-faq-tabs * {
    box-sizing: border-box;
    font-family: var(--st-font);
}

.st-faq-tabs {
    position: relative;
    width: 100%;
    padding: var(--st-section-space) 0;
    background: var(--st-white);
    overflow: hidden;
}

.st-faq-tabs--soft {
    background:
        radial-gradient(circle at 12% 12%, var(--st-brand-soft-2), transparent 28%),
        linear-gradient(180deg, var(--st-soft-bg) 0%, var(--st-white) 100%);
}

.st-faq-tabs__container {
    position: relative;
    z-index: 2;
    width: calc(100% - var(--st-container-gap));
    max-width: var(--st-container);
    margin: 0 auto;
}

.st-faq-tabs__heading {
    max-width: 920px;
    margin-bottom: 42px;
}

.st-faq-tabs__eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: var(--st-radius-pill);
    background: var(--st-brand-soft);
    color: var(--st-brand);
    font-size: var(--st-size-sm);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.st-faq-tabs__eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--st-brand);
    box-shadow: 0 0 0 5px rgba(11, 133, 218, 0.10);
}

.st-faq-tabs__title {
    max-width: 920px;
    margin: 0;
    color: var(--st-title);
    font-size: var(--st-size-h2);
    line-height: var(--st-line-heading);
    font-weight: 800;
    letter-spacing: var(--st-letter-title);
}

.st-faq-tabs__title span {
    display: block;
    color: var(--st-brand);
}

.st-faq-tabs__lead {
    max-width: 840px;
    margin: 22px 0 0;
    color: var(--st-muted);
    font-size: var(--st-size-lg);
    line-height: var(--st-line-text);
    font-weight: 400;
    letter-spacing: var(--st-letter-text);
}

.st-faq-tabs__state {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.st-faq-tabs__layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.st-faq-tabs__nav {
    display: grid;
    gap: 10px;
    position: sticky;
    top: 112px;
}

.st-faq-tabs__tab-label {
    cursor: pointer;
    display: block;
    padding: 18px;
    border-radius: 22px;
    background: var(--st-white);
    border: 1px solid var(--st-border);
    box-shadow: var(--st-shadow-sm);
    transition:
        background-color var(--st-transition),
        border-color var(--st-transition),
        box-shadow var(--st-transition),
        transform var(--st-transition);
}

.st-faq-tabs__tab-label:hover {
    transform: translateY(-2px);
    border-color: var(--st-brand-border);
    box-shadow: var(--st-shadow-md);
}

.st-faq-tabs__tab-label strong {
    display: block;
    color: var(--st-title);
    font-size: var(--st-size-md);
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.st-faq-tabs__tab-label span {
    display: block;
    margin-top: 7px;
    color: var(--st-muted);
    font-size: var(--st-size-xs);
    line-height: 1.45;
    font-weight: 600;
}

.st-faq-tabs__panels {
    min-width: 0;
}

.st-faq-tabs__panel {
    display: none;
    padding: 24px;
    border-radius: 30px;
    background: var(--st-white);
    border: 1px solid var(--st-border);
    box-shadow: var(--st-shadow-md);
}

.st-faq-tabs__panel-head {
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--st-border-soft);
}

.st-faq-tabs__panel-head h3 {
    margin: 0;
    color: var(--st-title);
    font-size: 26px;
    line-height: 1.18;
    font-weight: 850;
    letter-spacing: -0.05em;
}

.st-faq-tabs__panel-head p {
    max-width: 780px;
    margin: 12px 0 0;
    color: var(--st-muted);
    font-size: var(--st-size-md);
    line-height: var(--st-line-text);
    font-weight: 500;
}

.st-faq-tabs__list {
    display: grid;
    gap: 10px;
}

.st-faq-tabs__item {
    border-radius: 18px;
    background: var(--st-soft-bg);
    border: 1px solid var(--st-border-soft);
    overflow: hidden;
}

.st-faq-tabs__item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 18px;
    color: var(--st-title);
    font-size: var(--st-size-md);
    line-height: 1.35;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.st-faq-tabs__item summary::-webkit-details-marker {
    display: none;
}

.st-faq-tabs__item summary svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: none;
    stroke: var(--st-brand);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--st-transition);
}

.st-faq-tabs__item[open] summary svg {
    transform: rotate(180deg);
}

.st-faq-tabs__answer {
    padding: 0 18px 18px;
}

.st-faq-tabs__answer p {
    margin: 0;
    color: var(--st-muted);
    font-size: var(--st-size-sm);
    line-height: 1.7;
    font-weight: 500;
}

.st-faq-tabs__state:nth-of-type(1):checked ~ .st-faq-tabs__layout .st-faq-tabs__nav .st-faq-tabs__tab-label:nth-child(1),
.st-faq-tabs__state:nth-of-type(2):checked ~ .st-faq-tabs__layout .st-faq-tabs__nav .st-faq-tabs__tab-label:nth-child(2),
.st-faq-tabs__state:nth-of-type(3):checked ~ .st-faq-tabs__layout .st-faq-tabs__nav .st-faq-tabs__tab-label:nth-child(3) {
    background: var(--st-brand);
    border-color: var(--st-brand);
    box-shadow: 0 18px 42px rgba(11, 133, 218, 0.22);
}

.st-faq-tabs__state:nth-of-type(1):checked ~ .st-faq-tabs__layout .st-faq-tabs__nav .st-faq-tabs__tab-label:nth-child(1) strong,
.st-faq-tabs__state:nth-of-type(1):checked ~ .st-faq-tabs__layout .st-faq-tabs__nav .st-faq-tabs__tab-label:nth-child(1) span,
.st-faq-tabs__state:nth-of-type(2):checked ~ .st-faq-tabs__layout .st-faq-tabs__nav .st-faq-tabs__tab-label:nth-child(2) strong,
.st-faq-tabs__state:nth-of-type(2):checked ~ .st-faq-tabs__layout .st-faq-tabs__nav .st-faq-tabs__tab-label:nth-child(2) span,
.st-faq-tabs__state:nth-of-type(3):checked ~ .st-faq-tabs__layout .st-faq-tabs__nav .st-faq-tabs__tab-label:nth-child(3) strong,
.st-faq-tabs__state:nth-of-type(3):checked ~ .st-faq-tabs__layout .st-faq-tabs__nav .st-faq-tabs__tab-label:nth-child(3) span {
    color: var(--st-white);
}

.st-faq-tabs__state:nth-of-type(1):checked ~ .st-faq-tabs__layout .st-faq-tabs__panels .st-faq-tabs__panel:nth-child(1),
.st-faq-tabs__state:nth-of-type(2):checked ~ .st-faq-tabs__layout .st-faq-tabs__panels .st-faq-tabs__panel:nth-child(2),
.st-faq-tabs__state:nth-of-type(3):checked ~ .st-faq-tabs__layout .st-faq-tabs__panels .st-faq-tabs__panel:nth-child(3) {
    display: block;
}

.st-faq-tabs__summary {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
    gap: 28px;
    align-items: center;
    margin-top: 22px;
    padding: 28px;
    border-radius: 30px;
    background: var(--st-brand-soft);
    border: 1px solid rgba(11, 133, 218, 0.16);
}

.st-faq-tabs__summary h3 {
    margin: 0;
    color: var(--st-title);
    font-size: 26px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.st-faq-tabs__summary p {
    max-width: 780px;
    margin: 14px 0 0;
    color: var(--st-muted);
    font-size: var(--st-size-md);
    line-height: var(--st-line-text);
    font-weight: 500;
}

.st-faq-tabs__summary-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.st-faq-tabs__summary-items div {
    min-width: 0;
    padding: 16px;
    border-radius: 18px;
    background: var(--st-white);
    border: 1px solid rgba(226, 229, 233, 0.82);
}

.st-faq-tabs__summary-items strong {
    display: block;
    color: var(--st-title);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.st-faq-tabs__summary-items span {
    display: block;
    margin-top: 6px;
    color: var(--st-muted);
    font-size: var(--st-size-xs);
    line-height: 1.45;
    font-weight: 600;
}

.st-faq-tabs__actions {
    margin-top: 28px;
}

@media (max-width: 1180px) {
    .st-faq-tabs {
        padding: var(--st-section-space-tablet) 0;
    }

    .st-faq-tabs__layout {
        grid-template-columns: 1fr;
    }

    .st-faq-tabs__nav {
        position: relative;
        top: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .st-faq-tabs__summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .st-faq-tabs {
        padding: var(--st-section-space-mobile) 0;
    }

    .st-faq-tabs__container {
        width: calc(100% - var(--st-container-gap-mobile));
    }

    .st-faq-tabs__heading {
        margin-bottom: 30px;
    }

    .st-faq-tabs__eyebrow {
        margin-bottom: 15px;
        padding: 7px 12px;
        font-size: var(--st-size-xs);
    }

    .st-faq-tabs__lead {
        margin-top: 18px;
    }

    .st-faq-tabs__nav {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .st-faq-tabs__tab-label {
        min-width: 240px;
        scroll-snap-align: start;
        padding: 15px;
        border-radius: 18px;
    }

    .st-faq-tabs__tab-label:hover {
        transform: none;
    }

    .st-faq-tabs__panel {
        padding: 16px;
        border-radius: 22px;
    }

    .st-faq-tabs__panel-head {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .st-faq-tabs__panel-head h3 {
        font-size: 21px;
    }

    .st-faq-tabs__item summary {
        padding: 15px;
        font-size: 15px;
    }

    .st-faq-tabs__answer {
        padding: 0 15px 15px;
    }

    .st-faq-tabs__summary {
        padding: 18px;
        border-radius: 24px;
    }

    .st-faq-tabs__summary h3 {
        font-size: 22px;
    }

    .st-faq-tabs__summary-items {
        grid-template-columns: 1fr;
    }

    .st-faq-tabs__actions .st-title__button {
        width: 100%;
    }
}