@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
    --black: #07090b;
    --black-soft: #161b20;
    --white: #ffffff;
    --orange: #ff4b1f;
    --orange-dark: #d93a13;
    --sky: #edf7fc;
    --grey-100: #f5f7f8;
    --grey-200: #dfe5e8;
    --grey-300: #c7d0d5;
    --grey-500: #66727a;
    --grey-700: #343c42;
    --error: #b42318;
    --success: #087a4b;
    --display: "Archivo Black", sans-serif;
    --body: "Inter", sans-serif;
    --header-height: 74px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
    background: var(--white);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--black);
    background: var(--white);
    font-family: var(--body);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
select {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 12px 16px;
    color: var(--white);
    background: var(--black);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 4px solid rgba(255, 75, 31, 0.35);
    outline-offset: 3px;
}

.site-header {
    min-height: var(--header-height);
    display: grid;
    position: sticky;
    top: 0;
    z-index: 50;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 13px clamp(20px, 3vw, 46px);
    background: rgba(247, 251, 253, 0.96);
    border-bottom: 1px solid var(--grey-200);
    backdrop-filter: blur(16px);
}

.site-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-family: var(--display);
    font-size: clamp(1.28rem, 2vw, 1.65rem);
    line-height: 1;
    letter-spacing: -0.065em;
    text-transform: uppercase;
}

.site-logo strong {
    color: var(--orange);
    font-weight: 400;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 4vw, 54px);
}

.site-nav a {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.header-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 12px 18px;
    color: var(--white);
    background: var(--black);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.header-button span {
    color: var(--orange);
}

.main-grid {
    display: grid;
    min-height: calc(100svh - var(--header-height));
    grid-template-columns: minmax(0, 1.55fr) minmax(470px, 0.82fr);
}

.hero-panel {
    min-width: 0;
    min-height: calc(100svh - var(--header-height));
    display: flex;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    padding:
        clamp(46px, 6vh, 76px)
        clamp(28px, 4vw, 62px)
        24px;
    background:
        var(--sky)
        url("images/hero.png")
        center / cover
        no-repeat;
    isolation: isolate;
}

.hero-panel__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(243, 249, 252, 0.99) 0%,
            rgba(243, 249, 252, 0.9) 32%,
            rgba(243, 249, 252, 0.55) 52%,
            rgba(243, 249, 252, 0.08) 76%
        ),
        linear-gradient(
            0deg,
            rgba(7, 9, 11, 0.26) 0%,
            transparent 38%
        );
}

.hero-content {
    width: min(820px, 88%);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
    color: var(--grey-700);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 3px;
    content: "";
    background: var(--orange);
}

.hero-content h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(4.4rem, 6.4vw, 7.3rem);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: -0.075em;
    text-transform: uppercase;
}

.hero-content h1 span {
    display: block;
    width: max-content;
    max-width: 100%;
}

.hero-content h1 .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--black);
}

.hero-content h1 .orange {
    color: var(--orange);
}

.hero-intro {
    max-width: 650px;
    margin: 26px 0 0;
    color: var(--grey-700);
    font-size: clamp(1rem, 1.15vw, 1.12rem);
    line-height: 1.65;
}

.proof-strip {
    display: grid;
    width: min(760px, 100%);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 16px 34px rgba(7, 9, 11, 0.12);
    backdrop-filter: blur(14px);
}

.proof-strip > div {
    min-width: 0;
    padding: 14px 16px;
    border-right: 1px solid var(--grey-200);
}

.proof-strip > div:last-child {
    border-right: 0;
}

.proof-strip strong,
.proof-strip span {
    display: block;
}

.proof-strip strong {
    font-family: var(--display);
    font-size: 0.86rem;
    font-weight: 400;
    text-transform: uppercase;
}

.proof-strip span {
    margin-top: 3px;
    color: var(--grey-500);
    font-size: 0.7rem;
    line-height: 1.35;
}

.hero-bottom {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1fr;
    gap: 12px;
    margin-top: 42px;
}

.feature-card {
    min-width: 0;
    min-height: 190px;
    padding: 18px;
    box-shadow: 0 18px 38px rgba(7, 9, 11, 0.18);
}

.feature-card--light {
    background: rgba(255, 255, 255, 0.94);
}

.feature-card--dark {
    color: var(--white);
    background: rgba(7, 9, 11, 0.94);
}

.feature-card--accent {
    background: rgba(255, 244, 239, 0.96);
}

.card-kicker {
    margin: 0 0 8px;
    color: var(--orange);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.feature-card h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(1.3rem, 1.75vw, 1.8rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.simple-list,
.tick-list {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.simple-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 8px;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
}

.simple-list span {
    color: var(--orange);
    font-family: var(--display);
    font-size: 0.62rem;
}

.tick-list li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    line-height: 1.4;
}

.tick-list li::before {
    position: absolute;
    left: 0;
    content: "✓";
    color: var(--orange);
    font-weight: 800;
}

.feature-copy {
    margin: 15px 0 18px;
    color: var(--grey-700);
    font-size: 0.78rem;
    line-height: 1.5;
}

.feature-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange-dark);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
}

.builder-panel {
    min-width: 0;
    padding: clamp(24px, 2.6vw, 38px);
    background: var(--white);
    border-left: 1px solid var(--grey-200);
}

.builder-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.builder-kicker {
    margin: 0 0 6px;
    color: var(--orange);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
}

.builder-top h2 {
    max-width: 390px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(2.4rem, 3.4vw, 3.8rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.from-price {
    flex-shrink: 0;
    text-align: right;
}

.from-price span {
    display: block;
    color: var(--grey-500);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.from-price strong {
    font-family: var(--display);
    font-size: clamp(2rem, 2.8vw, 3rem);
    font-weight: 400;
}

.trust-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 0;
    color: var(--grey-700);
    border-top: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
    font-size: 0.78rem;
    font-weight: 700;
}

.trust-line span {
    color: var(--orange);
}

.progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 18px 0 20px;
    border: 1px solid var(--grey-200);
}

.progress-step {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--grey-500);
    background: var(--white);
    border: 0;
    border-right: 1px solid var(--grey-200);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.progress-step:last-child {
    border-right: 0;
}

.progress-step span {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-700);
    background: var(--grey-100);
    border-radius: 50%;
}

.progress-step.is-active {
    color: var(--white);
    background: var(--black);
}

.progress-step.is-active span,
.progress-step.is-complete span {
    color: var(--white);
    background: var(--orange);
}

.form-step {
    animation: reveal 240ms var(--ease);
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-heading {
    margin-bottom: 16px;
}

.step-heading p {
    margin: 0 0 5px;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.step-heading h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.step-heading > span {
    display: block;
    margin-top: 7px;
    color: var(--grey-500);
    font-size: 0.78rem;
    line-height: 1.45;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.form-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field label {
    color: var(--grey-700);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-width: 0;
    color: var(--black);
    background: var(--white);
    border: 1px solid var(--grey-300);
    border-radius: 0;
    font-size: 1rem;
}

.form-field input,
.form-field select {
    min-height: 52px;
    padding: 0 14px;
}

.form-field textarea {
    min-height: 104px;
    padding: 13px 14px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 0;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 75, 31, 0.1);
}

.form-field .is-invalid,
.form-field input.is-invalid,
.form-field select.is-invalid {
    border-color: var(--error);
}

.primary-button,
.secondary-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 18px;
    border: 1px solid;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.primary-button {
    color: var(--white);
    background: var(--orange);
    border-color: var(--orange);
}

.primary-button:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
}

.secondary-button {
    color: var(--black);
    background: var(--white);
    border-color: var(--grey-300);
}

.next-button {
    width: 100%;
    margin-top: 18px;
}

.button-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    margin-top: 18px;
}

.coverage-select-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.coverage-select-wrap label {
    color: var(--grey-700);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.coverage-select-wrap select {
    width: 100%;
    min-height: 58px;
    padding: 0 16px;
    color: var(--black);
    background: var(--white);
    border: 2px solid var(--grey-300);
    border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
}

.coverage-select-wrap select:focus {
    outline: 0;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 75, 31, 0.1);
}

.coverage-summary {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
    padding: 14px;
    color: var(--white);
    background: var(--black);
    border: 1px solid var(--black);
    box-shadow: 0 14px 28px rgba(7, 9, 11, 0.14);
}

.coverage-summary__image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    padding: 6px;
    background: var(--white);
}

.coverage-summary__image img {
    width: 100%;
    height: 76px;
    object-fit: contain;
}

.coverage-summary__copy {
    min-width: 0;
}

.coverage-summary__copy span,
.coverage-summary__copy strong {
    display: block;
}

.coverage-summary__copy span {
    color: var(--orange);
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
}

.coverage-summary__copy strong {
    margin-top: 4px;
    font-family: var(--display);
    font-size: 1.12rem;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.coverage-summary__copy p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.76rem;
    line-height: 1.4;
}

.coverage-summary > b {
    color: var(--orange);
    font-size: 1.15rem;
    white-space: nowrap;
}

.coverage-help {
    margin: 10px 0 0;
    color: var(--grey-500);
    font-size: 0.7rem;
    line-height: 1.45;
}

.upload-zone {
    min-height: 124px;
    display: grid;
    position: relative;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: var(--grey-100);
    border: 2px dashed var(--grey-300);
    cursor: pointer;
}

.upload-zone:hover,
.upload-zone.is-dragging {
    background: #fff3ee;
    border-color: var(--orange);
}

.upload-zone input {
    width: 1px;
    height: 1px;
    position: absolute;
    opacity: 0;
}

.upload-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 800;
}

.upload-zone strong,
.upload-zone small {
    display: block;
}

.upload-zone strong {
    font-family: var(--display);
    font-size: 1.08rem;
    font-weight: 400;
    text-transform: uppercase;
}

.upload-zone small {
    margin-top: 4px;
    color: var(--grey-500);
    font-size: 0.78rem;
}

.upload-zone b {
    padding: 9px 12px;
    color: var(--white);
    background: var(--black);
    font-size: 0.7rem;
    text-transform: uppercase;
}

.upload-feedback,
.form-message {
    display: none;
    margin-top: 10px;
    padding: 10px 12px;
    font-size: 0.76rem;
    font-weight: 700;
}

.upload-feedback.is-visible,
.form-message.is-visible {
    display: block;
}

.upload-feedback.is-error,
.form-message.is-error {
    color: var(--error);
    background: #fef3f2;
}

.upload-feedback.is-success,
.form-message.is-success {
    color: var(--success);
    background: #ecfdf3;
}

.upload-previews {
    display: flex;
    gap: 9px;
    margin-top: 10px;
    overflow-x: auto;
}

.upload-previews:empty {
    display: none;
}

.upload-preview {
    width: 120px;
    min-width: 120px;
    position: relative;
    background: var(--grey-100);
    border: 1px solid var(--grey-300);
}

.upload-preview__media {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-family: var(--display);
}

.upload-preview__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-preview__details {
    padding: 8px;
}

.upload-preview__name,
.upload-preview__size {
    display: block;
}

.upload-preview__name {
    overflow: hidden;
    font-size: 0.66rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.upload-preview__size {
    margin-top: 2px;
    color: var(--grey-500);
    font-size: 0.6rem;
}

.upload-preview__remove {
    width: 26px;
    height: 26px;
    position: absolute;
    top: 5px;
    right: 5px;
    color: var(--white);
    background: rgba(7, 9, 11, 0.88);
    border: 0;
    border-radius: 50%;
}

.summary-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 16px;
    padding: 15px 16px;
    background: var(--grey-100);
    border: 1px solid var(--grey-200);
}

.summary-box span,
.summary-box small {
    display: block;
}

.summary-box span {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.summary-box small {
    margin-top: 3px;
    color: var(--grey-500);
    font-size: 0.7rem;
}

.summary-box strong {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 400;
}

.builder-reassurance {
    margin: 18px 0 0;
    color: var(--grey-500);
    font-size: 0.7rem;
    line-height: 1.5;
    text-align: center;
}

.site-footer {
    display: grid;
    grid-template-columns:
        minmax(210px, 0.9fr)
        minmax(320px, 1.35fr)
        minmax(190px, 0.75fr)
        minmax(190px, 0.8fr);
    gap: 28px;
    align-items: center;
    padding: 24px clamp(20px, 3vw, 46px);
    color: var(--white);
    background: var(--black);
    border-top: 5px solid var(--orange);
}

.site-footer__brand {
    min-width: 0;
}

.site-logo--footer {
    display: inline-flex;
    font-size: 1.05rem;
}

.site-footer__brand p {
    max-width: 260px;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.74rem;
    line-height: 1.45;
    text-align: left;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.site-footer__nav a,
.site-footer__contact a,
.site-footer__group a {
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.4;
}

.site-footer__nav a {
    color: rgba(255, 255, 255, 0.78);
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__contact a:hover,
.site-footer__contact a:focus-visible,
.site-footer__group a:hover,
.site-footer__group a:focus-visible {
    color: var(--orange);
}

.site-footer__contact {
    display: grid;
    gap: 5px;
}

.site-footer__contact a:first-child {
    color: var(--white);
    font-size: 0.9rem;
}

.site-footer__contact a:last-child {
    color: var(--orange);
    overflow-wrap: anywhere;
}

.site-footer__group {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__group span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer__group a {
    color: var(--white);
}

@media (max-width: 1100px) {
    .site-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }

    .site-footer__group {
        padding-left: 0;
        border-left: 0;
    }
}

@media (max-width: 640px) {
    .site-footer {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-top: 26px;
        padding-bottom: 28px;
    }

    .site-footer__nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .site-footer__nav a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-footer__nav a:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .site-footer__contact a:first-child {
        font-size: 1rem;
    }
}

@media (max-width: 1180px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        min-height: auto;
    }

    .builder-panel {
        border-top: 1px solid var(--grey-200);
        border-left: 0;
    }
}

@media (max-width: 820px) {
    .site-nav {
        display: none;
    }

    .site-header {
        grid-template-columns: 1fr auto;
    }

    .hero-content {
        width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(3.7rem, 12vw, 6.4rem);
    }

    .hero-bottom {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .hero-panel {
        padding-right: 18px;
        padding-left: 18px;
    }

    .hero-content h1 {
        font-size: clamp(3rem, 15vw, 4.6rem);
    }

    .proof-strip {
        grid-template-columns: 1fr;
    }

    .proof-strip > div {
        border-right: 0;
        border-bottom: 1px solid var(--grey-200);
    }

    .proof-strip > div:last-child {
        border-bottom: 0;
    }

    .builder-panel {
        padding: 22px 18px;
    }

    .builder-top {
        align-items: flex-start;
    }

    .builder-top h2 {
        font-size: clamp(2.15rem, 11vw, 3rem);
    }

    .from-price strong {
        font-size: 2rem;
    }

    .progress-step {
        min-height: 52px;
        flex-direction: column;
        gap: 3px;
        font-size: 0.58rem;
    }

    .field-grid {
        grid-template-columns: 1fr;
    }

    .form-field--full {
        grid-column: auto;
    }

    .coverage-option {
        grid-template-columns: 72px minmax(0, 1fr) auto;
        gap: 9px;
        padding-right: 10px;
    }

    .coverage-option img {
        width: 72px;
        height: 56px;
    }

    .coverage-copy strong {
        font-size: 0.8rem;
    }

    .coverage-copy small {
        font-size: 0.66rem;
    }

    .upload-zone {
        grid-template-columns: auto 1fr;
    }

    .upload-zone b {
        grid-column: 1 / -1;
        text-align: center;
    }

    .button-row {
        grid-template-columns: 1fr;
    }

    .button-row .secondary-button {
        order: 2;
    }

}


@media (max-width: 640px) {
    .coverage-summary {
        grid-template-columns: 86px minmax(0, 1fr);
    }

    .coverage-summary__image {
        min-height: 72px;
    }

    .coverage-summary__image img {
        height: 64px;
    }

    .coverage-summary > b {
        grid-column: 1 / -1;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        text-align: right;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Stable desktop hero and fixed builder stage */

@media (min-width: 1181px) {
    .main-grid {
        align-items: start;
    }

    .hero-panel {
        height: calc(100svh - var(--header-height));
        min-height: calc(100svh - var(--header-height));
        position: sticky;
        top: var(--header-height);
    }

    .builder-panel {
        min-height: calc(100svh - var(--header-height));
    }

    .builder-form {
        min-height: 470px;
    }

    .form-step {
        min-height: 470px;
    }

    .coverage-summary {
        min-height: 116px;
    }

    .coverage-summary__copy p {
        min-height: 2.8em;
    }
}

@media (max-width: 1180px) {
    .hero-panel {
        height: auto;
        min-height: auto;
        position: relative;
        top: auto;
    }

    .builder-form,
    .form-step {
        min-height: 0;
    }
}

/* Scroll-friendly agency layout */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
}

.hero-scroll-button {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding: 8px 8px 8px 18px;
    color: var(--white);
    background: var(--black);
    border: 0;
    box-shadow: 0 14px 30px rgba(7, 9, 11, 0.18);
    transition:
        transform 180ms ease,
        background 180ms ease;
}

.hero-scroll-button:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.hero-scroll-button__label {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-scroll-button__icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 800;
    transition: transform 180ms ease;
}

.hero-scroll-button:hover .hero-scroll-button__icon {
    transform: translateY(3px);
}

.agency-next {
    width: 100%;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 10px 8px 20px;
    color: var(--white);
    background: var(--orange);
    border: 0;
    text-align: left;
    transition:
        background 180ms ease,
        transform 180ms ease;
}

.agency-next:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

.agency-next__copy {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-transform: uppercase;
}

.agency-next__copy small {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
}

.agency-next__icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background: var(--white);
    border-radius: 50%;
    font-size: 1.15rem;
    font-weight: 800;
    transition: transform 180ms ease;
}

.agency-next:hover .agency-next__icon {
    transform: translateY(3px);
}

@media (min-width: 1181px) {
    .main-grid {
        align-items: start;
    }

    .hero-panel {
        min-height: calc(100svh - var(--header-height));
        height: auto;
        position: relative;
        top: auto;
        overflow: visible;
        padding-bottom: 28px;
    }

    .hero-bottom {
        margin-top: 30px;
    }

    .builder-panel {
        min-height: calc(100svh - var(--header-height));
        height: auto;
        overflow: visible;
    }

    .builder-form,
    .form-step {
        min-height: 0;
        height: auto;
        overflow: visible;
    }

    .form-step[hidden] {
        display: none;
    }
}

@media (max-width: 1180px) {
    .hero-scroll-button {
        margin-top: 20px;
    }
}

/* Final full-height layout lock */

:root {
    --footer-height: 72px;
}

.main-grid {
    min-height: calc(
        100svh -
        var(--header-height) -
        var(--footer-height)
    );
    align-items: stretch;
}

.hero-panel,
.builder-panel {
    min-height: calc(
        100svh -
        var(--header-height) -
        var(--footer-height)
    );
}

.hero-panel {
    height: auto;
    align-self: stretch;
}

.builder-panel {
    height: auto;
    align-self: stretch;
}

.site-footer {
    min-height: var(--footer-height);
}

/*
    On wide screens the grid row is controlled by the taller side.
    Both panels stretch to the same height, so the hero background
    always continues down to the footer.
*/

@media (min-width: 1181px) {
    .main-grid {
        grid-template-columns:
            minmax(0, 1.55fr)
            minmax(470px, 0.82fr);
        align-items: stretch;
    }

    .hero-panel {
        width: 100%;
        min-height: calc(
            100svh -
            var(--header-height) -
            var(--footer-height)
        );
        height: 100%;
        position: relative;
        top: auto;
        overflow: hidden;
        padding-bottom: 26px;
    }

    .hero-content {
        flex: 0 0 auto;
    }

    .hero-bottom {
        margin-top: auto;
        padding-top: 26px;
    }

    .builder-panel {
        width: 100%;
        min-height: calc(
            100svh -
            var(--header-height) -
            var(--footer-height)
        );
        height: 100%;
        overflow: visible;
    }

    .builder-form,
    .form-step {
        min-height: 0;
        height: auto;
    }

    .form-step[hidden] {
        display: none;
    }
}

@media (max-width: 1180px) {
    .main-grid,
    .hero-panel,
    .builder-panel {
        min-height: 0;
        height: auto;
    }

    .hero-panel {
        overflow: hidden;
    }
}

/* Locked premium layout */

:root {
    --builder-stage-height: 560px;
}

/* Remove legacy hero button styling because the button no longer exists. */
.hero-scroll-button {
    display: none !important;
}

.premium-callout {
    width: min(780px, 100%);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
    padding: 16px 18px;
    color: var(--white);
    background:
        linear-gradient(
            120deg,
            rgba(7, 9, 11, 0.98),
            rgba(22, 27, 32, 0.95)
        );
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 44px rgba(7, 9, 11, 0.22);
    backdrop-filter: blur(12px);
}

.premium-callout__mark {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
    color: var(--white);
    background: var(--orange);
    font-family: var(--display);
    font-size: 1rem;
    letter-spacing: -0.05em;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(255, 75, 31, 0.12);
}

.premium-callout__copy {
    min-width: 0;
}

.premium-callout__copy span {
    display: block;
    margin-bottom: 4px;
    color: var(--orange);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.premium-callout__copy strong {
    display: block;
    font-family: var(--display);
    font-size: clamp(1rem, 1.35vw, 1.3rem);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.premium-callout__copy p {
    max-width: 560px;
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.73rem;
    line-height: 1.45;
}

.premium-callout__points {
    display: grid;
    gap: 7px;
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.premium-callout__points span {
    position: relative;
    padding-left: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.67rem;
    font-weight: 700;
    white-space: nowrap;
}

.premium-callout__points span::before {
    position: absolute;
    left: 0;
    content: "✓";
    color: var(--orange);
}

/*
    The builder stage always reserves the height of the largest step
    (the details section), so changing steps cannot resize the page.
*/
.builder-form {
    min-height: var(--builder-stage-height);
}

.form-step {
    min-height: var(--builder-stage-height);
}

.form-step:not([hidden]) {
    display: flex;
    flex-direction: column;
}

.form-step[hidden] {
    display: none !important;
}

.form-step .next-button,
.form-step .button-row {
    margin-top: auto;
}

/*
    The left background is anchored to a fixed position and the panel
    stretches with the full grid row. It no longer shifts when the
    right-hand step changes.
*/
.hero-panel {
    background-position: center center;
    background-attachment: scroll;
}

@media (min-width: 1181px) {
    .main-grid {
        align-items: stretch;
    }

    .hero-panel,
    .builder-panel {
        height: auto;
        min-height: calc(
            100svh -
            var(--header-height) -
            var(--footer-height)
        );
        align-self: stretch;
    }

    .hero-panel {
        position: relative;
        top: auto;
        overflow: hidden;
        background-position: 54% center;
        background-size: cover;
    }

    .hero-content {
        flex: 0 0 auto;
    }

    .premium-callout {
        flex: 0 0 auto;
    }

    .hero-bottom {
        margin-top: auto;
        padding-top: 22px;
    }

    .builder-panel {
        display: flex;
        flex-direction: column;
    }

    .builder-form {
        min-height: var(--builder-stage-height);
        height: var(--builder-stage-height);
        overflow: hidden;
    }

    .form-step {
        min-height: var(--builder-stage-height);
        height: var(--builder-stage-height);
        overflow: hidden;
    }

    .builder-reassurance {
        margin-top: 12px;
    }
}

@media (max-width: 1180px) {
    :root {
        --builder-stage-height: auto;
    }

    .builder-form,
    .form-step {
        min-height: 0;
        height: auto;
        overflow: visible;
    }

    .premium-callout {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .premium-callout__points {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 12px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-left: 0;
    }
}

@media (max-width: 640px) {
    .premium-callout {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .premium-callout__points {
        grid-template-columns: 1fr;
    }
}

/* Van reassurance summary */

.van-check-card {
    margin-top: 16px;
    padding: 16px;
    background:
        linear-gradient(
            135deg,
            #f7fafb 0%,
            #edf4f7 100%
        );
    border: 1px solid var(--grey-200);
    box-shadow: inset 4px 0 0 var(--orange);
}

.van-check-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.van-check-card__eyebrow {
    display: block;
    margin-bottom: 4px;
    color: var(--orange);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.van-check-card strong {
    display: block;
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
}

.van-check-card__status {
    width: 36px;
    height: 36px;
    display: inline-flex;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    font-weight: 800;
}

.van-check-card > p {
    margin: 10px 0 0;
    color: var(--grey-500);
    font-size: 0.74rem;
    line-height: 1.45;
}

.van-check-card__checks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.van-check-card__checks span {
    position: relative;
    padding-left: 16px;
    color: var(--grey-700);
    font-size: 0.66rem;
    font-weight: 700;
    line-height: 1.35;
}

.van-check-card__checks span::before {
    position: absolute;
    left: 0;
    content: "✓";
    color: var(--orange);
    font-weight: 800;
}

@media (max-width: 640px) {
    .van-check-card__checks {
        grid-template-columns: 1fr;
    }
}

/* Hero intro contrast fix */

.hero-intro {
    width: min(690px, 100%);
    max-width: 690px;
    margin-top: 22px;
    padding: 15px 18px 16px;
    color: var(--black);
    background: rgba(255, 255, 255, 0.9);
    border-left: 5px solid var(--orange);
    box-shadow: 0 16px 34px rgba(7, 9, 11, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: clamp(1rem, 1.12vw, 1.12rem);
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .hero-intro {
        padding: 13px 14px;
        font-size: 1rem;
    }
}

/* Unified agency proof card */

.hero-intro,
.proof-strip,
.premium-callout,
.hero-scroll-button {
    display: none !important;
}

.agency-proof-card {
    width: min(820px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.9fr);
    margin-top: 24px;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            rgba(7, 9, 11, 0.98),
            rgba(26, 31, 36, 0.96)
        );
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 48px rgba(7, 9, 11, 0.24);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.agency-proof-card__intro {
    padding: 22px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.agency-proof-card__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--orange);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.agency-proof-card h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(1.3rem, 1.8vw, 1.8rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.agency-proof-card__intro p {
    max-width: 560px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.82rem;
    line-height: 1.5;
}

.agency-proof-card__benefits {
    display: grid;
    grid-template-columns: 1fr;
}

.agency-proof-card__benefits > div {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agency-proof-card__benefits > div:last-child {
    border-bottom: 0;
}

.agency-proof-card__benefits strong,
.agency-proof-card__benefits span {
    display: block;
}

.agency-proof-card__benefits strong {
    font-family: var(--display);
    font-size: 0.82rem;
    font-weight: 400;
    text-transform: uppercase;
}

.agency-proof-card__benefits span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
    line-height: 1.35;
}

.agency-proof-card__trust {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: rgba(255, 255, 255, 0.055);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.agency-proof-card__trust span {
    position: relative;
    padding: 11px 16px 11px 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.66rem;
    font-weight: 700;
}

.agency-proof-card__trust span::before {
    position: absolute;
    left: 16px;
    content: "✓";
    color: var(--orange);
    font-weight: 800;
}

@media (max-width: 760px) {
    .agency-proof-card {
        grid-template-columns: 1fr;
    }

    .agency-proof-card__intro {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .agency-proof-card__trust {
        grid-template-columns: 1fr;
    }

    .agency-proof-card__trust span {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .agency-proof-card__trust span:last-child {
        border-bottom: 0;
    }
}

/* Centre the agency proof card within the hero gap */

@media (min-width: 1181px) {
    .hero-panel {
        display: grid;
        grid-template-rows: auto minmax(24px, 1fr) auto;
        align-content: stretch;
    }

    .hero-content {
        width: min(840px, 92%);
        display: flex;
        flex-direction: column;
    }

    .agency-proof-card {
        width: min(780px, 92%);
        margin:
            clamp(28px, 4vh, 54px)
            auto
            clamp(28px, 4vh, 54px);
        align-self: center;
    }

    .hero-bottom {
        width: 100%;
        margin-top: 0;
        padding-top: 0;
        align-self: end;
    }
}

@media (max-width: 1180px) {
    .agency-proof-card {
        margin-right: auto;
        margin-left: auto;
    }
}

/* Correct vertical centring in the actual gap */

@media (min-width: 1181px) {
    .hero-panel {
        display: grid;
        grid-template-rows:
            auto
            minmax(120px, 1fr)
            auto;
        align-items: stretch;
    }

    .hero-content {
        width: min(840px, 92%);
        display: block;
    }

    .agency-proof-card {
        width: min(780px, 92%);
        margin: 0 auto;
        align-self: center;
        justify-self: center;
    }

    .hero-bottom {
        width: 100%;
        margin-top: 0;
        padding-top: 0;
        align-self: end;
    }
}

@media (max-width: 1180px) {
    .agency-proof-card {
        margin:
            clamp(24px, 4vw, 40px)
            auto;
    }
}

/* Align the agency card with the lower card row */

@media (min-width: 1181px) {
    .agency-proof-card {
        width: 100%;
        max-width: none;
        margin-right: 0;
        margin-left: 0;
        justify-self: stretch;
        align-self: center;
    }
}

@media (max-width: 1180px) {
    .agency-proof-card {
        width: 100%;
        max-width: none;
        margin-right: 0;
        margin-left: 0;
    }
}

/* Large image logo in the navigation */

.site-logo--image {
    width: clamp(220px, 18vw, 310px);
    height: 58px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.site-logo--image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: left center;
}

@media (max-width: 760px) {
    .site-logo--image {
        width: clamp(175px, 48vw, 230px);
        height: 50px;
    }
}

@media (max-width: 420px) {
    .site-logo--image {
        width: 170px;
        height: 46px;
    }
}

/* Force Logo.png in the header, including older HTML markup */

.site-header > .site-logo {
    width: clamp(250px, 20vw, 340px);
    height: 60px;
    display: block;
    flex: 0 0 auto;
    background:
        #ffffff
        url("images/Logo.png")
        left center / contain
        no-repeat;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
}

.site-header > .site-logo > span,
.site-header > .site-logo > strong {
    display: none !important;
}

.site-header > .site-logo > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: left center;
}

@media (max-width: 760px) {
    .site-header > .site-logo {
        width: clamp(190px, 50vw, 250px);
        height: 52px;
    }
}

@media (max-width: 420px) {
    .site-header > .site-logo {
        width: 180px;
        height: 46px;
    }
}

/* Large navbar logo override */

:root {
    --header-height: 96px;
}

.site-header {
    min-height: var(--header-height);
    padding-top: 10px;
    padding-bottom: 10px;
}

.site-header > .site-logo {
    width: clamp(340px, 27vw, 470px) !important;
    height: 76px !important;
    flex: 0 0 clamp(340px, 27vw, 470px);
    background-size: contain !important;
}

.site-header > .site-logo > img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: left center !important;
}

@media (max-width: 980px) {
    :root {
        --header-height: 86px;
    }

    .site-header > .site-logo {
        width: clamp(280px, 38vw, 380px) !important;
        height: 68px !important;
        flex-basis: clamp(280px, 38vw, 380px);
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 78px;
    }

    .site-header > .site-logo {
        width: clamp(230px, 58vw, 310px) !important;
        height: 60px !important;
        flex-basis: clamp(230px, 58vw, 310px);
    }
}

@media (max-width: 420px) {
    .site-header > .site-logo {
        width: 220px !important;
        height: 54px !important;
        flex-basis: 220px;
    }
}

/* =========================================================
   HOW IT WORKS PAGE
   All page styling lives here — no inline CSS in the HTML.
   ========================================================= */

.how-it-works-page .how-page {
    box-sizing: border-box;
    height: calc(
        100svh -
        var(--header-height) -
        var(--footer-height)
    );
    min-height: calc(
        100svh -
        var(--header-height) -
        var(--footer-height)
    );
    overflow: hidden;
    padding: 14px clamp(18px, 2.2vw, 34px);
    background: #eef5f8;
}

.how-it-works-page .how-page__grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 auto;
}

.how-it-works-page .how-column {
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-rows: 126px repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.how-it-works-page .how-heading-card {
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 17px 21px;
    overflow: hidden;
    color: var(--white);
    background: var(--black);
    border-top: 5px solid var(--orange);
}

.how-it-works-page .how-heading-card p {
    margin: 0;
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.how-it-works-page .how-heading-card h1,
.how-it-works-page .how-heading-card h2 {
    margin: 6px 0 0;
    font-family: var(--display);
    font-size: clamp(2.35rem, 2.9vw, 3.3rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.how-it-works-page .how-heading-card span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
    line-height: 1.42;
}

.how-it-works-page .process-card {
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 17px;
    align-content: center;
    padding: 17px 19px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-left: 5px solid var(--orange);
    box-shadow: 0 12px 28px rgba(7, 9, 11, 0.07);
}

.how-it-works-page .process-card--dark {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
    border-left-color: var(--orange);
}

.how-it-works-page .process-card--warm {
    background: #fff3ee;
    border-color: #ffd5c8;
}

.how-it-works-page .process-card__number {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    font-family: var(--display);
    font-size: 0.94rem;
}

.how-it-works-page .process-card small,
.how-it-works-page .process-card strong {
    display: block;
}

.how-it-works-page .process-card small {
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.how-it-works-page .process-card strong {
    margin-top: 4px;
    font-family: var(--display);
    font-size: clamp(1.22rem, 1.42vw, 1.52rem);
    font-weight: 400;
    line-height: 1.04;
    text-transform: uppercase;
}

.how-it-works-page .process-card p {
    margin: 7px 0 0;
    color: var(--grey-500);
    font-size: 0.9rem;
    line-height: 1.48;
}

.how-it-works-page .process-card--dark p {
    color: rgba(255, 255, 255, 0.75);
}

.how-it-works-page .process-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 14px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.how-it-works-page .process-card li {
    position: relative;
    padding-left: 17px;
    color: var(--grey-700);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.38;
}

.how-it-works-page .process-card--dark li {
    color: rgba(255, 255, 255, 0.82);
}

.how-it-works-page .process-card li::before {
    position: absolute;
    left: 0;
    content: "✓";
    color: var(--orange);
}

@media (min-width: 1181px) and (max-height: 850px) {
    .how-it-works-page .how-page {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .how-it-works-page .how-column {
        grid-template-rows: 108px repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .how-it-works-page .how-heading-card {
        padding: 12px 18px;
    }

    .how-it-works-page .how-heading-card p {
        font-size: 0.72rem;
    }

    .how-it-works-page .how-heading-card h1,
    .how-it-works-page .how-heading-card h2 {
        font-size: clamp(2rem, 2.5vw, 2.8rem);
    }

    .how-it-works-page .how-heading-card span {
        font-size: 0.82rem;
    }

    .how-it-works-page .process-card {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
        padding: 12px 15px;
    }

    .how-it-works-page .process-card__number {
        width: 48px;
        height: 48px;
        font-size: 0.8rem;
    }

    .how-it-works-page .process-card small {
        font-size: 0.7rem;
    }

    .how-it-works-page .process-card strong {
        font-size: 1.08rem;
    }

    .how-it-works-page .process-card p {
        font-size: 0.76rem;
    }

    .how-it-works-page .process-card li {
        font-size: 0.68rem;
    }
}

@media (max-width: 1180px) {
    .how-it-works-page .how-page {
        height: auto;
        min-height: 0;
        overflow: visible;
        padding: 24px 20px;
    }

    .how-it-works-page .how-page__grid {
        height: auto;
        grid-template-columns: 1fr;
    }

    .how-it-works-page .how-column {
        grid-template-rows: auto;
    }

    .how-it-works-page .process-card {
        height: auto;
        min-height: 220px;
    }

    .how-it-works-page .how-heading-card p,
    .how-it-works-page .process-card small {
        font-size: 0.84rem;
    }

    .how-it-works-page .how-heading-card span,
    .how-it-works-page .process-card p {
        font-size: 1rem;
    }

    .how-it-works-page .process-card strong {
        font-size: 1.45rem;
    }

    .how-it-works-page .process-card li {
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .how-it-works-page .how-page {
        padding-right: 15px;
        padding-left: 15px;
    }

    .how-it-works-page .process-card {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 13px;
        min-height: 0;
        padding: 18px 16px;
    }

    .how-it-works-page .process-card__number {
        width: 48px;
        height: 48px;
    }

    .how-it-works-page .process-card ul {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   HOW IT WORKS — READABLE 16PX BODY COPY
   ========================================================= */

.how-it-works-page .how-page {
    overflow: auto;
}

.how-it-works-page .how-page__grid {
    align-items: stretch;
}

.how-it-works-page .how-column {
    grid-template-rows:
        auto
        repeat(3, minmax(0, auto));
}

.how-it-works-page .how-heading-card {
    min-height: 150px;
    padding: 22px 24px;
}

.how-it-works-page .how-heading-card p {
    font-size: 0.875rem;
}

.how-it-works-page .how-heading-card h1,
.how-it-works-page .how-heading-card h2 {
    font-size: clamp(2.5rem, 3vw, 3.6rem);
    line-height: 0.92;
}

.how-it-works-page .how-heading-card span {
    font-size: 1rem;
    line-height: 1.5;
}

.how-it-works-page .process-card {
    min-height: 235px;
    height: auto;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-content: center;
    padding: 24px 26px;
}

.how-it-works-page .process-card__number {
    width: 58px;
    height: 58px;
    font-size: 1rem;
}

.how-it-works-page .process-card small {
    font-size: 0.875rem;
}

.how-it-works-page .process-card strong {
    margin-top: 5px;
    font-size: clamp(1.35rem, 1.5vw, 1.7rem);
    line-height: 1.05;
}

.how-it-works-page .process-card p {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.55;
}

.how-it-works-page .process-card ul {
    gap: 9px 18px;
    margin-top: 14px;
}

.how-it-works-page .process-card li {
    font-size: 1rem;
    line-height: 1.45;
}

/* Keep cards equal within each row while allowing the page to grow */
@media (min-width: 1181px) {
    .how-it-works-page .how-page {
        height: auto;
        min-height: calc(
            100svh -
            var(--header-height) -
            var(--footer-height)
        );
        overflow: visible;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .how-it-works-page .how-page__grid {
        height: auto;
    }

    .how-it-works-page .how-column {
        grid-template-rows:
            150px
            repeat(3, minmax(235px, auto));
    }
}

@media (max-width: 1180px) {
    .how-it-works-page .how-heading-card span,
    .how-it-works-page .process-card p,
    .how-it-works-page .process-card li {
        font-size: 1rem;
    }

    .how-it-works-page .process-card strong {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .how-it-works-page .process-card {
        grid-template-columns: 52px minmax(0, 1fr);
        min-height: 0;
        padding: 20px 18px;
    }

    .how-it-works-page .process-card__number {
        width: 52px;
        height: 52px;
    }

    .how-it-works-page .process-card ul {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   INDEX PAGE — READABLE 16PX BODY COPY
   ========================================================= */

.index-page {
    font-size: 16px;
}

.index-page .hero-copy,
.index-page .agency-proof-card__intro p,
.index-page .feature-copy,
.index-page .simple-list li,
.index-page .tick-list li,
.index-page .builder-reassurance,
.index-page .step-heading > span,
.index-page .van-check-card p,
.index-page .coverage-help,
.index-page .coverage-summary__copy p,
.index-page .upload-zone small,
.index-page .form-message,
.index-page .summary-box small {
    font-size: 1rem;
    line-height: 1.55;
}

.index-page .agency-proof-card__benefits span,
.index-page .agency-proof-card__trust span,
.index-page .feature-card a,
.index-page .trust-line,
.index-page .progress-step,
.index-page .form-field label,
.index-page .coverage-select-wrap label,
.index-page .van-check-card__checks span,
.index-page .upload-feedback,
.index-page .upload-preview__size {
    font-size: 0.9rem;
    line-height: 1.4;
}

.index-page .eyebrow,
.index-page .builder-kicker,
.index-page .card-kicker,
.index-page .step-heading > p,
.index-page .agency-proof-card__eyebrow,
.index-page .van-check-card__eyebrow {
    font-size: 0.875rem;
}

.index-page .agency-proof-card h2 {
    font-size: clamp(1.65rem, 2vw, 2.15rem);
    line-height: 1;
}

.index-page .agency-proof-card__benefits strong {
    font-size: 1.05rem;
}

.index-page .feature-card h2 {
    font-size: clamp(1.5rem, 1.8vw, 2rem);
    line-height: 1;
}

.index-page .builder-top h2 {
    font-size: clamp(2.7rem, 3.7vw, 4.3rem);
}

.index-page .step-heading h3 {
    font-size: clamp(2rem, 2.7vw, 3rem);
    line-height: 0.96;
}

.index-page .form-field input,
.index-page .form-field select,
.index-page .form-field textarea,
.index-page .coverage-select-wrap select {
    min-height: 58px;
    font-size: 1rem;
}

.index-page .form-field textarea {
    min-height: 120px;
}

.index-page .van-check-card strong,
.index-page .coverage-summary__copy strong {
    font-size: 1.15rem;
}

.index-page .coverage-summary__copy span,
.index-page .summary-box span {
    font-size: 0.875rem;
}

.index-page .coverage-summary b,
.index-page .summary-box strong {
    font-size: 1.75rem;
}

.index-page .agency-next,
.index-page .primary-button,
.index-page .secondary-button {
    min-height: 60px;
    font-size: 1rem;
}

.index-page .agency-next__copy small {
    font-size: 0.75rem;
}

.index-page .upload-zone strong {
    font-size: 1.1rem;
}

.index-page .upload-zone b {
    font-size: 0.95rem;
}

/* Let the larger type create the space it needs instead of shrinking. */
@media (min-width: 1181px) {
    .index-page .main-grid {
        min-height: calc(
            100svh -
            var(--header-height) -
            var(--footer-height)
        );
        height: auto;
        align-items: stretch;
    }

    .index-page .hero-panel,
    .index-page .builder-panel {
        min-height: calc(
            100svh -
            var(--header-height) -
            var(--footer-height)
        );
        height: auto;
        max-height: none;
    }

    .index-page .hero-panel {
        grid-template-rows:
            auto
            minmax(34px, 1fr)
            auto;
    }

    .index-page .agency-proof-card {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .index-page .agency-proof-card__intro {
        padding: 28px 30px;
    }

    .index-page .agency-proof-card__benefits > div {
        padding: 18px 22px;
    }

    .index-page .agency-proof-card__trust span {
        padding: 14px 18px;
    }

    .index-page .hero-bottom {
        align-items: stretch;
    }

    .index-page .feature-card {
        min-height: 240px;
        padding: 26px;
    }

    .index-page .builder-panel {
        overflow: visible;
    }

    .index-page .builder-form,
    .index-page .form-step {
        min-height: 680px;
        height: auto;
    }

    .index-page .form-step {
        overflow: visible;
    }

    .index-page .field-grid {
        gap: 18px;
    }

    .index-page .van-check-card,
    .index-page .coverage-summary,
    .index-page .upload-zone,
    .index-page .summary-box {
        padding: 20px;
    }
}

@media (max-width: 1180px) {
    .index-page .hero-copy,
    .index-page .agency-proof-card__intro p,
    .index-page .feature-copy,
    .index-page .simple-list li,
    .index-page .tick-list li,
    .index-page .step-heading > span,
    .index-page .van-check-card p,
    .index-page .coverage-help,
    .index-page .coverage-summary__copy p,
    .index-page .builder-reassurance {
        font-size: 1rem;
    }

    .index-page .builder-form,
    .index-page .form-step {
        min-height: 0;
        height: auto;
    }
}

@media (max-width: 640px) {
    .index-page .feature-card {
        min-height: 0;
    }

    .index-page .form-field input,
    .index-page .form-field select,
    .index-page .form-field textarea,
    .index-page .coverage-select-wrap select {
        font-size: 16px;
    }
}

/* =========================================================
   INDEX PAGE — FINAL AGENCY POLISH
   ========================================================= */

.index-page {
    --agency-shadow:
        0 20px 50px rgba(7, 9, 11, 0.16);
    --agency-border:
        1px solid rgba(7, 9, 11, 0.12);
}

/* Pricing header: prevent the price escaping the right panel */
.index-page .builder-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(18px, 2vw, 28px);
    align-items: end;
}

.index-page .builder-top > div:first-child {
    min-width: 0;
}

.index-page .builder-top h2 {
    max-width: 100%;
    font-size: clamp(2.55rem, 3.15vw, 3.75rem);
    line-height: 0.88;
    text-wrap: balance;
}

.index-page .from-price {
    min-width: 138px;
    align-self: end;
    padding: 12px 0 3px 18px;
    border-left: 1px solid var(--grey-200);
    text-align: right;
}

.index-page .from-price span {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.index-page .from-price strong {
    display: block;
    margin-top: 4px;
    font-size: clamp(2rem, 2.5vw, 2.75rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
    white-space: nowrap;
}

/* Premium hero proof card */
.index-page .agency-proof-card {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-top: 5px solid var(--orange);
    box-shadow:
        0 24px 60px rgba(7, 9, 11, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.index-page .agency-proof-card__intro {
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.025),
            transparent 70%
        );
}

.index-page .agency-proof-card__benefits > div {
    position: relative;
    padding-left: 26px;
}

.index-page .agency-proof-card__benefits > div::before {
    position: absolute;
    top: 50%;
    left: 12px;
    width: 4px;
    height: 28px;
    content: "";
    background: var(--orange);
    transform: translateY(-50%);
}

.index-page .agency-proof-card__trust {
    background: rgba(255, 255, 255, 0.075);
}

.index-page .agency-proof-card__trust span {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding-left: 40px;
}

.index-page .agency-proof-card__trust span::before {
    left: 18px;
}

/* Lower cards: equal, sharper and more premium */
.index-page .hero-bottom {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.index-page .feature-card {
    position: relative;
    min-height: 230px;
    overflow: hidden;
    border: var(--agency-border);
    border-top: 5px solid var(--orange);
    box-shadow: var(--agency-shadow);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.index-page .feature-card::after {
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 110px;
    height: 110px;
    content: "";
    border: 1px solid rgba(255, 77, 37, 0.18);
    border-radius: 50%;
}

.index-page .feature-card:hover {
    box-shadow: 0 28px 64px rgba(7, 9, 11, 0.22);
    transform: translateY(-3px);
}

.index-page .feature-card--light {
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(246, 249, 251, 0.98)
        );
}

.index-page .feature-card--dark {
    background:
        linear-gradient(
            145deg,
            #07090b,
            #171b1f
        );
    border-color: rgba(255, 255, 255, 0.08);
}

.index-page .feature-card--accent {
    background:
        linear-gradient(
            145deg,
            #fff8f5,
            #ffede6
        );
    border-color: #ffd2c5;
}

.index-page .card-kicker {
    letter-spacing: 0.12em;
}

.index-page .simple-list li,
.index-page .tick-list li {
    min-height: 28px;
    align-items: center;
}

/* Right panel form cards */
.index-page .trust-line {
    margin-top: 18px;
    padding: 14px 0;
    font-size: 0.95rem;
}

.index-page .progress {
    overflow: hidden;
    margin-top: 16px;
    border: 1px solid var(--grey-200);
    box-shadow: 0 10px 24px rgba(7, 9, 11, 0.05);
}

.index-page .progress-step {
    min-height: 58px;
    border-right: 1px solid var(--grey-200);
    background: #fbfcfd;
}

.index-page .progress-step:last-child {
    border-right: 0;
}

.index-page .progress-step.is-active {
    color: var(--white);
    background: var(--black);
}

.index-page .progress-step.is-complete {
    background: #f3f7f9;
}

.index-page .step-heading {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--grey-200);
}

.index-page .field-grid {
    margin-top: 20px;
}

.index-page .form-field input,
.index-page .form-field select,
.index-page .form-field textarea,
.index-page .coverage-select-wrap select {
    border: 1px solid #cfd9df;
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(7, 9, 11, 0.02);
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.index-page .form-field input:focus,
.index-page .form-field select:focus,
.index-page .form-field textarea:focus,
.index-page .coverage-select-wrap select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 77, 37, 0.12);
    outline: none;
}

.index-page .van-check-card,
.index-page .coverage-summary,
.index-page .summary-box {
    border: 1px solid #d6e0e5;
    border-left: 5px solid var(--orange);
    background:
        linear-gradient(
            135deg,
            #f5fafc,
            #edf5f8
        );
    box-shadow: 0 14px 34px rgba(7, 9, 11, 0.07);
}

.index-page .van-check-card__status {
    box-shadow: 0 10px 24px rgba(255, 77, 37, 0.3);
}

/* Primary CTA */
.index-page .agency-next,
.index-page .primary-button {
    border: 0;
    background:
        linear-gradient(
            135deg,
            #ff4d25,
            #ff3b16
        );
    box-shadow: 0 16px 34px rgba(255, 77, 37, 0.24);
    transition:
        transform 160ms ease,
        box-shadow 160ms ease;
}

.index-page .agency-next:hover,
.index-page .primary-button:hover {
    box-shadow: 0 22px 44px rgba(255, 77, 37, 0.32);
    transform: translateY(-2px);
}

.index-page .agency-next__icon {
    color: var(--black);
    background: var(--white);
    box-shadow: 0 8px 20px rgba(7, 9, 11, 0.12);
}

/* Keep the layout tidy at the screenshot width */
@media (min-width: 1181px) {
    .index-page .main-grid {
        grid-template-columns:
            minmax(0, 1.65fr)
            minmax(430px, 0.9fr);
    }

    .index-page .builder-panel {
        padding:
            clamp(28px, 2.8vw, 42px)
            clamp(24px, 2.6vw, 38px);
    }
}

@media (max-width: 1380px) and (min-width: 1181px) {
    .index-page .builder-top h2 {
        font-size: clamp(2.25rem, 2.9vw, 3.2rem);
    }

    .index-page .from-price {
        min-width: 124px;
        padding-left: 14px;
    }

    .index-page .from-price strong {
        font-size: clamp(1.8rem, 2.2vw, 2.35rem);
    }

    .index-page .feature-card {
        padding: 22px;
    }
}

@media (max-width: 1180px) {
    .index-page .builder-top {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .index-page .from-price {
        min-width: 120px;
    }
}

@media (max-width: 640px) {
    .index-page .builder-top {
        grid-template-columns: 1fr;
    }

    .index-page .from-price {
        min-width: 0;
        padding: 14px 0 0;
        border-top: 1px solid var(--grey-200);
        border-left: 0;
        text-align: left;
    }

    .index-page .hero-bottom {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   PROGRESS STEPS — CLEAN AGENCY TREATMENT
   ========================================================= */

.index-page .progress-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 14px;
    border-radius: 0;
}

.index-page .progress-step span {
    width: 28px;
    height: 28px;
    display: inline-flex;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--black);
    background: #eef3f6;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
}

.index-page .progress-step.is-active span {
    color: var(--white);
    background: var(--orange);
}

.index-page .progress-step.is-complete span {
    color: var(--white);
    background: var(--orange);
}

.index-page .progress-step.is-active {
    color: var(--white);
    background: var(--black);
}

.index-page .progress-step:not(.is-active) {
    color: var(--grey-700);
    background: #fbfcfd;
}

@media (max-width: 640px) {
    .index-page .progress-step {
        gap: 7px;
        padding: 0 8px;
        font-size: 0.78rem;
    }

    .index-page .progress-step span {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
    }
}

/* =========================================================
   COVERAGE SUMMARY — DARK PREMIUM CARD
   ========================================================= */

.index-page .coverage-summary {
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            #07090b,
            #171b1f
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 5px solid var(--orange);
    box-shadow: 0 18px 42px rgba(7, 9, 11, 0.2);
}

.index-page .coverage-summary__image {
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.index-page .coverage-summary__copy span {
    color: var(--orange);
}

.index-page .coverage-summary__copy strong {
    color: var(--white);
}

.index-page .coverage-summary__copy p {
    color: rgba(255, 255, 255, 0.72);
}

.index-page .coverage-summary b {
    color: var(--orange);
}

.index-page .coverage-summary::after {
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 120px;
    height: 120px;
    content: "";
    border: 1px solid rgba(255, 77, 37, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.index-page .coverage-summary {
    position: relative;
    overflow: hidden;
}

/* =========================================================
   PROGRESS NAV — CLEAN AGENCY REDESIGN
   ========================================================= */

.index-page .progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    margin-top: 18px;
    overflow: visible;
    border: 1px solid #d8e0e5;
    border-radius: 16px;
    background: linear-gradient(180deg, #f5f8fa 0%, #eef3f6 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 12px 28px rgba(7, 9, 11, 0.06);
}

.index-page .progress-step {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 60px;
    padding: 0 14px;
    border: 1px solid #d6dde2;
    border-right: 1px solid #d6dde2;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 6px 14px rgba(7, 9, 11, 0.04);
    color: #22313f;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease;
}

.index-page .progress-step:hover {
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 10px 20px rgba(7, 9, 11, 0.07);
}

.index-page .progress-step span {
    width: 32px;
    height: 32px;
    display: inline-flex;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf2f5;
    color: var(--black);
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.index-page .progress-step.is-active {
    border-color: rgba(7, 9, 11, 0.9);
    background: linear-gradient(145deg, #07090b 0%, #171b1f 100%);
    box-shadow:
        0 14px 28px rgba(7, 9, 11, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.index-page .progress-step.is-active span {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 16px rgba(255, 77, 37, 0.25);
}

.index-page .progress-step.is-complete {
    border-color: #d6dde2;
    background: #ffffff;
    color: #22313f;
}

.index-page .progress-step.is-complete span {
    background: var(--orange);
    color: var(--white);
}

@media (max-width: 900px) {
    .index-page .progress {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .index-page .progress {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 6px;
        border-radius: 14px;
    }

    .index-page .progress-step {
        justify-content: flex-start;
        min-height: 54px;
        padding: 0 12px;
        font-size: 0.88rem;
    }

    .index-page .progress-step span {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        font-size: 0.82rem;
    }
}

/* =========================================================
   PROGRESS NAV — ORIGINAL CLEAN SEGMENTED DESIGN
   ========================================================= */

.index-page .progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 0;
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid #d6dee3;
    border-radius: 0;
    background: var(--white);
    box-shadow: none;
}

.index-page .progress-step {
    min-width: 0;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 0;
    border-right: 1px solid #d6dee3;
    border-radius: 0;
    color: #24313c;
    background: var(--white);
    box-shadow: none;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    transition:
        color 160ms ease,
        background-color 160ms ease;
}

.index-page .progress-step:last-child {
    border-right: 0;
}

.index-page .progress-step span {
    display: none;
}

.index-page .progress-step:hover {
    color: var(--orange);
    background: #f7fafb;
    box-shadow: none;
    transform: none;
}

.index-page .progress-step.is-active {
    color: var(--white);
    background: var(--black);
    box-shadow: none;
}

.index-page .progress-step.is-complete {
    color: #24313c;
    background: #f5f8fa;
}

@media (max-width: 640px) {
    .index-page .progress {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .index-page .progress-step {
        min-height: 54px;
        border-bottom: 1px solid #d6dee3;
        font-size: 0.9rem;
    }

    .index-page .progress-step:nth-child(2) {
        border-right: 0;
    }

    .index-page .progress-step:nth-child(3),
    .index-page .progress-step:nth-child(4) {
        border-bottom: 0;
    }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page { background: #eef5f8; }
.contact-main { min-height: calc(100svh - var(--header-height) - var(--footer-height)); padding: clamp(24px, 3vw, 44px) clamp(24px, 4vw, 60px); }
.contact-layout { width: min(1500px, 100%); display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.8fr); gap: clamp(18px, 2.2vw, 30px); margin: 0 auto; }
.contact-left, .contact-panel { min-width: 0; }
.contact-left { display: flex; flex-direction: column; gap: 18px; }
.contact-intro { padding: clamp(28px, 4vw, 54px); background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(244,249,252,.98)); border: 1px solid var(--grey-200); border-top: 5px solid var(--orange); box-shadow: 0 18px 44px rgba(7,9,11,.09); }
.contact-intro h1 { margin: 18px 0 0; font-family: var(--display); font-size: clamp(3.5rem, 5vw, 6rem); font-weight: 400; line-height: .84; letter-spacing: -.065em; text-transform: uppercase; }
.contact-intro h1 span { display: block; width: max-content; max-width: 100%; }
.contact-intro h1 .outline { color: transparent; -webkit-text-stroke: 2px var(--black); }
.contact-intro h1 .orange { color: var(--orange); }
.contact-intro__copy { max-width: 760px; margin: 22px 0 0; color: var(--grey-700); font-size: 1rem; line-height: 1.65; }
.contact-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.contact-info-card { min-height: 260px; position: relative; overflow: hidden; padding: 24px; background: var(--white); border: 1px solid var(--grey-200); border-top: 5px solid var(--orange); box-shadow: 0 16px 38px rgba(7,9,11,.09); }
.contact-info-card--dark { color: var(--white); background: linear-gradient(145deg, #07090b, #171b1f); border-color: rgba(255,255,255,.08); }
.contact-info-card--warm { background: linear-gradient(145deg, #fff8f5, #ffede6); border-color: #ffd2c5; }
.contact-info-card h2 { margin: 10px 0 0; font-family: var(--display); font-size: clamp(1.4rem, 1.7vw, 1.9rem); font-weight: 400; line-height: .98; text-transform: uppercase; }
.contact-info-card p, .contact-info-card li { font-size: 1rem; line-height: 1.5; }
.contact-info-card p { margin: 16px 0 0; color: var(--grey-500); }
.contact-info-card--dark p { color: rgba(255,255,255,.72); }
.contact-info-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--orange); font-size: .95rem; font-weight: 800; }
.contact-proof-card { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr); gap: 24px; align-items: center; padding: 24px 28px; color: var(--white); background: linear-gradient(135deg, #07090b, #171b1f); border-top: 5px solid var(--orange); box-shadow: 0 18px 44px rgba(7,9,11,.16); }
.contact-proof-card span { color: var(--orange); font-size: .78rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.contact-proof-card h2 { margin: 8px 0 0; font-family: var(--display); font-size: clamp(1.7rem, 2.2vw, 2.5rem); font-weight: 400; line-height: .98; text-transform: uppercase; }
.contact-proof-card p { margin: 12px 0 0; color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.55; }
.contact-proof-card ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.contact-proof-card li { position: relative; padding-left: 22px; color: rgba(255,255,255,.8); font-size: .95rem; font-weight: 700; }
.contact-proof-card li::before { position: absolute; left: 0; content: "✓"; color: var(--orange); }
.contact-panel { align-self: start; padding: clamp(26px, 3vw, 40px) clamp(24px, 2.8vw, 38px); background: var(--white); border: 1px solid var(--grey-200); box-shadow: 0 20px 50px rgba(7,9,11,.1); }
.contact-panel__top { display: grid; grid-template-columns: minmax(0, 1fr) 150px; gap: 20px; align-items: end; padding-bottom: 20px; border-bottom: 1px solid var(--grey-200); }
.contact-panel__top h2 { margin: 8px 0 0; font-family: var(--display); font-size: clamp(2.5rem, 3.2vw, 3.8rem); font-weight: 400; line-height: .9; letter-spacing: -.05em; text-transform: uppercase; }
.contact-panel__badge { padding: 14px; color: var(--white); background: var(--black); border-top: 4px solid var(--orange); font-size: .75rem; font-weight: 700; line-height: 1.4; }
.contact-form { margin-top: 22px; }
.contact-form .field-grid { gap: 18px; }
.contact-form .form-field input, .contact-form .form-field select, .contact-form .form-field textarea { min-height: 58px; font-size: 1rem; }
.contact-form .form-field textarea { min-height: 170px; resize: vertical; }
.contact-form__message { display: none; margin-top: 16px; padding: 14px 16px; font-size: 1rem; line-height: 1.5; }
.contact-form__message.is-visible { display: block; }
.contact-form__message.is-error { color: #8a1c08; background: #fff0eb; border-left: 4px solid var(--orange); }
.contact-form__message.is-success { color: #185c34; background: #edf9f1; border-left: 4px solid #2f9e58; }
.contact-reassurance { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 14px; align-items: center; margin-top: 18px; padding: 16px; background: linear-gradient(135deg, #f5fafc, #edf5f8); border: 1px solid var(--grey-200); border-left: 5px solid var(--orange); }
.contact-reassurance__icon { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; color: var(--white); background: var(--orange); border-radius: 50%; font-family: var(--display); }
.contact-reassurance strong { display: block; font-family: var(--display); font-size: 1rem; font-weight: 400; text-transform: uppercase; }
.contact-reassurance p { margin: 5px 0 0; color: var(--grey-500); font-size: .9rem; line-height: 1.45; }
.contact-submit { width: 100%; margin-top: 18px; }
@media (max-width: 1180px) { .contact-layout { grid-template-columns: 1fr; } .contact-panel { align-self: stretch; } }
@media (max-width: 860px) { .contact-card-grid { grid-template-columns: 1fr; } .contact-info-card { min-height: 0; } .contact-proof-card { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .contact-main { padding-right: 16px; padding-left: 16px; } .contact-panel__top { grid-template-columns: 1fr; } .contact-intro h1 { font-size: clamp(3rem, 15vw, 4.5rem); } }

/* =========================================================
   CONTACT PAGE — ALIGNMENT AND CARD READABILITY FIX
   ========================================================= */

.contact-page .contact-intro {
    overflow: hidden;
}

.contact-page .contact-intro h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 4.35vw, 5.35rem);
    line-height: 0.88;
    letter-spacing: -0.055em;
}

.contact-page .contact-intro h1 span {
    width: auto;
    max-width: 100%;
    overflow-wrap: normal;
    text-wrap: balance;
}

.contact-page .contact-intro__copy {
    width: 100%;
    max-width: 680px;
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.6;
    text-wrap: pretty;
}

.contact-page .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.contact-page .contact-info-card {
    min-height: 290px;
    display: flex;
    flex-direction: column;
    padding: 26px;
}

.contact-page .contact-info-card:last-child {
    grid-column: 1 / -1;
    min-height: 210px;
}

.contact-page .contact-info-card h2 {
    max-width: 100%;
    font-size: clamp(1.55rem, 1.75vw, 2rem);
    line-height: 1;
    text-wrap: balance;
}

.contact-page .contact-info-card p,
.contact-page .contact-info-card li {
    font-size: 1rem;
    line-height: 1.5;
}

.contact-page .contact-info-card .tick-list {
    gap: 14px;
    margin-top: 22px;
}

.contact-page .contact-info-card .tick-list li {
    min-height: 24px;
    display: flex;
    align-items: center;
    padding-left: 28px;
    color: var(--grey-700);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.contact-page .contact-info-card .tick-list li::before {
    top: 50%;
    font-size: 1.15rem;
    transform: translateY(-50%);
}

.contact-page .contact-info-card--dark .tick-list li {
    color: rgba(255, 255, 255, 0.84);
}

.contact-page .contact-info-card a {
    margin-top: auto;
    padding-top: 20px;
    overflow-wrap: anywhere;
}

.contact-page .contact-proof-card {
    align-items: start;
}

@media (max-width: 1380px) and (min-width: 1181px) {
    .contact-page .contact-layout {
        grid-template-columns:
            minmax(0, 1.08fr)
            minmax(430px, 0.92fr);
    }

    .contact-page .contact-intro h1 {
        font-size: clamp(3rem, 4vw, 4.65rem);
    }

    .contact-page .contact-card-grid {
        grid-template-columns: 1fr;
    }

    .contact-page .contact-info-card:last-child {
        grid-column: auto;
    }

    .contact-page .contact-info-card {
        min-height: 0;
    }
}

@media (max-width: 860px) {
    .contact-page .contact-card-grid {
        grid-template-columns: 1fr;
    }

    .contact-page .contact-info-card:last-child {
        grid-column: auto;
    }

    .contact-page .contact-intro h1 {
        font-size: clamp(3rem, 11vw, 4.8rem);
    }
}

@media (max-width: 640px) {
    .contact-page .contact-intro {
        padding: 24px 20px;
    }

    .contact-page .contact-intro h1 {
        font-size: clamp(2.75rem, 14vw, 4rem);
    }

    .contact-page .contact-info-card {
        min-height: 0;
        padding: 22px 20px;
    }
}

/* =========================================================
   WELCOME HOMEPAGE
   ========================================================= */
.home-page{background:#f4f9fc;color:var(--black)}
.home-page main{overflow:hidden}
.welcome-hero{min-height:calc(100svh - var(--header-height));display:grid;grid-template-columns:minmax(0,1.15fr) minmax(420px,.85fr);position:relative;background:linear-gradient(90deg,rgba(244,249,252,.99) 0%,rgba(244,249,252,.92) 38%,rgba(244,249,252,.18) 68%,rgba(244,249,252,0) 100%),url("images/hero.png") 58% center/cover no-repeat;isolation:isolate}
.welcome-hero__copy{display:flex;flex-direction:column;justify-content:center;padding:clamp(44px,6vw,86px) clamp(28px,5vw,76px)}
.welcome-eyebrow{display:flex;align-items:center;gap:12px;margin:0;font-size:.88rem;font-weight:900;letter-spacing:.12em;text-transform:uppercase}.welcome-eyebrow:before{width:38px;height:4px;content:"";background:var(--orange)}
.welcome-hero h1{max-width:950px;margin:24px 0 0;font-family:var(--display);font-size:clamp(4.6rem,7.2vw,8.6rem);font-weight:400;line-height:.82;letter-spacing:-.07em;text-transform:uppercase}.welcome-hero h1 span{display:block;width:max-content;max-width:100%}.welcome-hero h1 .outline{color:transparent;-webkit-text-stroke:2px var(--black)}.welcome-hero h1 .orange{color:var(--orange)}
.welcome-lead{max-width:710px;margin:28px 0 0;font-size:1.16rem;line-height:1.65;color:#34424d}.welcome-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:30px}
.welcome-button{min-height:62px;display:inline-flex;align-items:center;justify-content:center;gap:14px;padding:0 24px;border:1px solid var(--black);font-size:.96rem;font-weight:900;text-transform:uppercase;transition:.16s ease}.welcome-button:hover{transform:translateY(-2px)}.welcome-button--primary{color:#fff;background:var(--orange);border-color:var(--orange);box-shadow:0 18px 38px rgba(255,77,37,.24)}.welcome-button--secondary{color:var(--black);background:rgba(255,255,255,.88)}
.welcome-trust{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));width:min(760px,100%);margin-top:32px;background:rgba(255,255,255,.9);border:1px solid rgba(7,9,11,.1);box-shadow:0 16px 40px rgba(7,9,11,.08)}.welcome-trust div{padding:16px 18px;border-right:1px solid rgba(7,9,11,.1)}.welcome-trust div:last-child{border-right:0}.welcome-trust strong,.welcome-trust span{display:block}.welcome-trust strong{font-family:var(--display);font-size:1.05rem;font-weight:400;text-transform:uppercase}.welcome-trust span{margin-top:4px;color:var(--grey-500);font-size:.9rem;line-height:1.35}
.welcome-hero__panel{align-self:end;margin:0 clamp(28px,4vw,56px) clamp(28px,4vw,54px) 0;padding:24px;color:#fff;background:linear-gradient(145deg,rgba(7,9,11,.97),rgba(25,29,34,.96));border-top:5px solid var(--orange);box-shadow:0 24px 54px rgba(7,9,11,.28)}.welcome-hero__panel p{margin:0;color:var(--orange);font-size:.78rem;font-weight:900;letter-spacing:.11em;text-transform:uppercase}.welcome-hero__panel h2{margin:8px 0 0;font-family:var(--display);font-size:clamp(2rem,2.7vw,3rem);font-weight:400;line-height:.94;text-transform:uppercase}.welcome-hero__panel ul,.welcome-proof ul{display:grid;gap:12px;margin:20px 0 0;padding:0;list-style:none}.welcome-hero__panel li,.welcome-proof li{position:relative;padding-left:24px;font-size:1rem;line-height:1.45}.welcome-hero__panel li{color:rgba(255,255,255,.76)}.welcome-hero__panel li:before,.welcome-proof li:before{position:absolute;left:0;content:"✓";color:var(--orange);font-weight:900}
.welcome-section{padding:clamp(66px,8vw,118px) clamp(24px,5vw,76px)}.welcome-section--dark{color:#fff;background:var(--black)}.welcome-section__head{max-width:940px}.welcome-kicker{margin:0;color:var(--orange);font-size:.82rem;font-weight:900;letter-spacing:.11em;text-transform:uppercase}.welcome-section h2{margin:12px 0 0;font-family:var(--display);font-size:clamp(3rem,5vw,6rem);font-weight:400;line-height:.88;letter-spacing:-.055em;text-transform:uppercase}.welcome-section__head>p:last-child{max-width:780px;margin:18px 0 0;font-size:1.05rem;line-height:1.65;color:var(--grey-500)}.welcome-section--dark .welcome-section__head>p:last-child{color:rgba(255,255,255,.65)}
.welcome-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-top:38px}.welcome-card{min-height:300px;padding:30px;background:#fff;border:1px solid var(--grey-200);border-top:5px solid var(--orange);box-shadow:0 18px 44px rgba(7,9,11,.09)}.welcome-card--dark{color:#fff;background:linear-gradient(145deg,#07090b,#171b1f);border-color:rgba(255,255,255,.08)}.welcome-card--warm{background:linear-gradient(145deg,#fff9f6,#ffede6);border-color:#ffd2c5}.welcome-card>span{width:52px;height:52px;display:inline-flex;align-items:center;justify-content:center;color:#fff;background:var(--orange);border-radius:50%;font-family:var(--display);font-size:.86rem}.welcome-card h3,.welcome-proof h3{margin:22px 0 0;font-family:var(--display);font-size:clamp(1.7rem,2.1vw,2.35rem);font-weight:400;line-height:.98;text-transform:uppercase}.welcome-card p,.welcome-proof p{margin:16px 0 0;color:var(--grey-500);font-size:1rem;line-height:1.6}.welcome-card--dark p,.welcome-proof--dark p{color:rgba(255,255,255,.68)}
.welcome-proof-grid{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);gap:22px;margin-top:42px}.welcome-proof{padding:clamp(28px,3vw,44px);border-top:5px solid var(--orange)}.welcome-proof--dark{color:#fff;background:linear-gradient(145deg,#07090b,#171b1f)}.welcome-proof--light{background:linear-gradient(145deg,#fff8f5,#ffede6);border:1px solid #ffd2c5;border-top:5px solid var(--orange)}
.welcome-faq{display:grid;gap:12px;margin-top:36px}.welcome-faq details{background:#fff;border:1px solid var(--grey-200);border-left:5px solid var(--orange)}.welcome-faq summary{cursor:pointer;padding:22px 24px;font-size:1.05rem;font-weight:900;list-style:none}.welcome-faq summary::-webkit-details-marker{display:none}.welcome-faq details p{margin:0;padding:0 24px 24px;color:var(--grey-500);font-size:1rem;line-height:1.6}
.welcome-cta{display:flex;align-items:center;justify-content:space-between;gap:30px;padding:clamp(60px,8vw,112px) clamp(24px,5vw,76px);color:#fff;background:linear-gradient(135deg,rgba(255,77,37,.97),rgba(255,59,22,.98))}.welcome-cta h2{max-width:900px;margin:0;font-family:var(--display);font-size:clamp(3rem,5vw,6rem);font-weight:400;line-height:.88;text-transform:uppercase}.welcome-cta p{max-width:620px;margin:16px 0 0;font-size:1.05rem;line-height:1.6;color:rgba(255,255,255,.78)}.welcome-cta .welcome-button{flex:0 0 auto;color:#fff;background:var(--black);border-color:var(--black)}
@media(max-width:1180px){.welcome-hero{grid-template-columns:1fr;background-position:62% center}.welcome-hero__copy{min-height:720px;background:linear-gradient(90deg,rgba(244,249,252,.98),rgba(244,249,252,.74) 60%,rgba(244,249,252,.08))}.welcome-hero__panel{width:calc(100% - 48px);margin:0 24px 24px}.welcome-card-grid,.welcome-proof-grid{grid-template-columns:1fr}.welcome-card{min-height:0}}
@media(max-width:760px){.welcome-hero__copy{min-height:650px;padding-left:20px;padding-right:20px}.welcome-hero h1{font-size:clamp(3.55rem,17vw,5.4rem)}.welcome-lead{font-size:1rem}.welcome-trust{grid-template-columns:1fr}.welcome-trust div{border-right:0;border-bottom:1px solid rgba(7,9,11,.1)}.welcome-trust div:last-child{border-bottom:0}.welcome-hero__panel{width:calc(100% - 32px);margin:0 16px 16px}.welcome-cta{flex-direction:column;align-items:flex-start}}
@media(max-width:520px){.welcome-actions{flex-direction:column}.welcome-button{width:100%}}

/* =========================================================
   COMPACT WELCOME HOMEPAGE
   ========================================================= */

.compact-home-page {
    background: #f4f9fc;
    color: var(--black);
}

.compact-home {
    min-height: calc(
        100svh -
        var(--header-height) -
        var(--footer-height)
    );
    display: grid;
    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(430px, 0.85fr);
}

.compact-home__hero {
    min-width: 0;
    min-height: calc(
        100svh -
        var(--header-height) -
        var(--footer-height)
    );
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding:
        clamp(40px, 5vw, 72px)
        clamp(28px, 4vw, 58px);
    background:
        #eaf4f8
        url("images/hero.png")
        55% center / cover
        no-repeat;
    isolation: isolate;
}

.compact-home__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(244, 250, 253, 0.99) 0%,
            rgba(244, 250, 253, 0.94) 35%,
            rgba(244, 250, 253, 0.5) 62%,
            rgba(244, 250, 253, 0.05) 88%
        ),
        linear-gradient(
            0deg,
            rgba(7, 9, 11, 0.16),
            transparent 45%
        );
}

.compact-home__copy {
    width: min(920px, 95%);
}

.compact-home__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.compact-home__eyebrow::before {
    width: 38px;
    height: 4px;
    content: "";
    background: var(--orange);
}

.compact-home h1 {
    margin: 22px 0 0;
    font-family: var(--display);
    font-size: clamp(4.4rem, 6.2vw, 7.2rem);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.compact-home h1 span {
    display: block;
    width: max-content;
    max-width: 100%;
}

.compact-home h1 .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--black);
}

.compact-home h1 .orange {
    color: var(--orange);
}

.compact-home__lead {
    max-width: 720px;
    margin: 26px 0 0;
    color: #34424d;
    font-size: 1.05rem;
    line-height: 1.6;
}

.compact-home__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.compact-button {
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 24px;
    border: 1px solid var(--black);
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease;
}

.compact-button:hover {
    transform: translateY(-2px);
}

.compact-button--primary {
    color: var(--white);
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 18px 38px rgba(255, 77, 37, 0.24);
}

.compact-button--secondary {
    color: var(--black);
    background: rgba(255, 255, 255, 0.9);
}

.compact-home__trust {
    width: min(760px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(7, 9, 11, 0.1);
    box-shadow: 0 16px 40px rgba(7, 9, 11, 0.08);
}

.compact-home__trust div {
    padding: 15px 17px;
    border-right: 1px solid rgba(7, 9, 11, 0.1);
}

.compact-home__trust div:last-child {
    border-right: 0;
}

.compact-home__trust strong,
.compact-home__trust span {
    display: block;
}

.compact-home__trust strong {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
}

.compact-home__trust span {
    margin-top: 4px;
    color: var(--grey-500);
    font-size: 0.85rem;
    line-height: 1.35;
}

.compact-home__cards {
    min-width: 0;
    min-height: calc(
        100svh -
        var(--header-height) -
        var(--footer-height)
    );
    display: grid;
    grid-template-rows:
        repeat(3, minmax(0, 1fr))
        auto
        auto;
    gap: 12px;
    padding:
        clamp(24px, 2.8vw, 38px)
        clamp(22px, 2.5vw, 34px);
    background: var(--white);
    border-left: 1px solid var(--grey-200);
}

.compact-feature-card {
    min-height: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 24px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-top: 5px solid var(--orange);
    box-shadow: 0 14px 34px rgba(7, 9, 11, 0.07);
}

.compact-feature-card--dark {
    color: var(--white);
    background:
        linear-gradient(
            145deg,
            #07090b,
            #171b1f
        );
    border-color: rgba(255, 255, 255, 0.08);
}

.compact-feature-card--warm {
    background:
        linear-gradient(
            145deg,
            #fff8f5,
            #ffede6
        );
    border-color: #ffd2c5;
}

.compact-feature-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.compact-feature-card__top p {
    margin: 0;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.compact-feature-card__number {
    width: 38px;
    height: 38px;
    display: inline-flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    font-family: var(--display);
    font-size: 0.72rem;
}

.compact-feature-card h2 {
    margin: 13px 0 0;
    font-family: var(--display);
    font-size: clamp(1.35rem, 1.75vw, 1.85rem);
    font-weight: 400;
    line-height: 0.98;
    text-transform: uppercase;
}

.compact-feature-card > p {
    margin: 10px 0 0;
    color: var(--grey-500);
    font-size: 0.94rem;
    line-height: 1.48;
}

.compact-feature-card--dark > p {
    color: rgba(255, 255, 255, 0.7);
}

.compact-feature-card ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px 12px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.compact-feature-card li {
    position: relative;
    padding-left: 18px;
    color: var(--grey-700);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
}

.compact-feature-card--dark li {
    color: rgba(255, 255, 255, 0.78);
}

.compact-feature-card li::before {
    position: absolute;
    left: 0;
    content: "✓";
    color: var(--orange);
}

.compact-home__cta {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 12px 11px 18px;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            #ff4d25,
            #ff3b16
        );
    box-shadow: 0 16px 34px rgba(255, 77, 37, 0.24);
}

.compact-home__cta small,
.compact-home__cta strong {
    display: block;
}

.compact-home__cta small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.compact-home__cta strong {
    margin-top: 3px;
    font-family: var(--display);
    font-size: 0.96rem;
    font-weight: 400;
    text-transform: uppercase;
}

.compact-home__cta-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background: var(--white);
    border-radius: 50%;
    font-size: 1rem;
}

.compact-home__reassurance {
    margin: 0;
    color: var(--grey-500);
    font-size: 0.78rem;
    line-height: 1.4;
    text-align: center;
}

@media (min-width: 1181px) and (max-height: 850px) {
    .compact-home__hero {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .compact-home h1 {
        font-size: clamp(3.8rem, 5.4vw, 6rem);
    }

    .compact-home__lead {
        margin-top: 20px;
        font-size: 0.96rem;
    }

    .compact-home__actions,
    .compact-home__trust {
        margin-top: 20px;
    }

    .compact-home__cards {
        gap: 9px;
        padding-top: 18px;
        padding-bottom: 14px;
    }

    .compact-feature-card {
        padding: 16px 18px;
    }

    .compact-feature-card h2 {
        margin-top: 9px;
        font-size: 1.25rem;
    }

    .compact-feature-card > p {
        margin-top: 7px;
        font-size: 0.82rem;
    }

    .compact-feature-card ul {
        margin-top: 9px;
    }

    .compact-feature-card li {
        font-size: 0.7rem;
    }
}

@media (max-width: 1180px) {
    .compact-home {
        grid-template-columns: 1fr;
    }

    .compact-home__hero,
    .compact-home__cards {
        min-height: auto;
    }

    .compact-home__hero {
        min-height: 720px;
    }

    .compact-home__cards {
        grid-template-rows: auto;
        border-top: 1px solid var(--grey-200);
        border-left: 0;
    }

    .compact-feature-card {
        min-height: 250px;
    }
}

@media (max-width: 760px) {
    .compact-home__hero {
        min-height: 650px;
        padding-right: 20px;
        padding-left: 20px;
        background-position: 63% center;
    }

    .compact-home h1 {
        font-size: clamp(3.45rem, 16vw, 5.2rem);
    }

    .compact-home__lead {
        font-size: 1rem;
    }

    .compact-home__trust {
        grid-template-columns: 1fr;
    }

    .compact-home__trust div {
        border-right: 0;
        border-bottom: 1px solid rgba(7, 9, 11, 0.1);
    }

    .compact-home__trust div:last-child {
        border-bottom: 0;
    }

    .compact-feature-card ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .compact-home__actions {
        flex-direction: column;
    }

    .compact-button {
        width: 100%;
    }

    .compact-home__cards {
        padding-right: 16px;
        padding-left: 16px;
    }

    .compact-feature-card {
        min-height: 0;
    }
}

/* =========================================================
   COMPACT HOMEPAGE — FILL RIGHT PANEL HEIGHT
   ========================================================= */

@media (min-width: 1181px) {
    .compact-home__cards {
        grid-template-rows:
            repeat(3, minmax(0, 1fr))
            68px
            auto;
        align-content: stretch;
    }

    .compact-feature-card {
        height: 100%;
        min-height: 0;
        justify-content: center;
    }

    .compact-home__cta {
        height: 68px;
        min-height: 68px;
    }
}

@media (min-width: 1181px) and (max-height: 900px) {
    .compact-home__cards {
        gap: 8px;
        padding-top: 14px;
        padding-bottom: 12px;
    }

    .compact-feature-card {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .compact-feature-card h2 {
        font-size: 1.2rem;
    }

    .compact-feature-card > p {
        font-size: 0.82rem;
        line-height: 1.42;
    }

    .compact-feature-card li {
        font-size: 0.7rem;
    }
}

/* =========================================================
   INDEX — FINAL COMPACT AGENCY PASS
   ========================================================= */

@media (min-width: 1181px) {
    .compact-home {
        height: calc(
            100svh -
            var(--header-height) -
            72px
        );
        min-height: 650px;
        overflow: hidden;
        grid-template-columns:
            minmax(0, 1.52fr)
            minmax(410px, 0.78fr);
    }

    .compact-home__hero,
    .compact-home__cards {
        min-height: 0;
        height: 100%;
    }

    .compact-home__hero {
        padding:
            clamp(30px, 4vh, 48px)
            clamp(28px, 3.5vw, 54px);
    }

    .compact-home__copy {
        width: min(800px, 92%);
    }

    .compact-home__eyebrow {
        font-size: 0.76rem;
    }

    .compact-home h1 {
        margin-top: 16px;
        font-size: clamp(3.9rem, 5.6vw, 6.6rem);
        line-height: 0.8;
    }

    .compact-home__lead {
        max-width: 650px;
        margin-top: 18px;
        font-size: 0.98rem;
        line-height: 1.5;
    }

    .compact-home__actions {
        margin-top: 20px;
    }

    .compact-button {
        min-height: 54px;
        padding-inline: 20px;
        font-size: 0.84rem;
    }

    .compact-home__trust {
        margin-top: 20px;
    }

    .compact-home__trust div {
        padding: 12px 14px;
    }

    .compact-home__trust strong {
        font-size: 0.88rem;
    }

    .compact-home__trust span {
        font-size: 0.74rem;
    }

    .compact-home__cards {
        grid-template-rows:
            repeat(3, minmax(0, 1fr))
            62px
            20px;
        gap: 8px;
        padding: 14px 16px 10px;
    }

    .compact-feature-card {
        min-height: 0;
        height: 100%;
        justify-content: center;
        padding: 14px 16px;
        border-top-width: 4px;
    }

    .compact-feature-card__number {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        font-size: 0.64rem;
    }

    .compact-feature-card__top {
        gap: 9px;
    }

    .compact-feature-card__top p {
        font-size: 0.62rem;
    }

    .compact-feature-card h2 {
        margin-top: 9px;
        font-size: clamp(1.1rem, 1.35vw, 1.5rem);
        line-height: 0.95;
    }

    .compact-feature-card > p {
        margin-top: 7px;
        font-size: 0.78rem;
        line-height: 1.38;
    }

    .compact-feature-card ul {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 5px 8px;
        margin-top: 9px;
    }

    .compact-feature-card li {
        padding-left: 15px;
        font-size: 0.66rem;
        line-height: 1.28;
    }

    .compact-home__cta {
        min-height: 62px;
        height: 62px;
    }

    .compact-home__cta strong {
        font-size: 0.88rem;
    }

    .compact-home__cta-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .compact-home__reassurance {
        align-self: center;
        font-size: 0.68rem;
        line-height: 1.2;
    }

    .site-footer {
        min-height: 72px;
        padding-top: 14px;
        padding-bottom: 14px;
    }
}

@media (min-width: 1181px) and (max-height: 760px) {
    .compact-home {
        min-height: 600px;
    }

    .compact-home h1 {
        font-size: clamp(3.5rem, 5vw, 5.6rem);
    }

    .compact-home__lead {
        margin-top: 14px;
        font-size: 0.9rem;
    }

    .compact-home__actions,
    .compact-home__trust {
        margin-top: 14px;
    }

    .compact-home__cards {
        gap: 6px;
        padding-top: 10px;
    }

    .compact-feature-card {
        padding: 10px 14px;
    }

    .compact-feature-card h2 {
        font-size: 1.02rem;
    }

    .compact-feature-card > p {
        font-size: 0.72rem;
    }

    .compact-feature-card li {
        font-size: 0.61rem;
    }
}

@media (max-width: 1180px) {
    .compact-home__hero {
        min-height: 620px;
    }

    .compact-feature-card {
        min-height: 210px;
    }
}

@media (max-width: 760px) {
    .compact-home__hero {
        min-height: 570px;
    }

    .compact-home h1 {
        font-size: clamp(3.15rem, 14.5vw, 4.8rem);
    }

    .compact-home__lead {
        margin-top: 18px;
    }
}

/* =========================================================
   INDEX — SINGLE AGENCY TRUST CARD
   ========================================================= */

.compact-home__trust {
    display: none;
}

.compact-home__agency-card {
    width: min(760px, 100%);
    margin-top: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(7, 9, 11, 0.12);
    border-top: 5px solid var(--orange);
    box-shadow: 0 18px 42px rgba(7, 9, 11, 0.12);
    backdrop-filter: blur(14px);
}

.compact-home__agency-card-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 18px 13px;
    color: var(--white);
    background: var(--black);
}

.compact-home__agency-card-head span,
.compact-home__agency-card-head strong {
    display: block;
}

.compact-home__agency-card-head span {
    color: var(--orange);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.compact-home__agency-card-head strong {
    font-family: var(--display);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1;
    text-align: right;
    text-transform: uppercase;
}

.compact-home__agency-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-home__agency-card-grid > div {
    min-width: 0;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    padding: 15px 16px;
    border-right: 1px solid var(--grey-200);
}

.compact-home__agency-card-grid > div:last-child {
    border-right: 0;
}

.compact-home__agency-card-grid p {
    margin: 0;
}

.compact-home__agency-card-grid strong,
.compact-home__agency-card-grid p > span {
    display: block;
}

.compact-home__agency-card-grid strong {
    font-family: var(--display);
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
}

.compact-home__agency-card-grid p > span {
    margin-top: 4px;
    color: var(--grey-500);
    font-size: 0.69rem;
    line-height: 1.35;
}

.compact-home__agency-card-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    font-family: var(--display);
    font-size: 0.58rem;
}

@media (min-width: 1181px) and (max-height: 760px) {
    .compact-home__agency-card {
        margin-top: 14px;
    }

    .compact-home__agency-card-head {
        padding-top: 10px;
        padding-bottom: 9px;
    }

    .compact-home__agency-card-grid > div {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media (max-width: 760px) {
    .compact-home__agency-card-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .compact-home__agency-card-head strong {
        text-align: left;
    }

    .compact-home__agency-card-grid {
        grid-template-columns: 1fr;
    }

    .compact-home__agency-card-grid > div {
        border-right: 0;
        border-bottom: 1px solid var(--grey-200);
    }

    .compact-home__agency-card-grid > div:last-child {
        border-bottom: 0;
    }
}

/* =========================================================
   INDEX — HERO INTRO READABILITY
   ========================================================= */

.compact-home__lead {
    width: fit-content;
    max-width: min(690px, 100%);
    padding: 12px 16px;
    color: var(--black);
    background: rgba(255, 255, 255, 0.88);
    border-left: 4px solid var(--orange);
    box-shadow: 0 12px 28px rgba(7, 9, 11, 0.08);
    backdrop-filter: blur(10px);
}

@media (min-width: 1181px) {
    .compact-home__lead {
        font-weight: 600;
    }
}

@media (max-width: 760px) {
    .compact-home__lead {
        padding: 10px 12px;
    }
}

/* =========================================================
   INDEX — LARGER HERO INTRO TEXT
   ========================================================= */

.compact-home__lead {
    font-size: clamp(1.08rem, 1.2vw, 1.22rem);
    line-height: 1.58;
}

@media (max-width: 760px) {
    .compact-home__lead {
        font-size: 1.05rem;
        line-height: 1.55;
    }
}

/* =========================================================
   INDEX — CONSISTENT 16PX PARAGRAPH TEXT
   ========================================================= */

.compact-home__lead,
.compact-feature-card > p {
    font-size: 1rem;
    line-height: 1.55;
}

.compact-home__agency-card-grid p > span {
    font-size: 0.88rem;
    line-height: 1.45;
}

.compact-feature-card li {
    font-size: 0.82rem;
    line-height: 1.35;
}

@media (min-width: 1181px) and (max-height: 760px) {
    .compact-home__lead,
    .compact-feature-card > p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .compact-feature-card li {
        font-size: 0.78rem;
    }
}

@media (max-width: 760px) {
    .compact-home__lead,
    .compact-feature-card > p {
        font-size: 1rem;
        line-height: 1.55;
    }

    .compact-home__agency-card-grid p > span {
        font-size: 0.9rem;
    }
}

/* =========================================================
   INDEX — BALANCED CARDS FOR 16PX BODY COPY
   ========================================================= */

.compact-feature-card {
    justify-content: flex-start;
}

.compact-feature-card > p {
    margin-bottom: 0;
}

.compact-feature-card__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
    padding-top: 14px;
}

.compact-feature-card__proof span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 9px;
    color: var(--black);
    background: var(--grey-100);
    border: 1px solid var(--grey-200);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.compact-feature-card--dark .compact-feature-card__proof span {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.compact-feature-card--warm .compact-feature-card__proof span {
    background: rgba(255, 255, 255, 0.62);
    border-color: #f3c4b7;
}

@media (min-width: 1181px) {
    .compact-home {
        grid-template-columns:
            minmax(0, 1.46fr)
            minmax(440px, 0.84fr);
    }

    .compact-home__cards {
        grid-template-rows:
            repeat(3, minmax(0, 1fr))
            62px
            22px;
        gap: 9px;
        padding: 15px 18px 10px;
    }

    .compact-feature-card {
        padding: 16px 18px;
    }

    .compact-feature-card h2 {
        margin-top: 10px;
        font-size: clamp(1.2rem, 1.45vw, 1.55rem);
        line-height: 0.98;
    }

    .compact-feature-card > p {
        margin-top: 9px;
        font-size: 1rem;
        line-height: 1.45;
    }

    .compact-feature-card__proof {
        gap: 5px;
        padding-top: 11px;
    }

    .compact-feature-card__proof span {
        min-height: 26px;
        padding: 5px 7px;
        font-size: 0.62rem;
    }
}

@media (min-width: 1181px) and (max-height: 800px) {
    .compact-home__cards {
        gap: 7px;
        padding-top: 11px;
    }

    .compact-feature-card {
        padding: 12px 15px;
    }

    .compact-feature-card h2 {
        margin-top: 7px;
        font-size: 1.12rem;
    }

    .compact-feature-card > p {
        margin-top: 6px;
        font-size: 0.94rem;
        line-height: 1.38;
    }

    .compact-feature-card__proof {
        padding-top: 8px;
    }

    .compact-feature-card__proof span {
        min-height: 24px;
        font-size: 0.58rem;
    }
}

@media (max-width: 1180px) {
    .compact-feature-card {
        min-height: 230px;
    }
}

@media (max-width: 760px) {
    .compact-feature-card {
        min-height: 0;
    }

    .compact-feature-card__proof {
        margin-top: 18px;
    }

    .compact-feature-card__proof span {
        font-size: 0.68rem;
    }
}

/* =========================================================
   INDEX — CLEAN AGENCY HERO
   ========================================================= */

.compact-home__agency-card,
.compact-home__trust {
    display: none !important;
}

.compact-home__lead {
    width: auto;
    max-width: 690px;
    padding: 0;
    color: #1b252c;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.62;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.compact-home__assurance {
    width: min(760px, 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 22px;
    padding: 15px 18px;
    color: var(--white);
    background: rgba(7, 9, 11, 0.94);
    border-left: 5px solid var(--orange);
    box-shadow: 0 18px 38px rgba(7, 9, 11, 0.16);
    backdrop-filter: blur(12px);
}

.compact-home__assurance-main {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
}

.compact-home__assurance-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    font-weight: 900;
}

.compact-home__assurance-main strong,
.compact-home__assurance-main span {
    display: block;
}

.compact-home__assurance-main strong {
    font-family: var(--display);
    font-size: 0.94rem;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.compact-home__assurance-main div > span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    line-height: 1.35;
}

.compact-home__assurance-points {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0;
}

.compact-home__assurance-points span {
    padding: 0 15px;
    color: rgba(255, 255, 255, 0.82);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.72rem;
    font-weight: 800;
    white-space: nowrap;
    text-transform: uppercase;
}

.compact-home__assurance-points span:last-child {
    padding-right: 0;
}

@media (min-width: 1181px) {
    .compact-home__lead {
        margin-top: 20px;
        font-size: 1rem;
        line-height: 1.58;
    }

    .compact-home__actions {
        margin-top: 22px;
    }

    .compact-home__assurance {
        margin-top: 22px;
    }
}

@media (min-width: 1181px) and (max-height: 760px) {
    .compact-home__lead {
        margin-top: 14px;
        font-size: 0.96rem;
        line-height: 1.5;
    }

    .compact-home__actions,
    .compact-home__assurance {
        margin-top: 14px;
    }

    .compact-home__assurance {
        padding-top: 11px;
        padding-bottom: 11px;
    }
}

@media (max-width: 760px) {
    .compact-home__lead {
        font-size: 1rem;
        line-height: 1.55;
    }

    .compact-home__assurance {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .compact-home__assurance-points {
        width: 100%;
    }

    .compact-home__assurance-points span {
        flex: 1 1 50%;
        padding-right: 10px;
        padding-left: 10px;
        text-align: center;
    }

    .compact-home__assurance-points span:first-child {
        padding-left: 0;
        border-left: 0;
        text-align: left;
    }

    .compact-home__assurance-points span:last-child {
        text-align: right;
    }
}

/* =========================================================
   INDEX — MINIMAL AGENCY TRUST ROW
   ========================================================= */

.compact-home__assurance,
.compact-home__agency-card,
.compact-home__trust {
    display: none !important;
}

.compact-home__micro-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 18px;
    margin-top: 18px;
    color: var(--black);
}

.compact-home__micro-trust span {
    position: relative;
    padding-left: 18px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.compact-home__micro-trust span::before {
    position: absolute;
    left: 0;
    top: 0.1em;
    content: "✓";
    color: var(--orange);
    font-weight: 900;
}

@media (min-width: 1181px) and (max-height: 760px) {
    .compact-home__micro-trust {
        margin-top: 12px;
    }
}

@media (max-width: 760px) {
    .compact-home__micro-trust {
        gap: 8px 14px;
    }

    .compact-home__micro-trust span {
        font-size: 0.72rem;
    }
}

/* =========================================================
   INDEX — HERO AGENCY CARD
   ========================================================= */

.compact-home__hero-card {
    width: min(760px, 100%);
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(7, 9, 11, 0.12);
    border-top: 5px solid var(--orange);
    box-shadow: 0 22px 48px rgba(7, 9, 11, 0.14);
    backdrop-filter: blur(16px);
}

.compact-home__hero-card-copy {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.compact-home__hero-card-kicker {
    padding-top: 4px;
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    white-space: nowrap;
    text-transform: uppercase;
}

.compact-home__hero-card .compact-home__lead {
    margin: 0;
    max-width: none;
    padding: 0;
    color: var(--black);
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.55;
    text-shadow: none;
}

.compact-home__hero-card .compact-home__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 12px;
    margin-top: 18px;
}

.compact-home__hero-card .compact-button {
    width: 100%;
    min-height: 58px;
}

.compact-home__hero-card .compact-home__micro-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--grey-200);
}

.compact-home__hero-card .compact-home__micro-trust span {
    min-width: 0;
    padding: 0 14px 0 20px;
    font-size: 0.72rem;
    line-height: 1.35;
}

.compact-home__hero-card .compact-home__micro-trust span:first-child {
    padding-left: 18px;
}

.compact-home__hero-card .compact-home__micro-trust span + span {
    border-left: 1px solid var(--grey-200);
}

@media (min-width: 1181px) and (max-height: 800px) {
    .compact-home__hero-card {
        margin-top: 16px;
        padding: 16px;
    }

    .compact-home__hero-card .compact-home__actions {
        margin-top: 14px;
    }

    .compact-home__hero-card .compact-home__micro-trust {
        margin-top: 12px;
        padding-top: 11px;
    }
}

@media (max-width: 760px) {
    .compact-home__hero-card {
        padding: 16px;
    }

    .compact-home__hero-card-copy {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .compact-home__hero-card-kicker {
        white-space: normal;
    }

    .compact-home__hero-card .compact-home__actions {
        grid-template-columns: 1fr;
    }

    .compact-home__hero-card .compact-home__micro-trust {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .compact-home__hero-card .compact-home__micro-trust span,
    .compact-home__hero-card .compact-home__micro-trust span:first-child {
        padding-left: 18px;
    }

    .compact-home__hero-card .compact-home__micro-trust span + span {
        border-left: 0;
    }
}

/* =========================================================
   SHARED HTML COMPONENTS
   ========================================================= */

.component-error {
    margin: 0;
    padding: 14px 18px;
    color: var(--error);
    background: #fef3f2;
    border-bottom: 1px solid #f4c7c3;
    font-size: 0.9rem;
    font-weight: 700;
}

/* =========================================================
   HOW IT WORKS — PREMIUM AGENCY PAGE
   ========================================================= */

.how-premium-page {
    background: #f4f9fc;
}

.how-premium-kicker {
    margin: 0;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.how-premium-hero {
    min-height: calc(
        100svh -
        var(--header-height)
    );
    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(430px, 0.78fr);
}

.how-premium-hero__visual {
    min-width: 0;
    min-height: 680px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding:
        clamp(42px, 5vw, 72px)
        clamp(28px, 4vw, 62px);
    background:
        var(--sky)
        url("images/hero.png")
        56% center / cover
        no-repeat;
    isolation: isolate;
}

.how-premium-hero__visual::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background:
        linear-gradient(
            90deg,
            rgba(244, 250, 253, 0.99) 0%,
            rgba(244, 250, 253, 0.93) 35%,
            rgba(244, 250, 253, 0.48) 66%,
            rgba(244, 250, 253, 0.06) 88%
        ),
        linear-gradient(
            0deg,
            rgba(7, 9, 11, 0.15),
            transparent 45%
        );
}

.how-premium-hero__copy {
    width: min(880px, 94%);
}

.how-premium-hero h1 {
    margin: 18px 0 0;
    font-family: var(--display);
    font-size: clamp(4rem, 5.7vw, 6.7rem);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.how-premium-hero h1 span {
    display: block;
    width: max-content;
    max-width: 100%;
}

.how-premium-hero h1 .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--black);
}

.how-premium-hero h1 .orange {
    color: var(--orange);
}

.how-premium-hero__lead {
    max-width: 700px;
    margin: 24px 0 0;
    color: #26333c;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
}

.how-premium-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.how-premium-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    margin-top: 22px;
}

.how-premium-hero__trust span {
    position: relative;
    padding-left: 18px;
    color: var(--black);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.how-premium-hero__trust span::before {
    position: absolute;
    left: 0;
    content: "✓";
    color: var(--orange);
}

.how-premium-process {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding:
        clamp(28px, 3vw, 42px)
        clamp(24px, 2.8vw, 38px);
    background: var(--white);
    border-left: 1px solid var(--grey-200);
}

.how-premium-process__head {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--grey-200);
}

.how-premium-process__head p {
    margin: 0;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.how-premium-process__head h2 {
    margin: 8px 0 0;
    font-family: var(--display);
    font-size: clamp(2.2rem, 3vw, 3.6rem);
    font-weight: 400;
    line-height: 0.9;
    text-transform: uppercase;
}

.how-premium-process__list {
    display: grid;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.how-premium-process__list li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
    align-items: start;
    padding: 19px 0;
    border-bottom: 1px solid var(--grey-200);
}

.how-premium-process__list li > span {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    font-family: var(--display);
    font-size: 0.72rem;
}

.how-premium-process__list h3 {
    margin: 1px 0 0;
    font-family: var(--display);
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.how-premium-process__list p {
    margin: 8px 0 0;
    color: var(--grey-500);
    font-size: 1rem;
    line-height: 1.5;
}

.how-premium-process__cta {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
    padding: 11px 12px 11px 18px;
    color: var(--white);
    background: var(--black);
    border-top: 5px solid var(--orange);
}

.how-premium-process__cta small,
.how-premium-process__cta strong {
    display: block;
}

.how-premium-process__cta small {
    color: var(--orange);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.how-premium-process__cta strong {
    margin-top: 4px;
    font-family: var(--display);
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
}

.how-premium-process__cta > span:last-child {
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background: var(--white);
    border-radius: 50%;
}

.how-premium-detail,
.how-premium-approval,
.how-premium-faq {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
}

.how-premium-detail {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(34px, 6vw, 82px);
    align-items: center;
    padding:
        clamp(70px, 8vw, 118px)
        0;
}

.how-premium-detail__intro h2,
.how-premium-approval h2,
.how-premium-faq h2,
.how-premium-final h2 {
    margin: 12px 0 0;
    font-family: var(--display);
    font-size: clamp(2.8rem, 4.8vw, 5.8rem);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.how-premium-detail__intro > p:last-child,
.how-premium-approval__copy > p:last-child {
    max-width: 720px;
    margin: 20px 0 0;
    color: var(--grey-500);
    font-size: 1rem;
    line-height: 1.65;
}

.how-premium-detail__panel {
    color: var(--white);
    background: var(--black);
    border-top: 6px solid var(--orange);
    box-shadow: 0 24px 56px rgba(7, 9, 11, 0.18);
}

.how-premium-detail__statement {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    padding: 25px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.how-premium-detail__statement:last-child {
    border-bottom: 0;
}

.how-premium-detail__statement > span {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    font-family: var(--display);
    font-size: 0.72rem;
}

.how-premium-detail__statement strong {
    display: block;
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 400;
    text-transform: uppercase;
}

.how-premium-detail__statement p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 1.55;
}

.how-premium-approval {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
    gap: clamp(30px, 5vw, 72px);
    align-items: center;
    margin-bottom: clamp(70px, 8vw, 110px);
    padding:
        clamp(38px, 5vw, 68px);
    background:
        linear-gradient(135deg, #fff8f4, #ffebe3);
    border: 1px solid #ffd0c3;
    border-left: 7px solid var(--orange);
}

.how-premium-approval__checklist {
    display: grid;
    gap: 11px;
}

.how-premium-approval__checklist span {
    position: relative;
    padding: 14px 16px 14px 42px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 75, 31, 0.16);
    font-size: 0.9rem;
    font-weight: 800;
}

.how-premium-approval__checklist span::before {
    position: absolute;
    left: 16px;
    content: "✓";
    color: var(--orange);
    font-weight: 900;
}

.how-premium-faq {
    display: grid;
    grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
    gap: clamp(36px, 6vw, 84px);
    padding-bottom: clamp(70px, 8vw, 110px);
}

.how-premium-faq__items details {
    border-bottom: 1px solid var(--grey-300);
}

.how-premium-faq__items summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 21px 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 900;
    list-style: none;
}

.how-premium-faq__items summary::-webkit-details-marker {
    display: none;
}

.how-premium-faq__items summary::after {
    content: "+";
    color: var(--orange);
    font-size: 1.4rem;
}

.how-premium-faq__items details[open] summary::after {
    content: "−";
}

.how-premium-faq__items details p {
    max-width: 780px;
    margin: -4px 0 22px;
    color: var(--grey-500);
    font-size: 1rem;
    line-height: 1.6;
}

.how-premium-final {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding:
        clamp(54px, 7vw, 92px)
        clamp(24px, 5vw, 76px);
    color: var(--white);
    background: var(--orange);
}

.how-premium-final .how-premium-kicker {
    color: var(--black);
}

.how-premium-final h2 {
    max-width: 960px;
}

.how-premium-final > a {
    min-height: 62px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    color: var(--white);
    background: var(--black);
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 18px 38px rgba(7, 9, 11, 0.22);
}

@media (max-width: 1180px) {
    .how-premium-hero {
        grid-template-columns: 1fr;
    }

    .how-premium-hero__visual {
        min-height: 670px;
    }

    .how-premium-process {
        border-top: 1px solid var(--grey-200);
        border-left: 0;
    }

    .how-premium-process__cta {
        margin-top: 24px;
    }
}

@media (max-width: 860px) {
    .how-premium-detail,
    .how-premium-approval,
    .how-premium-faq {
        grid-template-columns: 1fr;
    }

    .how-premium-final {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .how-premium-hero__visual,
    .how-premium-process {
        padding-right: 18px;
        padding-left: 18px;
    }

    .how-premium-hero__visual {
        min-height: 600px;
    }

    .how-premium-hero h1 {
        font-size: clamp(3.1rem, 14.5vw, 4.8rem);
    }

    .how-premium-hero__actions {
        flex-direction: column;
    }

    .how-premium-hero__actions .compact-button {
        width: 100%;
    }

    .how-premium-detail,
    .how-premium-approval,
    .how-premium-faq {
        width: min(100% - 32px, 1380px);
    }

    .how-premium-detail__statement {
        grid-template-columns: 44px minmax(0, 1fr);
        padding: 21px 18px;
    }

    .how-premium-detail__statement > span {
        width: 44px;
        height: 44px;
    }

    .how-premium-approval {
        padding: 28px 20px;
    }

    .how-premium-final {
        padding-right: 20px;
        padding-left: 20px;
    }

    .how-premium-final > a {
        width: 100%;
    }
}

/* =========================================================
   HOW IT WORKS — COMPACT AGENCY LAYOUT
   ========================================================= */

.how-compact-page {
    background: #f4f9fc;
}

.how-compact {
    min-height: calc(
        100svh -
        var(--header-height) -
        72px
    );
    display: grid;
    grid-template-columns:
        minmax(0, 1.48fr)
        minmax(430px, 0.82fr);
}

.how-compact__hero {
    min-width: 0;
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding:
        clamp(32px, 4vw, 58px)
        clamp(28px, 4vw, 58px);
    background:
        var(--sky)
        url("images/hero.png")
        56% center / cover
        no-repeat;
    isolation: isolate;
}

.how-compact__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(244, 250, 253, 0.99) 0%,
            rgba(244, 250, 253, 0.94) 36%,
            rgba(244, 250, 253, 0.46) 67%,
            rgba(244, 250, 253, 0.04) 90%
        ),
        linear-gradient(
            0deg,
            rgba(7, 9, 11, 0.16),
            transparent 44%
        );
}

.how-compact__copy {
    width: min(860px, 94%);
}

.how-compact__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.how-compact__eyebrow::before {
    width: 38px;
    height: 4px;
    content: "";
    background: var(--orange);
}

.how-compact h1 {
    margin: 18px 0 0;
    font-family: var(--display);
    font-size: clamp(3.9rem, 5.7vw, 6.6rem);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.how-compact h1 span {
    display: block;
    width: max-content;
    max-width: 100%;
}

.how-compact h1 .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--black);
}

.how-compact h1 .orange {
    color: var(--orange);
}

.how-compact__lead {
    max-width: 700px;
    margin: 22px 0 0;
    color: #26333c;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

.how-compact__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.how-compact__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    margin-top: 20px;
}

.how-compact__trust span {
    position: relative;
    padding-left: 18px;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.how-compact__trust span::before {
    position: absolute;
    left: 0;
    content: "✓";
    color: var(--orange);
}

.how-compact__cards {
    min-width: 0;
    min-height: 650px;
    display: grid;
    grid-template-rows:
        repeat(3, minmax(0, 1fr))
        64px
        24px;
    gap: 9px;
    padding: 15px 18px 10px;
    background: var(--white);
    border-left: 1px solid var(--grey-200);
}

.how-process-card {
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-top: 4px solid var(--orange);
    box-shadow: 0 14px 32px rgba(7, 9, 11, 0.07);
}

.how-process-card--dark {
    color: var(--white);
    background: linear-gradient(145deg, #07090b, #171b1f);
    border-color: rgba(255, 255, 255, 0.08);
}

.how-process-card--warm {
    background: linear-gradient(145deg, #fff8f5, #ffede6);
    border-color: #ffd2c5;
}

.how-process-card__top {
    display: flex;
    align-items: center;
    gap: 11px;
}

.how-process-card__top > span {
    width: 36px;
    height: 36px;
    display: inline-flex;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    font-family: var(--display);
    font-size: 0.64rem;
}

.how-process-card__top p {
    margin: 0;
    color: var(--orange);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.how-process-card h2 {
    margin: 10px 0 0;
    font-family: var(--display);
    font-size: clamp(1.18rem, 1.5vw, 1.62rem);
    font-weight: 400;
    line-height: 0.98;
    text-transform: uppercase;
}

.how-process-card > p {
    margin: 9px 0 0;
    color: var(--grey-500);
    font-size: 1rem;
    line-height: 1.45;
}

.how-process-card--dark > p {
    color: rgba(255, 255, 255, 0.68);
}

.how-compact__cta {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 12px 10px 18px;
    color: var(--white);
    background: var(--orange);
    box-shadow: 0 16px 34px rgba(255, 75, 31, 0.22);
}

.how-compact__cta small,
.how-compact__cta strong {
    display: block;
}

.how-compact__cta small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.how-compact__cta strong {
    margin-top: 3px;
    font-family: var(--display);
    font-size: 0.92rem;
    font-weight: 400;
    text-transform: uppercase;
}

.how-compact__cta > span:last-child {
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background: var(--white);
    border-radius: 50%;
}

.how-compact__reassurance {
    margin: 0;
    align-self: center;
    color: var(--grey-500);
    font-size: 0.7rem;
    line-height: 1.3;
    text-align: center;
}

@media (min-width: 1181px) and (max-height: 800px) {
    .how-compact {
        min-height: 600px;
    }

    .how-compact__hero,
    .how-compact__cards {
        min-height: 600px;
    }

    .how-compact h1 {
        font-size: clamp(3.4rem, 5vw, 5.7rem);
    }

    .how-compact__lead {
        margin-top: 16px;
        line-height: 1.5;
    }

    .how-compact__actions,
    .how-compact__trust {
        margin-top: 15px;
    }

    .how-compact__cards {
        gap: 7px;
        padding-top: 11px;
    }

    .how-process-card {
        padding: 13px 16px;
    }

    .how-process-card h2 {
        margin-top: 7px;
        font-size: 1.08rem;
    }

    .how-process-card > p {
        margin-top: 6px;
        font-size: 0.94rem;
        line-height: 1.38;
    }
}

@media (max-width: 1180px) {
    .how-compact {
        grid-template-columns: 1fr;
    }

    .how-compact__hero,
    .how-compact__cards {
        min-height: auto;
    }

    .how-compact__hero {
        min-height: 620px;
    }

    .how-compact__cards {
        grid-template-rows: auto;
        border-top: 1px solid var(--grey-200);
        border-left: 0;
    }

    .how-process-card {
        min-height: 220px;
    }
}

@media (max-width: 760px) {
    .how-compact__hero {
        min-height: 570px;
        padding-right: 20px;
        padding-left: 20px;
        background-position: 63% center;
    }

    .how-compact h1 {
        font-size: clamp(3rem, 14vw, 4.8rem);
    }

    .how-compact__actions {
        flex-direction: column;
    }

    .how-compact__actions .compact-button {
        width: 100%;
    }

    .how-compact__cards {
        padding-right: 16px;
        padding-left: 16px;
    }

    .how-process-card {
        min-height: 0;
    }
}

/* =========================================================
   HOW IT WORKS — STEP-LED COMPACT AGENCY PAGE
   ========================================================= */

.how-step-page {
    min-height: calc(
        100svh -
        var(--header-height) -
        72px
    );
    display: grid;
    grid-template-columns:
        minmax(0, 1.48fr)
        minmax(430px, 0.82fr);
}

.how-step-page__left {
    min-width: 0;
    min-height: 650px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding:
        clamp(28px, 3.4vw, 48px)
        clamp(26px, 3.8vw, 54px);
    background:
        var(--sky)
        url("images/hero.png")
        56% center / cover
        no-repeat;
    isolation: isolate;
}

.how-step-page__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(244, 250, 253, 0.99) 0%,
            rgba(244, 250, 253, 0.94) 38%,
            rgba(244, 250, 253, 0.5) 70%,
            rgba(244, 250, 253, 0.08) 92%
        ),
        linear-gradient(
            0deg,
            rgba(7, 9, 11, 0.14),
            transparent 46%
        );
}

.how-step-page__content {
    width: min(860px, 96%);
}

.how-step-page__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.how-step-page__eyebrow::before {
    width: 38px;
    height: 4px;
    content: "";
    background: var(--orange);
}

.how-step-page h1 {
    margin: 16px 0 0;
    font-family: var(--display);
    font-size: clamp(3.5rem, 5.2vw, 6.1rem);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.how-step-page h1 span {
    display: block;
    width: max-content;
    max-width: 100%;
}

.how-step-page h1 .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--black);
}

.how-step-page h1 .orange {
    color: var(--orange);
}

.how-step-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.how-step-list li {
    min-width: 0;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 15px 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(7, 9, 11, 0.1);
    border-top: 4px solid var(--orange);
    box-shadow: 0 14px 30px rgba(7, 9, 11, 0.08);
    backdrop-filter: blur(12px);
}

.how-step-list__number {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    font-family: var(--display);
    font-size: 0.64rem;
}

.how-step-list h2 {
    margin: 1px 0 0;
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.how-step-list p {
    margin: 7px 0 0;
    color: var(--grey-500);
    font-size: 0.92rem;
    line-height: 1.42;
}

.how-step-page__right {
    min-width: 0;
    min-height: 650px;
    display: grid;
    grid-template-rows:
        repeat(3, minmax(0, 1fr))
        64px
        22px;
    gap: 9px;
    padding: 15px 18px 10px;
    background: var(--white);
    border-left: 1px solid var(--grey-200);
}

.how-assurance-card {
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-top: 4px solid var(--orange);
    box-shadow: 0 14px 32px rgba(7, 9, 11, 0.07);
}

.how-assurance-card--dark {
    color: var(--white);
    background: linear-gradient(145deg, #07090b, #171b1f);
    border-color: rgba(255, 255, 255, 0.08);
}

.how-assurance-card--warm {
    background: linear-gradient(145deg, #fff8f5, #ffede6);
    border-color: #ffd2c5;
}

.how-assurance-card__kicker {
    margin: 0;
    color: var(--orange);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.how-assurance-card h2 {
    margin: 9px 0 0;
    font-family: var(--display);
    font-size: clamp(1.18rem, 1.45vw, 1.56rem);
    font-weight: 400;
    line-height: 0.98;
    text-transform: uppercase;
}

.how-assurance-card > p:last-child {
    margin: 9px 0 0;
    color: var(--grey-500);
    font-size: 1rem;
    line-height: 1.45;
}

.how-assurance-card--dark > p:last-child {
    color: rgba(255, 255, 255, 0.68);
}

.how-step-page__cta {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 12px 10px 18px;
    color: var(--white);
    background: var(--orange);
    box-shadow: 0 16px 34px rgba(255, 75, 31, 0.22);
}

.how-step-page__cta small,
.how-step-page__cta strong {
    display: block;
}

.how-step-page__cta small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.how-step-page__cta strong {
    margin-top: 3px;
    font-family: var(--display);
    font-size: 0.92rem;
    font-weight: 400;
    text-transform: uppercase;
}

.how-step-page__cta > span:last-child {
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background: var(--white);
    border-radius: 50%;
}

.how-step-page__note {
    margin: 0;
    align-self: center;
    color: var(--grey-500);
    font-size: 0.7rem;
    line-height: 1.3;
    text-align: center;
}

@media (min-width: 1181px) and (max-height: 800px) {
    .how-step-page,
    .how-step-page__left,
    .how-step-page__right {
        min-height: 600px;
    }

    .how-step-page h1 {
        font-size: clamp(3.1rem, 4.7vw, 5.35rem);
    }

    .how-step-list {
        margin-top: 16px;
        gap: 8px;
    }

    .how-step-list li {
        padding: 11px 13px;
    }

    .how-step-list p {
        font-size: 0.84rem;
    }

    .how-step-page__right {
        gap: 7px;
        padding-top: 11px;
    }

    .how-assurance-card {
        padding: 13px 16px;
    }

    .how-assurance-card h2 {
        margin-top: 6px;
        font-size: 1.08rem;
    }

    .how-assurance-card > p:last-child {
        margin-top: 6px;
        font-size: 0.94rem;
        line-height: 1.38;
    }
}

@media (max-width: 1180px) {
    .how-step-page {
        grid-template-columns: 1fr;
    }

    .how-step-page__left,
    .how-step-page__right {
        min-height: auto;
    }

    .how-step-page__left {
        min-height: 650px;
    }

    .how-step-page__right {
        grid-template-rows: auto;
        border-top: 1px solid var(--grey-200);
        border-left: 0;
    }

    .how-assurance-card {
        min-height: 220px;
    }
}

@media (max-width: 760px) {
    .how-step-page__left {
        min-height: auto;
        padding-right: 18px;
        padding-left: 18px;
        background-position: 64% center;
    }

    .how-step-page h1 {
        font-size: clamp(2.9rem, 13.8vw, 4.6rem);
    }

    .how-step-list {
        grid-template-columns: 1fr;
    }

    .how-step-page__right {
        padding-right: 16px;
        padding-left: 16px;
    }

    .how-assurance-card {
        min-height: 0;
    }
}

/* =========================================================
   HOW IT WORKS — NO HERO IMAGE
   Hero imagery is reserved for the index page only.
   ========================================================= */

.how-step-page__left {
    background:
        radial-gradient(
            circle at 92% 12%,
            rgba(255, 75, 31, 0.12),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #f7fbfd 0%,
            #edf6fa 58%,
            #e6f0f4 100%
        );
}

.how-step-page__overlay {
    background:
        linear-gradient(
            115deg,
            rgba(255, 255, 255, 0.72),
            rgba(255, 255, 255, 0.12)
        );
}

.how-step-page__left::after {
    position: absolute;
    right: clamp(-150px, -8vw, -60px);
    bottom: clamp(-180px, -12vw, -90px);
    z-index: -1;
    width: clamp(360px, 42vw, 680px);
    aspect-ratio: 1;
    content: "";
    border: clamp(42px, 5vw, 78px) solid rgba(255, 75, 31, 0.08);
    border-radius: 50%;
}

@media (max-width: 760px) {
    .how-step-page__left {
        background:
            radial-gradient(
                circle at 105% 5%,
                rgba(255, 75, 31, 0.12),
                transparent 38%
            ),
            linear-gradient(
                145deg,
                #f7fbfd,
                #eaf4f8
            );
    }
}

/* =========================================================
   SHOPIFY-READY COMPACT BUILDER
   ========================================================= */

.shop-builder-page {
    background: #eef5f8;
}

.shop-builder {
    min-height: calc(
        100svh -
        var(--header-height) -
        72px
    );
    display: grid;
    grid-template-columns:
        minmax(440px, 0.84fr)
        minmax(0, 1.16fr);
}

.shop-builder__form-panel {
    min-width: 0;
    padding:
        clamp(24px, 2.8vw, 38px)
        clamp(22px, 2.8vw, 36px);
    background: var(--white);
    border-right: 1px solid var(--grey-200);
}

.shop-builder__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: end;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--grey-200);
}

.shop-builder__kicker {
    margin: 0;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.shop-builder__heading h1 {
    margin: 7px 0 0;
    font-family: var(--display);
    font-size: clamp(2.35rem, 3.1vw, 3.7rem);
    font-weight: 400;
    line-height: 0.9;
    text-transform: uppercase;
}

.shop-builder__heading > div:first-child > p:last-child {
    max-width: 610px;
    margin: 10px 0 0;
    color: var(--grey-500);
    font-size: 1rem;
    line-height: 1.5;
}

.shop-builder__price {
    min-width: 126px;
    text-align: right;
}

.shop-builder__price span,
.shop-builder__price strong {
    display: block;
}

.shop-builder__price span {
    color: var(--grey-500);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-builder__price strong {
    margin-top: 4px;
    color: var(--orange);
    font-size: clamp(2rem, 2.4vw, 2.7rem);
}

.shop-builder__progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 16px;
    border: 1px solid var(--grey-200);
}

.shop-builder__progress button {
    min-height: 54px;
    border: 0;
    border-right: 1px solid var(--grey-200);
    color: var(--grey-500);
    background: var(--white);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-builder__progress button:last-child {
    border-right: 0;
}

.shop-builder__progress button span {
    margin-right: 5px;
    color: var(--orange);
}

.shop-builder__progress button.is-active {
    color: var(--white);
    background: var(--black);
}

.shop-builder__progress button.is-complete {
    color: var(--black);
    background: var(--grey-100);
}

#shop-builder-form {
    margin-top: 18px;
}

.shop-builder__step {
    min-height: 610px;
    display: flex;
    flex-direction: column;
}

.shop-builder__step[hidden] {
    display: none;
}

.shop-builder__step-heading {
    margin-bottom: 16px;
}

.shop-builder__step-heading p {
    margin: 0;
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-builder__step-heading h2 {
    margin: 5px 0 0;
    font-family: var(--display);
    font-size: clamp(1.45rem, 1.9vw, 1.95rem);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.shop-builder__step-heading span {
    display: block;
    margin-top: 7px;
    color: var(--grey-500);
    font-size: 0.86rem;
    line-height: 1.45;
}

.shop-builder__notice,
.shop-builder__shopify-note {
    margin-top: 16px;
    padding: 14px 16px;
    background: var(--grey-100);
    border-left: 5px solid var(--orange);
}

.shop-builder__notice strong,
.shop-builder__notice span,
.shop-builder__shopify-note strong {
    display: block;
}

.shop-builder__notice strong,
.shop-builder__shopify-note strong {
    font-family: var(--display);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
}

.shop-builder__notice span,
.shop-builder__shopify-note p {
    margin: 5px 0 0;
    color: var(--grey-500);
    font-size: 0.82rem;
    line-height: 1.45;
}

.shop-builder__next {
    margin-top: auto;
}

.shop-builder__button-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    margin-top: auto;
}

.shop-builder__button-row .secondary-button {
    min-width: 108px;
}

.shop-builder__packages {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.shop-builder__packages label {
    position: relative;
    cursor: pointer;
}

.shop-builder__package-wide {
    grid-column: 1 / -1;
}

.shop-builder__packages input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.shop-builder__packages label > span {
    min-height: 104px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 15px 16px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-left: 5px solid transparent;
}

.shop-builder__packages input:checked + span {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
    border-left-color: var(--orange);
}

.shop-builder__packages strong,
.shop-builder__packages small {
    display: block;
}

.shop-builder__packages strong {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
}

.shop-builder__packages small {
    margin-top: 4px;
    color: var(--grey-500);
    font-size: 0.8rem;
}

.shop-builder__packages input:checked + span small {
    color: rgba(255, 255, 255, 0.66);
}

.shop-builder__packages b {
    color: var(--orange);
    font-size: 1.2rem;
}

.shop-builder__upload {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px;
    text-align: center;
    background: #f7fafb;
    border: 2px dashed var(--grey-300);
    cursor: pointer;
}

.shop-builder__upload:hover {
    border-color: var(--orange);
}

.shop-builder__upload > span {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    font-size: 1.15rem;
}

.shop-builder__upload strong {
    margin-top: 14px;
    font-size: 1.05rem;
}

.shop-builder__upload p {
    margin: 7px 0 0;
    color: var(--grey-500);
    font-size: 0.84rem;
}

.shop-builder__upload input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.shop-builder__upload-list {
    display: grid;
    gap: 7px;
    margin-top: 10px;
}

.shop-builder__upload-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 11px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    font-size: 0.8rem;
}

.shop-builder__upload-item button {
    border: 0;
    color: var(--orange);
    background: transparent;
    font-weight: 900;
}

.shop-builder__message {
    display: none;
    margin-top: 12px;
    padding: 12px 14px;
    font-size: 0.88rem;
}

.shop-builder__message.is-visible {
    display: block;
}

.shop-builder__message.is-success {
    color: var(--success);
    background: #ecfdf3;
    border-left: 4px solid var(--success);
}

.shop-builder__message.is-error {
    color: var(--error);
    background: #fef3f2;
    border-left: 4px solid var(--error);
}

.shop-builder__preview {
    min-width: 0;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    padding:
        clamp(24px, 2.8vw, 38px)
        clamp(24px, 3vw, 42px);
    background:
        radial-gradient(circle at 50% 38%, #ffffff 0%, #eef5f8 62%, #e4edf1 100%);
}

.shop-builder__preview-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.shop-builder__preview-head p {
    margin: 0;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.shop-builder__preview-head h2 {
    margin: 6px 0 0;
    font-family: var(--display);
    font-size: clamp(1.9rem, 2.5vw, 2.9rem);
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
}

.shop-builder__preview-head > span {
    max-width: 300px;
    padding: 9px 11px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--grey-200);
    font-size: 0.78rem;
    font-weight: 800;
    text-align: right;
}

.shop-builder__preview-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 17px;
}

.shop-builder__views,
.shop-builder__zoom {
    display: flex;
    background: var(--white);
    border: 1px solid var(--grey-200);
}

.shop-builder__views button,
.shop-builder__zoom button {
    min-height: 42px;
    padding: 0 13px;
    border: 0;
    border-right: 1px solid var(--grey-200);
    background: var(--white);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-builder__views button:last-child,
.shop-builder__zoom button:last-child {
    border-right: 0;
}

.shop-builder__views button.is-active {
    color: var(--white);
    background: var(--black);
}

.shop-builder__preview-stage {
    min-height: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(7, 9, 11, 0.08);
}

.shop-builder__preview-canvas {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center;
    transition: transform 180ms ease;
}

.shop-builder__preview-canvas img {
    width: 94%;
    height: 94%;
    object-fit: contain;
}

.shop-builder__preview-foot {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    margin-top: 14px;
    padding: 14px 16px;
    color: var(--white);
    background: var(--black);
    border-top: 4px solid var(--orange);
}

.shop-builder__preview-foot strong,
.shop-builder__preview-foot span {
    display: block;
}

.shop-builder__preview-foot strong {
    font-family: var(--display);
    font-size: 0.82rem;
    font-weight: 400;
    text-transform: uppercase;
}

.shop-builder__preview-foot span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.74rem;
}

@media (min-width: 1181px) and (max-height: 820px) {
    .shop-builder,
    .shop-builder__preview {
        min-height: 600px;
    }

    .shop-builder__step {
        min-height: 540px;
    }

    .shop-builder__form-panel,
    .shop-builder__preview {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .shop-builder__heading h1 {
        font-size: 2.35rem;
    }

    .shop-builder__preview-canvas {
        min-height: 430px;
    }
}

@media (max-width: 1180px) {
    .shop-builder {
        grid-template-columns: 1fr;
    }

    .shop-builder__form-panel {
        border-right: 0;
        border-bottom: 1px solid var(--grey-200);
    }

    .shop-builder__step {
        min-height: 0;
    }

    .shop-builder__preview {
        min-height: 720px;
    }
}

@media (max-width: 760px) {
    .shop-builder__form-panel,
    .shop-builder__preview {
        padding-right: 18px;
        padding-left: 18px;
    }

    .shop-builder__heading {
        grid-template-columns: 1fr;
    }

    .shop-builder__price {
        text-align: left;
    }

    .shop-builder__progress {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-builder__progress button:nth-child(2) {
        border-right: 0;
    }

    .shop-builder__progress button:nth-child(1),
    .shop-builder__progress button:nth-child(2) {
        border-bottom: 1px solid var(--grey-200);
    }

    .shop-builder__packages {
        grid-template-columns: 1fr;
    }

    .shop-builder__package-wide {
        grid-column: auto;
    }

    .shop-builder__button-row {
        grid-template-columns: 1fr;
    }

    .shop-builder__preview-head,
    .shop-builder__preview-toolbar,
    .shop-builder__preview-foot {
        align-items: stretch;
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .shop-builder__preview-head > span {
        max-width: none;
        text-align: left;
    }

    .shop-builder__views {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .shop-builder__views button {
        padding: 0 8px;
    }

    .shop-builder__zoom {
        align-self: flex-start;
    }

    .shop-builder__preview-canvas {
        min-height: 380px;
    }
}

/* =========================================================
   BUILDER — MORE BREATHING ROOM AROUND ACTIONS
   ========================================================= */

.shop-builder__step {
    padding-bottom: 8px;
}

.shop-builder__button-row {
    gap: 14px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--grey-200);
}

.shop-builder__button-row .secondary-button,
.shop-builder__button-row .agency-next {
    min-height: 68px;
}

.shop-builder__button-row .secondary-button {
    min-width: 132px;
    padding-inline: 22px;
}

.shop-builder__button-row .agency-next {
    padding-left: 24px;
}

.shop-builder__button-row .agency-next__icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
}

.shop-builder__button-row .agency-next__copy {
    font-size: 0.88rem;
    line-height: 1.2;
}

.shop-builder__button-row .agency-next__copy small {
    margin-bottom: 4px;
}

@media (max-width: 760px) {
    .shop-builder__button-row {
        gap: 10px;
        margin-top: 20px;
        padding-top: 14px;
    }

    .shop-builder__button-row .secondary-button,
    .shop-builder__button-row .agency-next {
        min-height: 62px;
    }

    .shop-builder__button-row .secondary-button {
        min-width: 0;
    }
}

/* =========================================================
   CONTACT — COMPACT AGENCY PAGE
   ========================================================= */

.contact-agency-page {
    background: #f4f9fc;
}

.contact-agency {
    min-height: calc(
        100svh -
        var(--header-height) -
        72px
    );
    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(430px, 0.82fr);
}

.contact-agency__left {
    min-width: 0;
    padding:
        clamp(34px, 4vw, 58px)
        clamp(28px, 4vw, 58px);
    background:
        radial-gradient(
            circle at 94% 12%,
            rgba(255, 75, 31, 0.12),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #f7fbfd 0%,
            #edf6fa 58%,
            #e7f0f4 100%
        );
}

.contact-agency__intro {
    max-width: 860px;
}

.contact-agency__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-agency__eyebrow::before {
    width: 38px;
    height: 4px;
    content: "";
    background: var(--orange);
}

.contact-agency h1 {
    margin: 18px 0 0;
    font-family: var(--display);
    font-size: clamp(3.6rem, 5vw, 5.9rem);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.contact-agency h1 span {
    display: block;
    width: max-content;
    max-width: 100%;
}

.contact-agency h1 .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--black);
}

.contact-agency h1 .orange {
    color: var(--orange);
}

.contact-agency__lead {
    max-width: 720px;
    margin: 22px 0 0;
    color: #26333c;
    font-size: 1rem;
    line-height: 1.62;
}

.contact-agency__support {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 26px;
}

.contact-support-card {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-top: 4px solid var(--orange);
    box-shadow: 0 14px 30px rgba(7, 9, 11, 0.07);
}

.contact-support-card--dark {
    color: var(--white);
    background: linear-gradient(145deg, #07090b, #171b1f);
    border-color: rgba(255, 255, 255, 0.08);
}

.contact-support-card--warm {
    background: linear-gradient(145deg, #fff8f5, #ffede6);
    border-color: #ffd2c5;
}

.contact-support-card__kicker {
    margin: 0;
    color: var(--orange);
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-support-card h2 {
    margin: 10px 0 0;
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.contact-support-card > p:not(.contact-support-card__kicker) {
    margin: 10px 0 0;
    color: var(--grey-500);
    font-size: 1rem;
    line-height: 1.48;
}

.contact-support-card--dark > p:not(.contact-support-card__kicker) {
    color: rgba(255, 255, 255, 0.68);
}

.contact-support-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 900;
}

.contact-support-card ul {
    display: grid;
    gap: 9px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.contact-support-card li {
    position: relative;
    padding-left: 18px;
    color: var(--grey-700);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
}

.contact-support-card li::before {
    position: absolute;
    left: 0;
    content: "✓";
    color: var(--orange);
}

.contact-agency__panel {
    min-width: 0;
    padding:
        clamp(26px, 3vw, 40px)
        clamp(22px, 2.8vw, 36px);
    background: var(--white);
    border-left: 1px solid var(--grey-200);
}

.contact-agency__panel-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--grey-200);
}

.contact-agency__panel-head p {
    margin: 0;
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-agency__panel-head h2 {
    margin: 6px 0 0;
    font-family: var(--display);
    font-size: clamp(2rem, 2.8vw, 3rem);
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
}

.contact-agency__panel-head > span {
    max-width: 190px;
    padding: 8px 10px;
    color: var(--grey-700);
    background: var(--grey-100);
    border: 1px solid var(--grey-200);
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: right;
}

.contact-agency__form {
    margin-top: 18px;
}

.contact-agency__form .field-grid {
    gap: 11px;
}

.contact-agency__form .form-field textarea {
    min-height: 150px;
}

.contact-agency__reassurance {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin-top: 16px;
    padding: 14px 15px;
    background: var(--grey-100);
    border-left: 5px solid var(--orange);
}

.contact-agency__reassurance > span {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    font-weight: 900;
}

.contact-agency__reassurance strong {
    display: block;
    font-family: var(--display);
    font-size: 0.88rem;
    font-weight: 400;
    text-transform: uppercase;
}

.contact-agency__reassurance p {
    margin: 5px 0 0;
    color: var(--grey-500);
    font-size: 0.8rem;
    line-height: 1.4;
}

.contact-agency__submit {
    margin-top: 16px;
}

.contact-agency__message {
    display: none;
    margin-top: 12px;
    padding: 12px 14px;
    font-size: 0.86rem;
}

.contact-agency__message.is-visible {
    display: block;
}

.contact-agency__message.is-success {
    color: var(--success);
    background: #ecfdf3;
    border-left: 4px solid var(--success);
}

.contact-agency__message.is-error {
    color: var(--error);
    background: #fef3f2;
    border-left: 4px solid var(--error);
}

.contact-agency__email-note {
    margin: 14px 0 0;
    color: var(--grey-500);
    font-size: 0.76rem;
    text-align: center;
}

.contact-agency__email-note a {
    color: var(--orange-dark);
    font-weight: 800;
}

@media (min-width: 1181px) and (max-height: 820px) {
    .contact-agency__left,
    .contact-agency__panel {
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .contact-agency h1 {
        font-size: clamp(3.2rem, 4.5vw, 5.1rem);
    }

    .contact-agency__lead {
        margin-top: 16px;
    }

    .contact-agency__support {
        margin-top: 18px;
    }

    .contact-support-card {
        min-height: 205px;
        padding: 15px;
    }

    .contact-support-card > p:not(.contact-support-card__kicker) {
        font-size: 0.92rem;
    }
}

@media (max-width: 1180px) {
    .contact-agency {
        grid-template-columns: 1fr;
    }

    .contact-agency__panel {
        border-top: 1px solid var(--grey-200);
        border-left: 0;
    }
}

@media (max-width: 820px) {
    .contact-agency__support {
        grid-template-columns: 1fr;
    }

    .contact-support-card {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .contact-agency__left,
    .contact-agency__panel {
        padding-right: 18px;
        padding-left: 18px;
    }

    .contact-agency h1 {
        font-size: clamp(3rem, 14vw, 4.7rem);
    }

    .contact-agency__panel-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-agency__panel-head > span {
        max-width: none;
        text-align: left;
    }
}

/* =========================================================
   SHARED HEADER — PHONE CONTACT CARD
   ========================================================= */

.header-phone-card {
    min-height: 50px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;
    grid-template-areas:
        "label icon"
        "number icon";
    column-gap: 14px;
    align-items: center;
    padding: 8px 10px 8px 15px;
    color: var(--white);
    background: var(--black);
    border-left: 4px solid var(--orange);
    box-shadow: 0 12px 26px rgba(7, 9, 11, 0.14);
    transition:
        transform 160ms ease,
        background-color 160ms ease,
        box-shadow 160ms ease;
}

.header-phone-card:hover {
    background: var(--black-soft);
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(7, 9, 11, 0.2);
}

.header-phone-card__label {
    grid-area: label;
    color: var(--orange);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

.header-phone-card strong {
    grid-area: number;
    margin-top: 3px;
    font-family: var(--display);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.header-phone-card__icon {
    width: 38px;
    height: 38px;
    grid-area: icon;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background: var(--white);
    border-radius: 50%;
    font-size: 0.88rem;
    font-weight: 900;
}

@media (max-width: 820px) {
    .header-phone-card {
        min-height: 46px;
        grid-template-columns: minmax(0, 1fr) 34px;
        padding: 7px 8px 7px 12px;
    }

    .header-phone-card__label {
        display: none;
    }

    .header-phone-card strong {
        margin-top: 0;
        font-size: 0.8rem;
    }

    .header-phone-card__icon {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 520px) {
    .header-phone-card {
        grid-template-columns: 1fr;
        grid-template-areas: "number";
        padding: 10px 12px;
        text-align: center;
    }

    .header-phone-card__icon {
        display: none;
    }

    .header-phone-card strong {
        font-size: 0.72rem;
    }
}

/* =========================================================
   RESPONSIVE HEADER — HAMBURGER NAVIGATION
   ========================================================= */

.site-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    color: var(--black);
    background: var(--white);
    border: 1px solid var(--grey-200);
    cursor: pointer;
}

.site-menu-toggle span {
    width: 100%;
    height: 2px;
    display: block;
    background: currentColor;
    transition:
        transform 180ms ease,
        opacity 180ms ease;
}

.site-menu-toggle span + span {
    margin-top: 6px;
}

@media (max-width: 820px) {
    .site-header {
        grid-template-columns: 1fr auto auto;
        gap: 10px;
        padding: 10px 14px;
    }

    .site-menu-toggle {
        display: block;
        grid-column: 2;
        grid-row: 1;
    }

    .header-phone-card {
        grid-column: 3;
        grid-row: 1;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 60;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        background: rgba(247, 251, 253, 0.99);
        border-bottom: 1px solid var(--grey-200);
        box-shadow: 0 20px 38px rgba(7, 9, 11, 0.16);
        transform: translateY(-8px);
        transition:
            max-height 240ms ease,
            opacity 180ms ease,
            transform 180ms ease,
            visibility 180ms ease;
    }

    .site-nav a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 56px;
        padding: 15px 20px;
        border-top: 1px solid var(--grey-200);
        font-size: 0.82rem;
    }

    .site-nav a::after {
        content: "↗";
        color: var(--orange);
        font-size: 0.9rem;
    }

    .site-nav a[aria-current="page"] {
        color: var(--white);
        background: var(--black);
        border-left: 5px solid var(--orange);
    }

    .site-header.is-menu-open .site-nav {
        max-height: 380px;
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .site-header.is-menu-open .site-menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .site-header.is-menu-open .site-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-menu-open .site-menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 520px) {
    .site-header {
        grid-template-columns: 1fr 44px;
    }

    .site-menu-toggle {
        width: 44px;
        height: 44px;
        grid-column: 2;
    }

    .header-phone-card {
        display: none;
    }
}
