:root {
    --ink: #102a43;
    --ink-deep: #071b2e;
    --body: #3f5368;
    --muted: #6d7d8d;
    --paper: #ffffff;
    --soft: #f3f7f8;
    --soft-blue: #eaf4f7;
    --line: #d8e3e8;
    --accent: #ef6537;
    --accent-deep: #c9441d;
    --teal: #0b7d78;
    --teal-dark: #075c59;
    --gold: #e6b34a;
    --shadow-sm: 0 10px 28px rgba(16, 42, 67, 0.08);
    --shadow-lg: 0 24px 60px rgba(7, 27, 46, 0.14);
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 32px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    color: var(--body);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body,
button,
a {
    -webkit-tap-highlight-color: transparent;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

p,
h1,
h2,
h3,
ul,
ol {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(2.65rem, 6vw, 5.2rem);
    max-width: 12ch;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.symbol-library {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.cost-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--paper);
    background: var(--ink-deep);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.cost-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(216, 227, 232, 0.9);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
}

.cost-header-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 28px;
}

.cost-logo {
    display: inline-flex;
    width: 168px;
    flex: 0 0 auto;
}

.cost-logo img {
    width: 100%;
    height: auto;
}

.cost-header nav {
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 26px;
}

.cost-header nav a {
    color: var(--ink);
    font-size: 0.91rem;
    font-weight: 750;
    text-decoration: none;
}

.cost-header nav a:hover,
.cost-header nav a:focus-visible {
    color: var(--accent-deep);
}

.button {
    display: inline-flex;
    min-height: 52px;
    padding: 13px 20px;
    border: 2px solid var(--accent);
    border-radius: 13px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--paper);
    background: var(--accent);
    box-shadow: 0 10px 24px rgba(239, 101, 55, 0.2);
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button:hover,
.button:focus-visible {
    border-color: var(--accent-deep);
    background: var(--accent-deep);
    box-shadow: 0 14px 30px rgba(201, 68, 29, 0.24);
    transform: translateY(-2px);
}

.button-small {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 0.88rem;
}

.button-light {
    border-color: var(--paper);
    color: var(--ink-deep);
    background: var(--paper);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.button-light:hover,
.button-light:focus-visible {
    border-color: #dce8eb;
    color: var(--ink-deep);
    background: #f2f7f8;
}

.breadcrumb {
    display: flex;
    padding-top: 18px;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 650;
}

.breadcrumb a {
    text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
    color: var(--accent-deep);
    text-decoration: underline;
}

.cost-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 82px;
}

.cost-hero::before {
    position: absolute;
    z-index: -2;
    top: -190px;
    right: -180px;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 125, 120, 0.13), rgba(11, 125, 120, 0) 68%);
    content: "";
}

.cost-hero::after {
    position: absolute;
    z-index: -1;
    bottom: 26px;
    left: max(20px, calc((100vw - 1180px) / 2));
    width: 190px;
    height: 7px;
    border-radius: 100%;
    background: linear-gradient(90deg, var(--accent), rgba(239, 101, 55, 0));
    content: "";
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(370px, 0.86fr);
    align-items: center;
    gap: clamp(48px, 8vw, 100px);
}

.eyebrow {
    display: flex;
    margin-bottom: 16px;
    align-items: center;
    gap: 9px;
    color: var(--teal-dark);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 22px;
    height: 3px;
    border-radius: 4px;
    background: var(--accent);
}

.eyebrow-light {
    color: #c9e8e5;
}

.hero-answer {
    margin-bottom: 18px;
    color: var(--ink);
    font-size: clamp(1.18rem, 2vw, 1.44rem);
    line-height: 1.55;
}

.hero-answer strong {
    color: var(--accent-deep);
}

.hero-context {
    max-width: 66ch;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    margin-bottom: 24px;
    align-items: center;
    gap: 22px;
}

.text-link {
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 800;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--accent-deep);
}

.trust-row {
    display: flex;
    margin-bottom: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    list-style: none;
}

.trust-row li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-row svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--teal);
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-prices {
    position: relative;
    display: grid;
    padding: 20px;
    border: 1px solid #d7e5e8;
    border-radius: var(--radius-lg);
    gap: 13px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(235, 246, 247, 0.95)),
        var(--paper);
    box-shadow: var(--shadow-lg);
}

.hero-prices::before {
    position: absolute;
    z-index: -1;
    inset: -12px 20px 12px -12px;
    border: 1px solid rgba(11, 125, 120, 0.2);
    border-radius: var(--radius-lg);
    content: "";
}

.price-snapshot {
    display: grid;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    grid-template-columns: 52px 1fr;
    gap: 15px;
    background: rgba(255, 255, 255, 0.9);
}

.price-snapshot-primary {
    border-color: rgba(239, 101, 55, 0.4);
    background: #fff8f4;
}

.price-icon {
    display: grid;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    place-items: center;
    color: var(--teal);
    background: var(--soft-blue);
}

.price-snapshot-primary .price-icon {
    color: var(--accent-deep);
    background: #ffe8dd;
}

.price-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.price-snapshot p {
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.price-snapshot h2 {
    margin-bottom: 7px;
    font-size: 1.06rem;
    letter-spacing: -0.015em;
}

.price-snapshot strong {
    display: block;
    margin-bottom: 3px;
    color: var(--ink-deep);
    font-size: 1.34rem;
    line-height: 1.15;
}

.price-snapshot-primary strong {
    color: var(--accent-deep);
}

.price-snapshot small {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.4;
}

.jump-nav {
    border-block: 1px solid var(--line);
    background: var(--soft);
}

.jump-nav .cost-shell {
    display: flex;
    min-height: 62px;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.jump-nav span {
    margin-right: 4px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 750;
}

.jump-nav a {
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    background: var(--paper);
    font-size: 0.78rem;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
}

.jump-nav a:hover,
.jump-nav a:focus-visible {
    border-color: var(--teal);
    color: var(--teal-dark);
}

.cost-section {
    padding: 104px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 46px;
}

.section-heading > p:last-child {
    margin-bottom: 0;
}

.split-heading {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
    align-items: end;
    gap: 60px;
}

.split-heading h2 {
    max-width: 16ch;
    margin-bottom: 0;
}

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

.scope-card {
    padding: clamp(24px, 4vw, 40px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.scope-card-in {
    border-top: 5px solid var(--teal);
}

.scope-card-out {
    border-top: 5px solid var(--gold);
}

.scope-card-title {
    display: flex;
    margin-bottom: 24px;
    align-items: center;
    gap: 14px;
}

.scope-card-title > span {
    display: grid;
    width: 47px;
    height: 47px;
    border-radius: 14px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--paper);
    background: var(--teal);
    font-size: 1.4rem;
    font-weight: 850;
}

.scope-card-out .scope-card-title > span {
    color: var(--ink-deep);
    background: var(--gold);
}

.scope-card-title p {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.scope-card-title h3 {
    margin-bottom: 0;
}

.scope-card ul {
    display: grid;
    margin-bottom: 24px;
    padding: 0;
    gap: 11px;
    list-style: none;
}

.scope-card li {
    position: relative;
    padding-left: 26px;
}

.scope-card li::before {
    position: absolute;
    top: 0.63em;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 4px rgba(11, 125, 120, 0.1);
    content: "";
}

.scope-card-out li::before {
    background: #be8314;
    box-shadow: 0 0 0 4px rgba(230, 179, 74, 0.17);
}

.scope-footnote {
    margin-bottom: 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.87rem;
}

.truth-note {
    display: grid;
    margin-top: 24px;
    padding: 30px 34px;
    border-radius: var(--radius);
    grid-template-columns: 92px 1fr;
    align-items: center;
    gap: 26px;
    color: #d9e8ee;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 45%),
        var(--ink-deep);
}

.truth-note h3 {
    margin-bottom: 8px;
    color: var(--paper);
    font-size: 1.38rem;
}

.truth-note p {
    margin-bottom: 0;
}

.truth-mark {
    display: grid;
    width: 92px;
    height: 92px;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    place-items: center;
    color: var(--paper);
    background: var(--accent);
    box-shadow: 0 0 0 9px rgba(239, 101, 55, 0.12);
    font-size: 1.65rem;
    font-weight: 900;
}

.market-section {
    color: #c7d7df;
    background:
        radial-gradient(circle at 15% 15%, rgba(11, 125, 120, 0.34), transparent 30%),
        linear-gradient(145deg, #102a43, #071b2e 70%);
}

.market-section h2,
.market-section h3 {
    color: var(--paper);
}

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

.market-card {
    display: flex;
    min-height: 178px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    flex-direction: column;
    color: var(--paper);
    background: rgba(255, 255, 255, 0.07);
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.market-card:hover,
.market-card:focus-visible {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-3px);
}

.market-card span {
    margin-bottom: 15px;
    color: #9cc9c7;
    font-size: 0.69rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.market-card strong {
    font-size: 1.14rem;
    line-height: 1.25;
}

.market-card small {
    margin-top: auto;
    padding-top: 20px;
    color: #d0dde3;
    font-weight: 700;
}

.market-card-guide {
    border-color: rgba(230, 179, 74, 0.52);
}

.market-conclusion {
    display: grid;
    margin-top: 18px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    grid-template-columns: 210px 1fr;
    align-items: center;
    gap: 36px;
    background: rgba(255, 255, 255, 0.06);
}

.market-conclusion h3 {
    margin-bottom: 8px;
    font-size: 1.45rem;
}

.market-conclusion p:last-child {
    margin-bottom: 0;
}

.market-number {
    margin-bottom: 0;
    color: #ffd2c1;
    font-size: 1rem;
    font-weight: 750;
    line-height: 1;
    text-align: center;
}

.market-number strong {
    display: block;
    color: var(--paper);
    font-size: 4rem;
    letter-spacing: -0.07em;
}

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

.factor-card {
    position: relative;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.factor-card:hover {
    border-color: rgba(11, 125, 120, 0.42);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.factor-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 26px;
    border-radius: 16px;
    place-items: center;
    color: var(--teal);
    background: var(--soft-blue);
}

.factor-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.factor-number {
    position: absolute;
    top: 28px;
    right: 28px;
    color: #c4d0d6;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.factor-card h3 {
    margin-bottom: 10px;
}

.factor-card p {
    margin-bottom: 0;
    font-size: 0.93rem;
}

.example-section {
    background: var(--soft);
}

.budget-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.68fr);
    align-items: start;
    gap: 26px;
}

.budget-list {
    display: grid;
    gap: 14px;
}

.budget-card {
    display: grid;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 19px;
    grid-template-columns: 48px 1fr auto;
    align-items: start;
    gap: 18px;
    background: var(--paper);
}

.budget-badge {
    display: grid;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    place-items: center;
    color: var(--paper);
    background: var(--teal);
    font-size: 1.25rem;
    font-weight: 900;
}

.budget-type {
    margin-bottom: 4px;
    color: var(--accent-deep);
    font-size: 0.71rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.budget-card h3 {
    max-width: 42ch;
    margin-bottom: 12px;
    font-size: 1.09rem;
    line-height: 1.3;
}

.budget-card ul {
    display: flex;
    margin-bottom: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
}

.budget-card li {
    padding: 5px 8px;
    border-radius: 7px;
    color: var(--muted);
    background: var(--soft);
    font-size: 0.72rem;
    font-weight: 650;
    line-height: 1.25;
}

.budget-price {
    min-width: 142px;
    margin-bottom: 0;
    padding-left: 18px;
    border-left: 1px solid var(--line);
    align-self: center;
    text-align: right;
}

.budget-price span {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    line-height: 1.3;
    text-transform: uppercase;
}

.budget-price strong {
    color: var(--ink);
    font-size: 1.14rem;
    white-space: nowrap;
}

.demo-panel {
    position: sticky;
    top: 100px;
    overflow: hidden;
    border-radius: var(--radius);
    color: #dce9ee;
    background: var(--ink-deep);
    box-shadow: var(--shadow-lg);
}

.demo-image-link {
    display: block;
    overflow: hidden;
    background: #e8f0f2;
}

.demo-image-link img {
    width: 100%;
    height: auto;
    aspect-ratio: 1200 / 630;
    object-fit: cover;
    transition: transform 240ms ease;
}

.demo-image-link:hover img,
.demo-image-link:focus-visible img {
    transform: scale(1.025);
}

.demo-panel-copy {
    padding: 30px;
}

.demo-panel h3 {
    color: var(--paper);
    font-size: 1.55rem;
}

.demo-panel p:not(.eyebrow) {
    font-size: 0.93rem;
}

.demo-panel .button {
    width: 100%;
    margin: 8px 0 13px;
}

.demo-panel small {
    display: block;
    color: #a8bdc7;
    font-size: 0.72rem;
    line-height: 1.4;
    text-align: center;
}

.running-section {
    color: #d5e3e8;
    background:
        radial-gradient(circle at 85% 20%, rgba(239, 101, 55, 0.18), transparent 30%),
        var(--teal-dark);
}

.running-section h2 {
    color: var(--paper);
}

.running-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1fr);
    align-items: center;
    gap: 76px;
}

.source-link {
    color: var(--paper);
    font-size: 0.82rem;
    font-weight: 750;
    text-underline-offset: 4px;
}

.running-cards {
    display: grid;
    gap: 12px;
}

.running-cards article {
    display: grid;
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    grid-template-columns: 0.6fr 1fr;
    align-items: center;
    gap: 8px 24px;
    background: rgba(255, 255, 255, 0.08);
}

.running-cards span {
    color: #b7d9d7;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.running-cards strong {
    color: var(--paper);
    font-size: 1.15rem;
}

.running-cards p {
    margin: 0;
    grid-column: 2;
    color: #c6dedd;
    font-size: 0.79rem;
}

.prepare-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
    gap: 68px;
}

.prepare-copy > p:not(.eyebrow) {
    margin-bottom: 30px;
}

.prepare-list {
    display: grid;
    margin-bottom: 0;
    padding: 0;
    gap: 10px;
    list-style: none;
}

.prepare-list li {
    display: flex;
    padding: 15px 17px;
    border: 1px solid var(--line);
    border-radius: 13px;
    align-items: center;
    gap: 13px;
    background: var(--paper);
}

.prepare-list li > span {
    display: grid;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex: 0 0 auto;
    place-items: center;
    color: var(--paper);
    background: var(--teal);
    font-size: 0.78rem;
    font-weight: 850;
}

.prepare-list p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.prepare-action {
    padding: clamp(28px, 4vw, 42px);
    border-radius: var(--radius);
    align-self: start;
    color: #dce9ee;
    background:
        radial-gradient(circle at 100% 0, rgba(239, 101, 55, 0.34), transparent 36%),
        var(--ink-deep);
    box-shadow: var(--shadow-lg);
}

.prepare-action-label {
    margin-bottom: 14px;
    color: #ffbda7;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.prepare-action h3 {
    color: var(--paper);
    font-size: 1.7rem;
}

.prepare-action .button {
    width: 100%;
    margin: 10px 0 21px;
}

.prepare-action ul {
    display: grid;
    margin-bottom: 0;
    padding: 0;
    gap: 8px;
    color: #bfd0d7;
    font-size: 0.8rem;
    list-style: none;
}

.prepare-action li::before {
    margin-right: 8px;
    color: #70c7c2;
    content: "✓";
    font-weight: 900;
}

.legal-note {
    display: grid;
    margin-top: 42px;
    padding: 28px 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    grid-template-columns: 58px 1fr;
    align-items: start;
    gap: 20px;
    background: var(--soft);
}

.legal-note > span {
    display: grid;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    place-items: center;
    color: var(--ink);
    background: #ffe8b9;
    font-family: Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.legal-note h3 {
    margin-bottom: 7px;
}

.legal-note p {
    margin-bottom: 7px;
    font-size: 0.88rem;
}

.legal-note a {
    color: var(--teal-dark);
    font-size: 0.79rem;
    font-weight: 800;
    text-underline-offset: 3px;
}

.faq-section {
    background: var(--soft);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
    align-items: start;
    gap: 70px;
}

.faq-layout .section-heading {
    position: sticky;
    top: 110px;
    margin-bottom: 0;
}

.faq-layout .section-heading h2 {
    font-size: clamp(2rem, 3.8vw, 3.1rem);
}

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

.faq-list details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--paper);
}

.faq-list details[open] {
    border-color: rgba(11, 125, 120, 0.4);
    box-shadow: var(--shadow-sm);
}

.faq-list summary {
    position: relative;
    padding: 21px 55px 21px 22px;
    color: var(--ink);
    cursor: pointer;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.4;
    list-style: none;
}

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

.faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 20px;
    display: grid;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    place-items: center;
    color: var(--teal-dark);
    background: var(--soft-blue);
    content: "+";
    font-size: 1.25rem;
    transform: translateY(-50%);
}

.faq-list details[open] summary::after {
    content: "–";
}

.faq-list details p {
    margin: -3px 22px 22px;
    padding-top: 17px;
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
}

.final-cta {
    padding: 78px 0;
    color: #d7e7ec;
    background:
        radial-gradient(circle at 20% 0, rgba(11, 125, 120, 0.44), transparent 34%),
        linear-gradient(135deg, #102a43, #071b2e);
}

.final-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 70px;
}

.final-cta h2 {
    max-width: 18ch;
    color: var(--paper);
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.final-cta p:not(.eyebrow) {
    max-width: 58ch;
    margin-bottom: 0;
}

.final-actions {
    display: grid;
    min-width: 270px;
    gap: 14px;
    text-align: center;
}

.final-secondary {
    color: var(--paper);
    font-size: 0.83rem;
    font-weight: 750;
    text-underline-offset: 4px;
}

.cost-footer {
    padding: 32px 0;
    border-top: 1px solid #dce5e9;
    color: var(--muted);
    background: var(--paper);
    font-size: 0.76rem;
}

.cost-footer .cost-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cost-footer p {
    margin-bottom: 0;
}

.cost-footer a {
    color: var(--ink);
    text-underline-offset: 3px;
}

:focus-visible {
    outline: 3px solid rgba(239, 101, 55, 0.65);
    outline-offset: 3px;
}

@media (max-width: 1040px) {
    .cost-header nav {
        display: none;
    }

    .cost-header .button-small {
        margin-left: auto;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
        gap: 46px;
    }

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

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

    .budget-layout {
        grid-template-columns: 1fr;
    }

    .demo-panel {
        position: static;
        display: grid;
        grid-template-columns: minmax(310px, 0.85fr) 1fr;
    }

    .demo-image-link img {
        height: 100%;
        object-fit: cover;
    }

    .running-layout {
        grid-template-columns: minmax(0, 0.72fr) minmax(400px, 1fr);
        gap: 42px;
    }

    .cost-footer .cost-shell {
        align-items: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 820px) {
    h1 {
        max-width: 14ch;
        font-size: clamp(2.55rem, 10vw, 4rem);
    }

    .cost-hero {
        padding: 54px 0 64px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-prices {
        max-width: 620px;
    }

    .cost-section {
        padding: 82px 0;
    }

    .split-heading,
    .faq-layout,
    .prepare-layout,
    .running-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .split-heading {
        align-items: start;
    }

    .split-heading h2 {
        max-width: 19ch;
    }

    .scope-grid {
        grid-template-columns: 1fr;
    }

    .market-conclusion {
        grid-template-columns: 155px 1fr;
        gap: 24px;
    }

    .budget-card {
        grid-template-columns: 48px 1fr;
    }

    .budget-price {
        min-width: 0;
        padding: 13px 0 0;
        border-top: 1px solid var(--line);
        border-left: 0;
        grid-column: 2;
        text-align: left;
    }

    .demo-panel {
        grid-template-columns: 1fr;
    }

    .running-layout {
        align-items: start;
    }

    .faq-layout .section-heading {
        position: static;
    }

    .final-cta-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .final-actions {
        max-width: 380px;
    }
}

@media (max-width: 620px) {
    body {
        font-size: 16px;
    }

    html {
        scroll-padding-top: 76px;
    }

    .cost-shell {
        width: min(1180px, calc(100% - 28px));
    }

    .cost-header-inner {
        min-height: 66px;
        gap: 12px;
    }

    .cost-logo {
        width: 140px;
    }

    .button-small {
        min-height: 40px;
        padding: 8px 12px;
        font-size: 0.78rem;
    }

    .breadcrumb {
        overflow: hidden;
        padding-top: 13px;
        white-space: nowrap;
    }

    .breadcrumb a:nth-of-type(2),
    .breadcrumb a:nth-of-type(2) + span {
        display: none;
    }

    .cost-hero {
        padding: 42px 0 54px;
    }

    .cost-hero::after {
        display: none;
    }

    .eyebrow {
        font-size: 0.68rem;
    }

    h1 {
        margin-bottom: 20px;
        font-size: clamp(2.42rem, 12vw, 3.35rem);
    }

    h2 {
        font-size: clamp(1.85rem, 9vw, 2.65rem);
    }

    .hero-answer {
        font-size: 1.08rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 15px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .text-link {
        text-align: center;
    }

    .trust-row {
        display: grid;
        gap: 8px;
    }

    .hero-prices {
        padding: 12px;
        border-radius: 24px;
    }

    .price-snapshot {
        padding: 15px;
        grid-template-columns: 46px 1fr;
        gap: 12px;
    }

    .price-icon {
        width: 46px;
        height: 46px;
    }

    .price-icon svg {
        width: 25px;
        height: 25px;
    }

    .price-snapshot strong {
        font-size: 1.18rem;
    }

    .jump-nav .cost-shell {
        padding-block: 11px;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .jump-nav .cost-shell::-webkit-scrollbar {
        display: none;
    }

    .jump-nav span,
    .jump-nav a {
        flex: 0 0 auto;
    }

    .cost-section {
        padding: 66px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .split-heading {
        gap: 17px;
    }

    .scope-card {
        padding: 23px 20px;
    }

    .scope-card-title {
        align-items: flex-start;
    }

    .scope-card-title > span {
        width: 42px;
        height: 42px;
    }

    .truth-note {
        padding: 25px 22px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .truth-mark {
        width: 72px;
        height: 72px;
        font-size: 1.35rem;
    }

    .market-grid {
        grid-template-columns: 1fr;
    }

    .market-card {
        min-height: 145px;
        padding: 21px;
    }

    .market-conclusion {
        padding: 26px 22px;
        grid-template-columns: 1fr;
    }

    .market-number {
        text-align: left;
    }

    .market-number strong {
        display: inline;
        margin-inline: 5px;
        font-size: 3rem;
    }

    .factor-grid {
        grid-template-columns: 1fr;
    }

    .factor-card {
        padding: 25px 23px;
    }

    .factor-icon {
        margin-bottom: 21px;
    }

    .budget-card {
        padding: 21px 18px;
        grid-template-columns: 40px 1fr;
        gap: 13px;
    }

    .budget-badge {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 1.05rem;
    }

    .budget-card ul {
        display: grid;
    }

    .demo-panel-copy {
        padding: 25px 21px;
    }

    .running-cards article {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .running-cards p {
        grid-column: 1;
    }

    .prepare-action {
        padding: 28px 22px;
    }

    .legal-note {
        padding: 23px 20px;
        grid-template-columns: 1fr;
    }

    .legal-note > span {
        width: 48px;
        height: 48px;
    }

    .faq-list summary {
        padding: 19px 50px 19px 18px;
        font-size: 0.91rem;
    }

    .faq-list details p {
        margin: -2px 18px 20px;
    }

    .final-cta {
        padding: 62px 0;
    }

    .final-actions {
        min-width: 0;
    }

    .cost-footer .cost-shell {
        display: grid;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .cost-header,
    .jump-nav,
    .final-cta,
    .cost-footer,
    .hero-actions,
    .prepare-action {
        display: none !important;
    }

    body {
        color: #111;
        background: #fff;
        font-size: 11pt;
    }

    .cost-section,
    .cost-hero {
        padding: 28px 0;
    }

    .market-section,
    .running-section,
    .truth-note {
        color: #111;
        background: #fff;
    }

    .market-section h2,
    .market-section h3,
    .running-section h2,
    .truth-note h3 {
        color: #111;
    }

    .factor-card,
    .scope-card,
    .budget-card,
    .market-card {
        break-inside: avoid;
        box-shadow: none;
    }
}
