:root {
    color-scheme: light;
    --petrol-950: #062f34;
    --petrol-900: #073f45;
    --petrol-800: #09525a;
    --petrol-100: #dff3ef;
    --orange-600: #ef7d18;
    --orange-500: #ff8f2a;
    --red-600: #d63d35;
    --ink: #172024;
    --muted: #5a6669;
    --line: #d9e2df;
    --surface: #ffffff;
    --soft: #f3f7f5;
    --cream: #fff6ea;
    --shadow: 0 20px 60px rgba(6, 47, 52, 0.14);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--surface);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    left: 50%;
    max-width: 1280px;
    padding: 18px clamp(20px, 5vw, 52px);
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
}

.brand {
    align-items: center;
    color: #fff;
    display: inline-flex;
    gap: 10px;
}

.brand-icon {
    display: block;
    height: 36px;
    width: 36px;
}

.brand-word {
    font-size: 1.04rem;
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1;
}

.site-nav {
    align-items: center;
    color: rgba(255, 255, 255, 0.92);
    display: flex;
    font-size: 0.94rem;
    gap: 22px;
}

.nav-cta {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 8px;
    padding: 9px 14px;
}

.hero {
    display: grid;
    min-height: clamp(680px, 82vh, 820px);
    overflow: hidden;
    position: relative;
}

.hero-bg,
.hero-overlay {
    inset: 0;
    position: absolute;
}

.hero-bg {
    background-image: url("/images/hero-nachschub-delivery-v2.png");
    background-position: center;
    background-size: cover;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(6, 47, 52, 0.94) 0%, rgba(6, 47, 52, 0.82) 42%, rgba(6, 47, 52, 0.22) 72%, rgba(6, 47, 52, 0.06) 100%),
        linear-gradient(0deg, rgba(6, 47, 52, 0.18), rgba(6, 47, 52, 0.18));
}

.hero-content {
    align-self: center;
    color: #fff;
    margin: 0 auto;
    max-width: 1280px;
    padding: clamp(96px, 12vh, 128px) clamp(20px, 5vw, 52px) clamp(56px, 8vh, 96px);
    position: relative;
    width: 100%;
    z-index: 1;
}

.eyebrow {
    color: var(--orange-500);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin: 0 0 14px;
    text-transform: uppercase;
}

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

h1 {
    font-size: clamp(3rem, 6.2vw, 5.6rem);
    letter-spacing: 0;
    line-height: 0.95;
    margin-bottom: 26px;
    max-width: 860px;
}

h2 {
    font-size: clamp(1.9rem, 3.1vw, 3.15rem);
    letter-spacing: 0;
    line-height: 1.08;
    margin-bottom: 18px;
}

h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.hero-copy {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 650px;
}

.text-mark {
    font-weight: 900;
}

.text-mark.primary {
    color: var(--petrol-800);
}

.text-mark.secondary {
    color: var(--orange-600);
}

.brand-name {
    color: var(--petrol-900);
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
}

.hero .text-mark.primary,
.hero .text-mark.secondary,
.visual-band .text-mark.primary,
.visual-band .text-mark.secondary {
    color: var(--orange-500);
}

.hero .brand-name,
.status-band .brand-name,
.visual-band .brand-name {
    color: var(--orange-500);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button-primary,
.button-secondary,
.submit-button,
.button-back {
    align-items: center;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.button-primary,
.submit-button {
    background: var(--orange-500);
    border: 1px solid var(--orange-500);
    color: var(--petrol-950);
}

.button-primary:hover,
.submit-button:hover {
    background: #ff9f43;
    border-color: #ff9f43;
    box-shadow: 0 12px 28px rgba(239, 125, 24, 0.28);
    transform: translateY(-1px);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.38);
    color: #fff;
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.17);
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 28px rgba(6, 47, 52, 0.22);
    transform: translateY(-1px);
}

.button-back {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--petrol-950);
}

.button-back:hover {
    background: var(--petrol-100);
    border-color: rgba(7, 63, 69, 0.32);
    box-shadow: 0 10px 24px rgba(6, 47, 52, 0.12);
    transform: translateY(-1px);
}

.button-primary:active,
.button-secondary:active,
.submit-button:active,
.button-back:active {
    box-shadow: none;
    transform: translateY(0);
}

.submit-button:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.submit-button:disabled:hover {
    background: var(--orange-500);
    border-color: var(--orange-500);
    box-shadow: none;
}

.status-band {
    background: var(--petrol-950);
    color: #fff;
}

.section-inner {
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 clamp(20px, 5vw, 52px);
    width: 100%;
}

.status-grid {
    align-items: center;
    display: grid;
    gap: 20px;
    grid-template-columns: 160px 1fr;
    padding-bottom: 28px;
    padding-top: 28px;
}

.status-label {
    color: var(--orange-500);
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.status-grid p:last-child {
    color: rgba(255, 255, 255, 0.86);
    margin: 0;
}

.section {
    padding: clamp(68px, 8vw, 108px) 0;
}

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

.coverage-section {
    background:
        linear-gradient(180deg, #fff 0%, var(--soft) 16%, var(--soft) 100%);
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    padding-bottom: clamp(52px, 6vw, 76px);
}

.coverage-layout {
    display: grid;
    gap: clamp(24px, 3vw, 34px);
    grid-template-columns: 1fr;
}

.coverage-layout > * {
    min-width: 0;
}

.coverage-layout h2,
.section-heading h2,
.visual-copy h2,
.form-copy h2 {
    font-size: clamp(1.85rem, 3vw, 3.1rem);
    line-height: 1.1;
}

.coverage-intro {
    max-width: 920px;
}

.coverage-intro > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
}

.coverage-term {
    font-weight: 900;
}

.coverage-term-start {
    color: #168257;
}

.coverage-term-expansion {
    color: var(--orange-600);
}

.coverage-lists {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.coverage-list {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
}

.coverage-list h3 {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-bottom: 6px;
}

.coverage-list h3::before {
    border-radius: 999px;
    content: "";
    height: 11px;
    width: 11px;
}

.coverage-list.phase_1 h3::before {
    background: #22a06b;
}

.coverage-list.phase_2 h3::before {
    background: var(--orange-500);
}

.coverage-list p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 12px;
}

.location-list {
    align-items: start;
    display: flex;
    flex-wrap: wrap;
    gap: 7px 16px;
}

.location-item {
    break-inside: avoid;
    color: var(--ink);
    display: inline-flex;
    column-gap: 5px;
    font-size: 0.85rem;
    line-height: 1.25;
    white-space: nowrap;
}

.location-item strong {
    flex: 0 0 auto;
    font-weight: 900;
    white-space: nowrap;
}

.location-item span {
    flex: 1 1 auto;
    min-width: 0;
}

.coverage-list.phase_1 .location-item strong {
    color: #168257;
}

.coverage-list.phase_2 .location-item strong {
    color: var(--orange-600);
}

.coverage-map {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 40px rgba(6, 47, 52, 0.08);
    padding: 16px;
}

.delivery-map {
    aspect-ratio: 16 / 9;
    background: #dfe9e4;
    border: 1px solid var(--line);
    border-radius: 8px;
    height: clamp(430px, 45vw, 560px);
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 0;
}

.delivery-map .leaflet-control-attribution {
    font-size: 0.68rem;
}

.map-preview {
    background: #dfe9e4;
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.delivery-map.is-live .map-preview,
.delivery-map.is-live .map-consent {
    display: none;
}

.map-consent {
    align-items: center;
    background: rgba(6, 47, 52, 0.48);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 14px;
    inset: 0;
    justify-content: center;
    padding: clamp(18px, 4vw, 32px);
    position: absolute;
    text-align: center;
}

.coverage-map .map-consent p {
    color: rgba(255, 255, 255, 0.93);
    font-size: 0.98rem;
    margin: 0;
    max-width: 520px;
    text-shadow: 0 2px 10px rgba(6, 47, 52, 0.24);
}

.map-consent-button {
    box-shadow: 0 16px 34px rgba(6, 47, 52, 0.22);
}

.leaflet-container {
    color: var(--ink);
    font-family: inherit;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
}

.leaflet-popup-content {
    font-size: 0.88rem;
    line-height: 1.35;
    margin: 10px 12px;
}

.leaflet-popup-content strong {
    color: var(--petrol-900);
}

.delivery-marker {
    align-items: center;
    border: 2px solid #fff;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(6, 47, 52, 0.24);
    display: flex;
    height: 16px;
    justify-content: center;
    width: 16px;
}

.delivery-marker::after {
    background: #fff;
    border-radius: 999px;
    content: "";
    height: 4px;
    width: 4px;
}

.delivery-marker.phase-1 {
    background: #22a06b;
}

.delivery-marker.phase-2 {
    background: var(--orange-500);
}

.map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.map-legend span {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: inline-flex;
    font-weight: 800;
    gap: 8px;
    padding: 8px 11px;
}

.map-legend i {
    border-radius: 999px;
    display: inline-block;
    height: 10px;
    width: 10px;
}

.legend-phase-one {
    background: #22a06b;
}

.legend-phase-two {
    background: var(--orange-500);
}

.coverage-map p {
    color: var(--muted);
    font-size: 0.88rem;
    margin: 8px 0 0;
}

.section-cta {
    align-items: center;
    background: var(--petrol-950);
    border-radius: 8px;
    color: #fff;
    display: flex;
    gap: 22px;
    justify-content: space-between;
    padding: clamp(20px, 3vw, 30px);
}

.section-cta-label {
    color: var(--orange-500);
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.section-cta p {
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.1rem, 2vw, 1.32rem);
    font-weight: 750;
    line-height: 1.28;
    margin: 0;
}

.section-cta .brand-name {
    color: #fff;
    display: inline;
    font: inherit;
    font-weight: 850;
    letter-spacing: 0;
    margin: 0;
    text-transform: none;
    white-space: normal;
}

.section-cta .button-primary {
    flex: 0 0 auto;
}

.split {
    display: grid;
    gap: clamp(30px, 5vw, 64px);
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.benefit-section {
    background: #fff;
    padding-top: clamp(52px, 6vw, 76px);
}

.split > div:first-child p:not(.eyebrow),
.section-heading p,
.form-copy p {
    color: var(--muted);
    font-size: 1.08rem;
}

.benefit-list {
    border-top: 1px solid var(--line);
}

.benefit-list article {
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 5px 18px;
    grid-template-areas:
        "number title"
        "number text";
    grid-template-columns: 54px 1fr;
    padding: 22px 0;
}

.benefit-icon,
.point-icon {
    align-items: center;
    background: var(--petrol-100);
    border: 1px solid rgba(9, 82, 90, 0.16);
    border-radius: 8px;
    color: var(--petrol-900);
    display: inline-flex;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.benefit-icon {
    align-self: center;
    grid-area: number;
}

.benefit-icon svg,
.point-icon svg,
.category-grid svg,
.box-icon svg,
.choice span svg {
    fill: none;
    height: 23px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
    width: 23px;
}

.benefit-list h3 {
    grid-area: title;
    line-height: 1.25;
    margin: 0;
}

.benefit-list p {
    color: var(--muted);
    grid-area: text;
    line-height: 1.45;
    margin: 0;
}

.visual-band {
    background: var(--petrol-950);
    color: #fff;
    overflow: hidden;
    padding: clamp(68px, 9vw, 112px) 0;
}

.visual-layout {
    align-items: stretch;
    display: grid;
    gap: clamp(28px, 5vw, 70px);
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.visual-photo {
    background-image:
        linear-gradient(180deg, rgba(6, 47, 52, 0.06), rgba(6, 47, 52, 0.3)),
        url("/images/hero-nachschub-delivery.png");
    background-position: 58% center;
    background-size: cover;
    min-height: 460px;
}

.visual-copy {
    align-self: center;
}

.visual-copy h2 {
    max-width: 640px;
}

.visual-points {
    display: grid;
    gap: 16px;
    margin-top: 34px;
}

.visual-points article {
    display: grid;
    gap: 5px 16px;
    grid-template-areas:
        "icon title"
        "icon text";
    grid-template-columns: 48px 1fr;
}

.visual-points .point-icon {
    align-self: center;
    grid-area: icon;
}

.visual-points h3 {
    grid-area: title;
    line-height: 1.25;
    margin: 0;
}

.visual-points p {
    color: rgba(255, 255, 255, 0.74);
    grid-area: text;
    line-height: 1.45;
    margin: 0;
}

.point-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--orange-500);
}

.section-heading {
    max-width: 720px;
}

.trust-section {
    background: #fff;
}

.trust-gallery {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 34px;
}

.trust-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    overflow: hidden;
}

.trust-card img {
    aspect-ratio: 3 / 2;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.trust-card div {
    display: grid;
    gap: 8px;
    padding: 22px;
}

.trust-card h3,
.trust-card p {
    margin: 0;
}

.trust-card p {
    color: var(--muted);
}

.category-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 34px;
}

.category-grid span {
    align-content: start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 8px 26px rgba(6, 47, 52, 0.06);
    color: var(--petrol-950);
    display: grid;
    gap: 16px;
    font-weight: 750;
    min-height: 126px;
    padding: 22px;
}

.category-grid svg {
    background: var(--petrol-100);
    border-radius: 8px;
    color: var(--petrol-900);
    height: 42px;
    padding: 9px;
    width: 42px;
}

.choice span svg {
    flex: 0 0 auto;
    height: 24px;
    width: 24px;
}

.choice span strong {
    font: inherit;
}

.box-section {
    background: #fff;
}

.abo-heading {
    max-width: 820px;
}

.abo-heading p {
    max-width: 520px;
}

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

.abo-card {
    background: var(--petrol-950);
    border-radius: 8px;
    color: #fff;
    display: grid;
    min-height: 430px;
    overflow: hidden;
    position: relative;
}

.abo-card img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.abo-card::after {
    background:
        linear-gradient(180deg, rgba(6, 47, 52, 0.02) 0%, rgba(6, 47, 52, 0.28) 42%, rgba(6, 47, 52, 0.9) 100%);
    content: "";
    inset: 0;
    position: absolute;
}

.abo-card div {
    align-self: end;
    display: grid;
    gap: 7px;
    padding: 24px;
    position: relative;
    z-index: 1;
}

.abo-card span {
    color: var(--orange-500);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.abo-card h3 {
    font-size: clamp(1.45rem, 2.4vw, 2.1rem);
    line-height: 1.05;
    margin: 0;
}

.abo-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    margin: 0;
}

.box-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 34px;
}

.box-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 14px;
    grid-template-columns: 52px 1fr;
    padding: 24px;
}

.box-icon {
    align-items: center;
    background: var(--petrol-100);
    border-radius: 8px;
    color: var(--petrol-900);
    display: inline-flex;
    height: 52px;
    justify-content: center;
    width: 52px;
}

.box-icon svg {
    height: 28px;
    width: 28px;
}

.box-tag {
    align-self: center;
    color: var(--orange-600);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.box-card h3,
.box-card p,
.box-card ul {
    grid-column: 1 / -1;
    margin: 0;
}

.box-card p,
.box-card li {
    color: var(--muted);
}

.box-card ul {
    display: grid;
    gap: 7px;
    list-style: none;
    padding: 0;
}

.box-card li {
    align-items: center;
    display: flex;
    gap: 9px;
}

.box-card li::before {
    background: var(--petrol-100);
    border-radius: 999px;
    content: "";
    height: 7px;
    width: 7px;
}

.faq-section {
    background: var(--soft);
    border-top: 1px solid var(--line);
}

.faq-layout {
    display: grid;
    gap: clamp(28px, 4vw, 46px);
}

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

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

.faq-list summary {
    align-items: center;
    color: var(--petrol-950);
    cursor: pointer;
    display: flex;
    font-size: 1.06rem;
    font-weight: 850;
    gap: 14px;
    justify-content: space-between;
    line-height: 1.25;
    list-style: none;
    padding: 20px;
}

.faq-list summary:focus-visible {
    outline: 3px solid rgba(255, 143, 42, 0.58);
    outline-offset: -3px;
}

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

.faq-question {
    display: block;
    min-width: 0;
}

.faq-list summary::after {
    background: var(--petrol-100);
    border-radius: 8px;
    color: var(--petrol-900);
    content: "+";
    flex: 0 0 auto;
    font-weight: 900;
    height: 28px;
    line-height: 28px;
    text-align: center;
    transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
    width: 28px;
}

.faq-list details[open] summary::after {
    background: var(--orange-500);
    color: var(--petrol-950);
    content: "-";
}

.faq-list summary:hover::after {
    transform: translateY(-1px);
}

.faq-list p {
    border-top: 1px solid var(--line);
    color: var(--muted);
    margin: 0;
    padding: 14px 20px 20px;
}

.final-cta {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 40px rgba(6, 47, 52, 0.08);
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: clamp(24px, 4vw, 42px);
}

.final-cta h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.08;
    margin-bottom: 12px;
    max-width: 760px;
}

.final-cta p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
    margin: 0;
    max-width: 680px;
}

.form-section {
    background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
    padding: clamp(76px, 10vw, 126px) 0;
}

.form-layout {
    align-items: start;
    display: grid;
    gap: clamp(34px, 5vw, 72px);
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.form-copy {
    position: sticky;
    top: 32px;
}

.signal-list {
    color: var(--muted);
    display: grid;
    gap: 9px;
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
}

.signal-list li {
    align-items: center;
    display: flex;
    gap: 10px;
}

.signal-list li::before {
    background: var(--orange-500);
    border-radius: 999px;
    content: "";
    height: 8px;
    width: 8px;
}

.service-note {
    background: rgba(238, 113, 27, 0.08);
    border-left: 3px solid var(--orange-500);
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.45;
    margin: 24px 0 0;
    max-width: 520px;
    padding: 13px 15px;
}

.service-note strong {
    color: var(--petrol-950);
}

.lead-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: clamp(22px, 4vw, 40px);
}

.lead-form.is-enhanced .form-step[hidden] {
    display: none;
}

.lead-form.is-enhanced .form-step.is-entering {
    animation: formStepIn 0.24s ease-out;
}

.lead-form.is-saving {
    cursor: wait;
}

@keyframes formStepIn {
    from {
        opacity: 0;
        transform: translateX(14px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-progress {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-bottom: 28px;
}

.form-progress span {
    border-bottom: 3px solid var(--line);
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    padding-bottom: 10px;
    transition: border-color 0.18s ease, color 0.18s ease;
}

.form-progress span.is-active {
    border-color: var(--orange-500);
    color: var(--petrol-950);
}

.form-step h3 {
    color: var(--petrol-950);
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.08;
    margin-bottom: 10px;
}

.step-count {
    color: var(--orange-600);
    font-size: 0.78rem;
    font-weight: 850;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.form-alert {
    background: #fff0ec;
    border: 1px solid #f0b8aa;
    border-radius: 8px;
    color: #8a2f22;
    display: grid;
    gap: 2px;
    margin-bottom: 24px;
    padding: 14px 16px;
}

fieldset {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 0;
    padding: 28px 0;
}

.form-step fieldset:first-of-type {
    border-top: 0;
    padding-top: 0;
}

legend,
.text-field > span {
    color: var(--petrol-950);
    display: block;
    font-size: 1rem;
    font-weight: 850;
    margin-bottom: 14px;
}

.field-hint,
.privacy-note {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 14px;
}

.option-grid,
.radio-row {
    display: grid;
    gap: 10px;
}

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

.option-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.radio-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.choice {
    cursor: pointer;
    min-width: 0;
}

.choice input {
    position: absolute;
    transform: scale(0);
}

.choice span {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    gap: 11px;
    font-weight: 700;
    min-height: 54px;
    padding: 13px 14px;
    transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.choice:hover span {
    background: #f8fcfa;
    border-color: rgba(7, 63, 69, 0.34);
    box-shadow: 0 8px 22px rgba(6, 47, 52, 0.1);
    transform: translateY(-1px);
}

.choice input:checked + span {
    background: var(--petrol-900);
    border-color: var(--petrol-900);
    color: #fff;
}

.choice:hover input:checked + span {
    background: var(--petrol-800);
    border-color: var(--petrol-800);
    box-shadow: 0 10px 26px rgba(6, 47, 52, 0.18);
}

.choice input:focus-visible + span,
.text-field input:focus-visible,
.text-field select:focus-visible,
.button-back:focus-visible,
.submit-button:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(255, 143, 42, 0.58);
    outline-offset: 3px;
}

.text-field {
    display: block;
    margin-top: 16px;
}

.text-field input {
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    min-height: 52px;
    padding: 0 14px;
    transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
    width: 100%;
}

.text-field select {
    appearance: none;
    background:
        linear-gradient(45deg, transparent 50%, var(--petrol-900) 50%) calc(100% - 20px) 50% / 7px 7px no-repeat,
        linear-gradient(135deg, var(--petrol-900) 50%, transparent 50%) calc(100% - 15px) 50% / 7px 7px no-repeat,
        #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    min-height: 52px;
    padding: 0 42px 0 14px;
    transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
    width: 100%;
}

.text-field input:hover,
.text-field select:hover {
    background-color: #f8fcfa;
    border-color: rgba(7, 63, 69, 0.34);
    box-shadow: 0 8px 20px rgba(6, 47, 52, 0.08);
}

.text-field em,
.field-error {
    color: var(--red-600);
    display: block;
    font-size: 0.9rem;
    font-style: normal;
    margin: 8px 0 0;
}

.field-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr 1fr;
}

.field-grid.single {
    grid-template-columns: 1fr;
}

.consent {
    align-items: flex-start;
    color: var(--muted);
    display: flex;
    gap: 12px;
    margin: 22px 0 14px;
}

.consent input {
    accent-color: var(--petrol-900);
    margin-top: 4px;
}

.consent a,
.legal-content a,
.footer-links a,
.thanks-links a {
    color: inherit;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.submit-button {
    font-size: 1rem;
    margin-top: 10px;
    width: 100%;
}

.form-actions {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 10px;
}

.form-actions.split-actions {
    justify-content: space-between;
}

.form-actions .submit-button,
.form-actions .button-back {
    margin-top: 0;
    width: auto;
}

.form-actions .submit-button {
    min-width: 180px;
}

.site-footer {
    background: var(--petrol-950);
    color: rgba(255, 255, 255, 0.78);
    padding: 48px 0 28px;
}

.footer-content {
    align-items: start;
    display: grid;
    gap: clamp(28px, 4vw, 56px);
    grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 1fr));
}

.footer-brand-block {
    max-width: 390px;
}

.footer-logo {
    align-items: center;
    color: #fff;
    display: inline-flex;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-brand-icon {
    flex: 0 0 auto;
}

.footer-brand-block p,
.footer-column p {
    margin: 0;
}

.footer-column h2 {
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.footer-column ul {
    display: grid;
    gap: 9px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li,
.footer-column p,
.footer-links a,
.footer-legal a,
.footer-bottom {
    font-size: 0.95rem;
}

.footer-column a,
.footer-links a,
.footer-legal a,
.footer-legal button,
.thanks-links button {
    background: none;
    border: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    padding: 0;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.footer-column a:hover,
.footer-links a:hover,
.footer-legal a:hover,
.footer-legal button:hover,
.thanks-links button:hover {
    color: #fff;
}

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

.footer-links,
.footer-legal,
.thanks-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-column .footer-links {
    flex-direction: column;
    gap: 9px;
}

.footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 34px;
    padding-top: 22px;
}

.thank-you-page {
    background: var(--petrol-950);
}

.thanks {
    color: #fff;
    display: grid;
    min-height: 100vh;
    padding: clamp(24px, 5vw, 60px);
    place-items: center;
}

.thanks > .brand {
    left: clamp(24px, 5vw, 60px);
    position: absolute;
    top: 28px;
}

.thanks .brand-icon {
    height: 36px;
    width: 36px;
}

.thanks-panel {
    max-width: 720px;
    text-align: center;
}

.thanks-panel h1 {
    font-size: clamp(2.7rem, 7vw, 5.4rem);
}

.thanks-panel p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.18rem;
    margin-bottom: 30px;
}

.thanks-links {
    color: rgba(255, 255, 255, 0.76);
    justify-content: center;
    margin-top: 24px;
}

.consent-banner {
    align-items: end;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    bottom: 18px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    left: 50%;
    max-width: min(960px, calc(100vw - 32px));
    padding: 22px;
    position: fixed;
    transform: translateX(-50%);
    width: 100%;
    z-index: 40;
}

.consent-banner[hidden] {
    display: none;
}

.consent-banner h2 {
    color: var(--petrol-950);
    font-size: 1.28rem;
    margin-bottom: 8px;
}

.consent-banner p {
    color: var(--muted);
    margin-bottom: 14px;
}

.consent-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.consent-options label {
    align-items: center;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: inline-flex;
    gap: 8px;
    min-height: 40px;
    padding: 8px 12px;
}

.consent-options input {
    accent-color: var(--petrol-900);
}

.consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    min-width: 280px;
}

.consent-actions .button-primary,
.consent-actions .button-secondary {
    min-height: 42px;
    padding: 10px 13px;
}

.consent-actions a {
    align-self: center;
    color: var(--muted);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-page {
    background: var(--soft);
}

.legal-header {
    background: var(--petrol-950);
    left: 0;
    max-width: none;
    position: static;
    transform: none;
}

.legal-main {
    padding: clamp(42px, 7vw, 86px) clamp(20px, 5vw, 52px);
}

.legal-content {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: 0 auto;
    max-width: 920px;
    padding: clamp(28px, 5vw, 56px);
}

.legal-content h1 {
    color: var(--petrol-950);
    font-size: clamp(2.35rem, 5vw, 4.2rem);
    line-height: 1;
    margin-bottom: 32px;
}

.legal-content h2 {
    color: var(--petrol-950);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    margin-bottom: 12px;
}

.legal-content section + section {
    border-top: 1px solid var(--line);
    margin-top: 30px;
    padding-top: 30px;
}

.legal-content p,
.legal-content li,
.legal-data {
    color: var(--muted);
}

.legal-content ul {
    margin: 0 0 18px;
    padding-left: 22px;
}

.legal-content li + li {
    margin-top: 8px;
}

.legal-data {
    display: grid;
    gap: 14px;
    margin: 0;
}

.legal-data div {
    display: grid;
    gap: 4px;
}

.legal-data dt {
    color: var(--ink);
    font-weight: 850;
}

.legal-data dd {
    margin: 0;
}

@media (max-width: 980px) {
    .site-nav {
        display: none;
    }

    .hero {
        min-height: clamp(620px, 76vh, 760px);
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(6, 47, 52, 0.95) 0%, rgba(6, 47, 52, 0.78) 62%, rgba(6, 47, 52, 0.26) 100%),
            linear-gradient(0deg, rgba(6, 47, 52, 0.14), rgba(6, 47, 52, 0.14));
    }

    .split,
    .visual-layout,
    .form-layout,
    .coverage-layout,
    .status-grid,
    .final-cta {
        grid-template-columns: 1fr;
    }

    .section-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-cta .button-primary,
    .final-cta .button-primary {
        width: 100%;
    }

    .form-copy {
        position: static;
    }

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

    .trust-gallery {
        grid-template-columns: 1fr;
    }

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

    .abo-card {
        min-height: 360px;
    }

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

    .coverage-lists {
        grid-template-columns: 1fr;
    }

    .visual-photo {
        min-height: 360px;
    }

    .radio-row,
    .option-grid.compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .footer-brand-block {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 16px 20px;
    }

    .location-item {
        font-size: 0.84rem;
    }

    .hero-content {
        padding-bottom: 52px;
        padding-top: 92px;
        max-width: 390px;
    }

    .status-grid {
        max-width: 390px;
    }

    h1 {
        font-size: clamp(2.1rem, 9vw, 2.35rem);
        line-height: 1.05;
    }

    h2,
    .coverage-layout h2,
    .section-heading h2,
    .visual-copy h2,
    .form-copy h2,
    .final-cta h2 {
        font-size: clamp(1.65rem, 7vw, 2.05rem);
        line-height: 1.12;
    }

    .hero-actions,
    .footer-inner,
    .footer-bottom,
    .consent-banner,
    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .consent-banner {
        grid-template-columns: 1fr;
    }

    .consent-actions {
        justify-content: stretch;
        min-width: 0;
    }

    .consent-actions .button-primary,
    .consent-actions .button-secondary {
        width: 100%;
    }

    .button-primary,
    .button-secondary,
    .button-back,
    .form-actions .submit-button {
        width: 100%;
    }

    .category-grid,
    .box-grid,
    .option-grid,
    .option-grid.compact,
    .form-progress,
    .radio-row,
    .field-grid {
        grid-template-columns: 1fr;
    }

    .visual-photo {
        min-height: 300px;
    }

    .visual-points article {
        grid-template-columns: 44px 1fr;
    }

    .faq-list summary {
        align-items: flex-start;
        font-size: 1rem;
        padding: 16px;
    }

    .faq-list p {
        padding: 0 16px 16px;
    }

    .coverage-map {
        padding: 12px;
    }

    .delivery-map {
        aspect-ratio: 1 / 1.12;
        height: 420px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
