:root {
    /* Central palette: change these tokens to retheme the whole landing page. */
    --brand-deep: #005a82;
    --brand: #0078b4;
    --brand-strong: #004c70;
    --brand-soft: #eff7fa;
    --brand-soft-strong: #dceef5;
    --brand-border: #b9d8e5;
    --accent: #0078b4;
    --accent-hover: #005a82;
    --accent-soft: #eef7fa;
    --accent-on-dark: #bdeaff;
    --text: #24313a;
    --text-muted: #68747c;
    --surface: #ffffff;
    --surface-soft: #f4f6f7;
    --border: #dde3e7;
    --state-success: #0078b4;
    --state-warning: #6f777c;
    --focus-ring: rgba(0, 120, 180, 0.3);
    --shadow-accent: 0 12px 25px rgba(0, 90, 130, 0.2);
    --shadow-brand-soft: 0 14px 38px rgba(0, 71, 103, 0.07);
    --shadow-brand: 0 24px 70px rgba(0, 71, 103, 0.13);
    --gradient-brand: linear-gradient(125deg, var(--brand-deep) 0%, var(--brand-strong) 64%, var(--brand) 100%);

    /* Compatibility aliases used by the existing components. */
    --navy: var(--brand-deep);
    --purple: var(--brand);
    --purple-dark: var(--brand-strong);
    --blue: var(--accent);
    --blue-light: var(--accent-soft);
    --ink: var(--text);
    --muted: var(--text-muted);
    --line: var(--border);
    --soft: var(--surface-soft);
    --white: var(--surface);
    --success: var(--state-success);
    --warning: var(--state-warning);
    --shadow: var(--shadow-brand);
    --radius: 22px;
    --font: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body, input, select, textarea, button { font-family: var(--font); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, label, select, input[type="range"], input[type="checkbox"], input[type="radio"] { cursor: pointer; }

.thank-you-main { display: grid; min-height: calc(100vh - 238px); padding: 88px 0; place-items: center; background: var(--soft); }
.thank-you-card { width: min(760px, 100%); margin: 0 auto; padding: 58px; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.thank-you-icon { display: grid; width: 72px; height: 72px; margin: 0 auto 24px; place-items: center; color: var(--white); background: var(--success); border-radius: 50%; font-size: 30px; box-shadow: 0 12px 28px rgba(0,90,130,.18); }
.thank-you-card .section-kicker { justify-content: center; }
.thank-you-card h1 { margin: 12px 0 16px; color: var(--navy); font-size: clamp(38px,5vw,56px); line-height: 1.08; letter-spacing: -.04em; }
.thank-you-card > p { max-width: 600px; margin: 0 auto; color: var(--muted); font-size: 17px; line-height: 1.7; }
.thank-you-next { display: grid; margin: 28px 0 0; padding: 18px 20px; grid-template-columns: 40px minmax(0,1fr); align-items: center; gap: 14px; color: var(--ink); text-align: left; background: var(--blue-light); border-radius: 13px; }
.thank-you-next > i { display: grid; width: 40px; height: 40px; place-items: center; color: var(--blue); background: var(--white); border-radius: 11px; }
.thank-you-next strong, .thank-you-next span { display: block; }
.thank-you-next span { margin-top: 2px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.thank-you-actions { display: flex; margin-top: 30px; justify-content: center; flex-wrap: wrap; gap: 14px; }
.thank-you-actions .button-secondary { color: var(--purple); background: var(--white); border: 1px solid var(--brand-border); }
.thank-you-actions .button-secondary:hover, .thank-you-actions .button-secondary:focus-visible { color: var(--white); background: var(--purple); }

.container { width: min(1240px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
    position: relative;
    z-index: 20;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 90, 130, 0.08);
}

.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 285px; height: auto; object-fit: contain; border-radius: 8px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { color: var(--purple); font-size: 19px; letter-spacing: .08em; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 12px; letter-spacing: .03em; }
.header-actions { display: flex; align-items: center; gap: 24px; }
.header-note { color: var(--muted); font-size: 14px; font-weight: 600; }
.header-note i { margin-right: 7px; color: var(--blue); }
.phone-link, .header-phone { display: flex; align-items: center; gap: 10px; color: var(--purple); font-size: 16px; font-weight: 700; line-height: 1.2; }
.phone-link > i, .header-phone > i { display: grid; width: 38px; height: 38px; place-items: center; color: var(--blue); background: var(--blue-light); border-radius: 50%; }
.phone-link span, .header-phone span { display: flex; flex-direction: column; }
.phone-link small, .header-phone small { margin-bottom: 2px; color: var(--muted); font-size: 12px; font-weight: 500; }

.button {
    display: inline-flex;
    min-height: 54px;
    padding: 0 25px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    background: var(--blue);
    border: 0;
    border-radius: 12px;
    box-shadow: var(--shadow-accent);
    font-weight: 700;
    line-height: 1.2;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover, .button:focus-visible { color: var(--white); background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(0, 90, 130, .24); }
.button-small { min-height: 46px; padding-inline: 20px; font-size: 14px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
}

.hero { position: relative; overflow: hidden; padding: 80px 0 88px; color: var(--white); background: var(--gradient-brand); }
.hero::after { position: absolute; width: 560px; height: 560px; right: -180px; bottom: -340px; content: ""; border: 90px solid rgba(255,255,255,.035); border-radius: 50%; }
.hero-pattern { position: absolute; width: 540px; height: 540px; top: -310px; left: -140px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 75px rgba(255,255,255,.022), 0 0 0 150px rgba(255,255,255,.018); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .92fr; gap: 86px; align-items: center; }
.hero-copy { min-width: 0; max-width: 610px; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--blue); font-size: 13px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.eyebrow span { display: block; width: 28px; height: 2px; background: currentColor; }
.hero-copy .eyebrow { color: var(--accent-on-dark); }
.hero h1 { margin: 20px 0 24px; color: var(--white); font-size: clamp(54px, 6vw, 82px); line-height: .98; letter-spacing: -.05em; }
.hero h1 em { color: var(--accent-on-dark); font-style: normal; }
.hero-lead { max-width: 590px; margin: 0; color: rgba(255,255,255,.86); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; margin-top: 32px; align-items: center; gap: 24px; }
.hero-phone { display: flex; align-items: center; gap: 10px; font-weight: 700; line-height: 1.2; }
.hero-phone > i { display: grid; width: 42px; height: 42px; place-items: center; color: var(--accent-on-dark); background: rgba(255,255,255,.1); border-radius: 12px; }
.hero-phone span { display: flex; flex-direction: column; }
.hero-phone small { margin-bottom: 2px; color: rgba(255,255,255,.82); font-size: 13px; font-weight: 500; }
.hero-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.13); }
.hero-benefits > div { display: grid; grid-template-columns: 23px 1fr; gap: 9px; align-items: start; }
.hero-benefits i { display: grid; width: 22px; height: 22px; place-items: center; color: var(--navy); background: var(--accent-on-dark); border-radius: 50%; font-size: 9px; }
.hero-benefits span { display: flex; flex-direction: column; line-height: 1.35; }
.hero-benefits strong { font-size: 15px; }
.hero-benefits small { margin-top: 4px; color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.45; }
.hero-visual { position: relative; min-height: 510px; }
.hero-image-wrap { position: absolute; width: calc(100% - 28px); height: 480px; top: 0; right: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 30px; box-shadow: 0 35px 70px rgba(0,63,91,.25); }
.hero-image-wrap::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 48%, rgba(0,90,130,.26)); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-location { position: absolute; z-index: 2; right: -18px; bottom: 6px; display: flex; padding: 15px 20px; align-items: center; gap: 12px; color: var(--white); background: var(--blue); border-radius: 14px; box-shadow: 0 16px 30px rgba(0,90,130,.22); }
.hero-location i { font-size: 19px; }
.hero-location span { display: flex; flex-direction: column; color: rgba(255,255,255,.86); font-size: 13px; line-height: 1.35; }
.hero-location strong { color: var(--white); font-size: 15px; }
.hero-service-card { position: absolute; z-index: 2; bottom: 28px; left: -20px; min-width: 190px; padding: 18px 20px; color: var(--navy); background: rgba(255,255,255,.96); border-radius: 16px; box-shadow: 0 18px 45px rgba(0,71,103,.18); }
.hero-service-card span { display: block; margin-bottom: 4px; color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.hero-service-card strong { font-size: 17px; line-height: 1.35; }

.calculator-zone { padding: 94px 0 100px; background: var(--soft); }
.calculator-intro { display: flex; margin-bottom: 36px; align-items: flex-start; justify-content: space-between; gap: 30px; }
.calculator-intro h2 { margin: 11px 0 7px; color: var(--navy); font-size: clamp(38px, 4.5vw, 54px); line-height: 1.08; letter-spacing: -.04em; }
.calculator-intro p { margin: 0; color: var(--muted); font-size: 16px; }
.calculator-intro .individual-offer-note { display: flex; max-width: 760px; margin-top: 14px; padding: 11px 13px; align-items: flex-start; gap: 9px; color: #44515a; background: var(--blue-light); border: 1px solid var(--brand-border); border-radius: 11px; font-size: 14px; line-height: 1.55; }
.individual-offer-note i { margin-top: 3px; color: var(--blue); }
.individual-offer-note strong { color: var(--purple); }
.calculator-time { display: flex; flex: 0 0 auto; min-height: 38px; padding: 8px 13px; align-items: center; gap: 8px; color: var(--purple); background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 10px; }
.calculator-time i { color: var(--blue); font-size: 16px; }
.calculator-time span { color: var(--muted); font-size: 13px; line-height: 1.35; white-space: nowrap; }
.calculator-time strong { color: var(--navy); font-size: 14px; }
.calculator-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 28px; align-items: start; }
.calculator-main { min-width: 0; }
.calculator-progress { display: grid; margin-bottom: 18px; overflow: hidden; grid-template-columns: repeat(3,minmax(0,1fr)); background: var(--white); border: 1px solid var(--line); border-radius: 15px; box-shadow: 0 10px 28px rgba(0,71,103,.045); }
.progress-step { display: grid; min-width: 0; min-height: 74px; padding: 13px 15px; grid-template-columns: 34px minmax(0,1fr); grid-template-rows: auto auto; align-content: center; column-gap: 10px; color: var(--muted); background: transparent; border: 0; text-align: left; transition: color .2s ease, background .2s ease; }
.progress-step + .progress-step { border-left: 1px solid var(--line); }
.progress-step > span { display: grid; width: 32px; height: 32px; grid-row: 1 / span 2; place-items: center; color: var(--muted); background: #eff0f5; border-radius: 9px; font-size: 12px; font-weight: 700; }
.progress-step strong { overflow: hidden; color: var(--navy); font-size: 14px; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.progress-step small { margin-top: 2px; color: #717686; font-size: 12px; line-height: 1.3; }
.progress-step.is-active { background: var(--brand-soft); }
.progress-step.is-active > span { color: var(--white); background: var(--purple); box-shadow: 0 6px 14px rgba(0,120,180,.18); }
.progress-step.is-active strong { color: var(--purple); }
.progress-step.is-completed > span { color: var(--white); background: var(--success); }
.progress-step:disabled { cursor: default; opacity: .72; }
.progress-step:not(:disabled):hover { background: #f8f7fc; }
.progress-step:focus { outline: 0; }
.progress-step:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: -3px; }
.calc-block { margin-bottom: 22px; padding: 31px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-brand-soft); }
.calc-step[hidden] { display: none; }
.calc-block-heading { display: flex; margin-bottom: 25px; align-items: flex-start; gap: 13px; }
.section-number { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; color: var(--white); background: var(--purple); border-radius: 10px; font-size: 13px; font-weight: 700; }
.calc-block-heading h3 { margin: 1px 0 3px; color: var(--navy); font-size: 19px; line-height: 1.35; }
.calc-block-heading p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.total-weight-badge { display: flex; margin-left: auto; padding: 9px 14px; align-items: center; gap: 9px; color: var(--muted); background: var(--blue-light); border-radius: 10px; font-size: 13px; white-space: nowrap; }
.total-weight-badge strong { color: var(--purple); font-size: 16px; }

.laundry-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px; }
.laundry-item { position: relative; overflow: hidden; background: #fbfbfd; border: 1px solid #dfe1e8; border-radius: 14px; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.laundry-item.is-selected { background: var(--brand-soft); border-color: var(--purple); box-shadow: 0 7px 18px rgba(0,120,180,.09); }
.laundry-select-toggle { display: grid; min-height: 88px; padding: 15px; grid-template-columns: 24px 44px 1fr; gap: 12px; align-items: center; }
.laundry-select-toggle input { position: absolute; opacity: 0; }
.laundry-checkbox { display: grid; width: 24px; height: 24px; place-items: center; color: transparent; background: var(--white); border: 1px solid #bfc3cf; border-radius: 7px; font-size: 10px; }
.laundry-item.is-selected .laundry-checkbox { color: var(--white); background: var(--purple); border-color: var(--purple); }
.laundry-icon { display: grid; width: 44px; height: 44px; place-items: center; color: var(--blue); background: var(--blue-light); border-radius: 12px; font-size: 18px; }
.laundry-item.is-selected .laundry-icon { color: var(--purple); background: var(--brand-soft-strong); }
.laundry-name { display: flex; min-width: 0; flex-direction: column; line-height: 1.35; }
.laundry-name strong { color: var(--navy); font-size: 16px; }
.laundry-name small { margin-top: 3px; color: var(--muted); font-size: 14px; line-height: 1.45; }
.laundry-select-toggle:has(input:focus-visible), .radio-card:has(input:focus-visible), .switch-row:has(input:focus-visible) {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
}
.quantity-control { min-height: 92px; padding: 9px 12px 12px; border-top: 1px solid rgba(0,120,180,.14); transition: opacity .2s ease; }
.quantity-control[aria-hidden="true"] { opacity: .35; }
.quantity-input-row { display: grid; grid-template-columns: 36px 104px 36px; justify-content: center; align-items: center; gap: 6px; }
.quantity-step { display: grid; width: 36px; height: 36px; padding: 0; place-items: center; color: var(--purple); background: var(--white); border: 1px solid #d1d4df; border-radius: 9px; font-size: 19px; line-height: 1; }
.quantity-step:hover:not(:disabled) { color: var(--white); background: var(--purple); border-color: var(--purple); }
.quantity-step:disabled { cursor: not-allowed; }
.quantity-value { display: flex; min-width: 0; align-items: baseline; justify-content: center; gap: 5px; }
.laundry-quantity { min-width: 2ch; width: calc(var(--quantity-digits, 2) * 1ch + 2px); max-width: calc(5ch + 2px); height: 34px; padding: 0; color: var(--navy); background: transparent; border: 0; outline: 0; font-size: 20px; font-weight: 700; font-variant-numeric: tabular-nums; text-align: center; cursor: text; appearance: textfield; }
.laundry-quantity::-webkit-inner-spin-button, .laundry-quantity::-webkit-outer-spin-button { margin: 0; appearance: none; }
.quantity-value > span { color: var(--muted); font-size: 14px; }
.quantity-slider-wrap { display: grid; margin-top: 8px; grid-template-columns: 28px minmax(0,1fr) 58px; align-items: center; gap: 8px; color: #747988; font-size: 12px; font-weight: 600; line-height: 1.35; }
.quantity-slider-wrap span:last-child { text-align: right; }
.quantity-slider { width: 100%; height: 18px; margin: 0; background: transparent; appearance: none; }
.quantity-slider::-webkit-slider-runnable-track { height: 5px; background: #dfe2e9; border-radius: 99px; }
.quantity-slider::-moz-range-track { height: 5px; background: #dfe2e9; border-radius: 99px; }
.quantity-slider::-webkit-slider-thumb { width: 18px; height: 18px; margin-top: -6.5px; background: var(--blue); border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 2px 7px rgba(0,90,130,.28); appearance: none; }
.quantity-slider::-moz-range-thumb { width: 14px; height: 14px; background: var(--blue); border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 2px 7px rgba(0,90,130,.28); }
.quantity-slider:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 3px; border-radius: 99px; }
.selection-error { display: none; margin: 13px 0 0; color: #a33c37; font-size: 14px; font-weight: 600; }
.selection-error.is-visible { display: block; }
.catalog-note { display: flex; margin: 14px 0 0; padding: 12px 14px; align-items: flex-start; gap: 9px; color: #535867; background: #f4f8fa; border-radius: 11px; font-size: 14px; line-height: 1.55; }
.catalog-note i { margin-top: 3px; color: var(--blue); }
.catalog-note strong { color: var(--navy); }
.calc-subsection-heading { display: flex; margin: 28px 0 18px; padding-top: 24px; align-items: flex-start; gap: 12px; border-top: 1px solid var(--line); }
.calc-subsection-icon { display: grid; width: 30px; height: 30px; flex: 0 0 30px; place-items: center; color: var(--purple); background: var(--brand-soft-strong); border-radius: 9px; font-size: 10px; }
.calc-subsection-heading h4 { margin: 0 0 2px; color: var(--navy); font-size: 17px; line-height: 1.35; }
.calc-subsection-heading p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.extra-services-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.extra-service-card { position: relative; display: grid; min-height: 96px; padding: 14px; grid-template-columns: 24px 42px minmax(0,1fr) auto; align-items: center; gap: 11px; background: #fbfbfd; border: 1px solid #dfe1e8; border-radius: 14px; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.extra-service-card:hover { border-color: var(--brand-border); }
.extra-service-card:has(input:checked) { background: var(--brand-soft); border-color: var(--purple); box-shadow: 0 7px 18px rgba(0,120,180,.09); }
.extra-service-card input { position: absolute; opacity: 0; }
.extra-service-card:has(input:focus-visible) { outline: 3px solid var(--focus-ring); outline-offset: 3px; }
.extra-service-check { display: grid; width: 24px; height: 24px; place-items: center; color: transparent; background: var(--white); border: 1px solid #bfc3cf; border-radius: 7px; font-size: 10px; }
.extra-service-card:has(input:checked) .extra-service-check { color: var(--white); background: var(--purple); border-color: var(--purple); }
.extra-service-icon { display: grid; width: 42px; height: 42px; place-items: center; color: var(--blue); background: var(--blue-light); border-radius: 11px; font-size: 17px; }
.extra-service-card:has(input:checked) .extra-service-icon { color: var(--purple); background: var(--brand-soft-strong); }
.extra-service-copy { display: flex; min-width: 0; flex-direction: column; line-height: 1.35; }
.extra-service-copy strong { color: var(--navy); font-size: 15px; }
.extra-service-copy small { margin-top: 3px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.extra-service-price { padding: 6px 8px; color: var(--purple); background: var(--white); border: 1px solid var(--line); border-radius: 8px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.extra-service-card:has(input:checked) .extra-service-price { color: var(--white); background: var(--purple); border-color: var(--purple); }
.extra-services-note { display: flex; margin: 13px 0 0; align-items: flex-start; gap: 7px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.extra-services-note i { margin-top: 3px; color: var(--blue); }
.step-actions { display: flex; margin-top: 26px; padding-top: 22px; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid var(--line); }
.step-actions-end { justify-content: flex-end; }
.step-actions-start { justify-content: flex-start; }
.step-actions .button { min-height: 50px; padding: 0 21px; font-size: 14px; }
.step-back { display: inline-flex; min-height: 44px; padding: 0 8px; align-items: center; gap: 8px; color: var(--purple); background: transparent; border: 0; font-size: 13px; font-weight: 700; }
.step-back:hover { color: var(--blue); }
.calculator-layout:not([data-current-step="3"]) .button-submit,
.calculator-layout:not([data-current-step="3"]) .submit-reassurance,
.calculator-layout:not([data-current-step="3"]) .privacy-note,
.calculator-layout:not([data-current-step="3"]) .model-note { display: none; }

.form-grid { display: grid; gap: 16px; }
.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { min-width: 0; }
.field label, .field-label { display: block; margin-bottom: 8px; color: #383d4b; font-size: 15px; font-weight: 700; }
.field label span { color: var(--blue); }
.field label small { color: #686d7b; font-size: 13px; font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; color: var(--ink); background: var(--white); border: 1px solid #d8dae3; border-radius: 10px; outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.field input, .field select { height: 52px; padding: 0 14px; }
.field textarea { min-height: 100px; padding: 13px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,120,180,.12); }
.select-wrap { position: relative; }
.select-wrap::after { position: absolute; top: 50%; right: 13px; content: "\f078"; color: var(--purple); font-family: "Font Awesome 5 Free"; font-size: 10px; font-weight: 900; pointer-events: none; transform: translateY(-50%); }
.select-wrap select { padding-right: 34px; appearance: none; }
.logistics-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 17px; }
.delivery-field { grid-column: 1 / -1; }
.delivery-options { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
.radio-card { position: relative; display: flex; min-height: 58px; padding: 9px 11px; align-items: center; gap: 10px; border: 1px solid #d8dae3; border-radius: 10px; transition: border-color .2s ease, background .2s ease; }
.radio-card:has(input:checked) { background: var(--brand-soft); border-color: var(--purple); }
.radio-card input { position: absolute; opacity: 0; }
.radio-ui { display: grid; width: 17px; height: 17px; flex: 0 0 17px; place-items: center; border: 1px solid #b7bac5; border-radius: 50%; }
.radio-card input:checked + .radio-ui { border-color: var(--purple); }
.radio-card input:checked + .radio-ui i { width: 8px; height: 8px; background: var(--purple); border-radius: 50%; }
.radio-card > span:last-child { display: flex; min-width: 0; flex-direction: column; line-height: 1.25; }
.radio-card strong { color: var(--ink); font-size: 14px; }
.radio-card small { color: var(--muted); font-size: 13px; }
.transport-box { grid-column: 1 / -1; padding: 15px; background: var(--soft); border-radius: 13px; }
.switch-row { display: flex; align-items: center; gap: 11px; }
.switch-row input { position: absolute; opacity: 0; }
.switch { position: relative; width: 38px; height: 22px; flex: 0 0 38px; background: #bbbfc9; border-radius: 99px; transition: background .2s ease; }
.switch::after { position: absolute; width: 16px; height: 16px; top: 3px; left: 3px; content: ""; background: var(--white); border-radius: 50%; box-shadow: 0 1px 4px rgba(0,0,0,.25); transition: transform .2s ease; }
.switch-row input:checked + .switch { background: var(--blue); }
.switch-row input:checked + .switch::after { transform: translateX(16px); }
.switch-row > span:last-child { display: flex; flex-direction: column; line-height: 1.35; }
.switch-row strong { font-size: 15px; }
.switch-row small { margin-top: 2px; color: var(--muted); font-size: 13px; }
.location-row { margin-top: 16px; }
.location-row.is-disabled { display: none; }
.location-input-wrap { position: relative; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 8px; }
.location-input-wrap > i { position: absolute; z-index: 2; top: 50%; left: 14px; color: var(--blue); font-size: 14px; transform: translateY(-50%); }
.location-input-wrap input { min-width: 0; padding-left: 38px; font-weight: 700; }
.location-input-wrap > button { min-width: 135px; padding: 0 16px; color: var(--white); background: var(--purple); border: 0; border-radius: 10px; font-size: 14px; font-weight: 700; }
.location-input-wrap > button:hover { background: var(--purple-dark); }
.location-input-wrap > button:disabled { opacity: .7; cursor: wait; }
.location-suggestions { position: absolute; z-index: 30; width: calc(100% - 143px); max-height: 290px; top: calc(100% + 6px); left: 0; overflow-y: auto; padding: 6px; background: var(--white); border: 1px solid #dfe3ee; border-radius: 12px; box-shadow: 0 18px 40px rgba(0,71,103,.18); }
.location-suggestions[hidden] { display: none; }
.location-suggestion { display: grid; width: 100%; padding: 10px 11px; align-items: center; grid-template-columns: 30px minmax(0,1fr); gap: 10px; color: var(--navy); text-align: left; background: transparent; border: 0; border-radius: 8px; cursor: pointer; }
.location-suggestion:hover, .location-suggestion.is-active { background: #f2f4fb; }
.location-suggestion > i { display: grid; width: 30px; height: 30px; place-items: center; color: var(--blue); background: #e8f7fd; border-radius: 8px; font-size: 12px; }
.location-suggestion > span { display: flex; min-width: 0; flex-direction: column; }
.location-suggestion strong { overflow: hidden; font-size: 14px; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.location-suggestion small { overflow: hidden; margin-top: 2px; color: var(--muted); font-size: 12px; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.location-suggestions-message { padding: 12px; color: var(--muted); font-size: 13px; text-align: center; }
.field-help { display: block; margin-top: 7px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.route-attribution { display: flex; min-height: 24px; margin-top: 9px; align-items: center; flex-wrap: wrap; gap: 6px; color: var(--muted); font-size: 12px; line-height: 1.4; }
.route-attribution a { display: inline-flex; align-items: center; color: var(--muted); text-decoration: none; }
.route-attribution a:hover { color: var(--purple); text-decoration: underline; }
.route-attribution img { display: block; width: auto; height: 14px; }
.route-attribution-separator { color: #b8bdcc; }
.route-attribution-copyright { font-size: 11px; }
.zone-dot { width: 9px; height: 9px; flex: 0 0 9px; background: var(--success); border-radius: 50%; box-shadow: 0 0 0 4px rgba(30,147,105,.12); }
.transport-map-card { position: relative; min-height: 390px; margin-top: 18px; overflow: hidden; color: var(--white); background: var(--navy); border-radius: 16px; box-shadow: 0 16px 35px rgba(0,71,103,.14); }
.transport-map-card > img { position: absolute; width: 100%; height: 100%; inset: 0; object-fit: cover; object-position: center; filter: saturate(.76) contrast(.96); }
.transport-map-copy { position: absolute; z-index: 2; width: 34%; top: 50%; left: 28px; transform: translateY(-50%); }
.transport-map-copy > span { color: var(--accent-on-dark); font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.transport-map-copy > strong { display: block; margin-top: 2px; font-size: 25px; line-height: 1.2; }
.transport-map-copy ul { display: grid; margin: 20px 0 0; padding: 0; gap: 12px; list-style: none; }
.transport-map-copy li { display: flex; align-items: center; gap: 10px; }
.transport-map-copy li > i { display: grid; width: 31px; height: 31px; flex: 0 0 31px; place-items: center; color: var(--accent-on-dark); background: rgba(255,255,255,.1); border-radius: 9px; font-size: 12px; }
.transport-map-copy li > span { display: flex; min-width: 0; flex-direction: column; color: rgba(255,255,255,.82); font-size: 12px; line-height: 1.35; }
.transport-map-copy li strong { overflow: hidden; color: var(--white); font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.transport-map-status { position: absolute; z-index: 2; display: flex; min-width: 218px; right: 18px; bottom: 17px; padding: 9px 12px; align-items: center; gap: 10px; background: rgba(255,255,255,.94); border-radius: 11px; box-shadow: 0 10px 25px rgba(15,12,59,.22); line-height: 1.3; }
.transport-map-status > span:last-child { display: flex; min-width: 0; flex-direction: column; }
.transport-map-status strong { color: var(--purple-dark); font-size: 13px; }
.transport-map-status small { color: #5f6b70; font-size: 12px; }
.transport-map-status.is-fallback .zone-dot { background: var(--warning); box-shadow: 0 0 0 4px rgba(194,107,21,.12); }
.transport-map-status.is-fallback strong { color: #4f5b62; }
.transport-map-status.is-loading .zone-dot { background: var(--blue); }
.transport-map-card.is-disabled { display: none; }

.transport-zones { margin-top: 16px; padding-top: 15px; border-top: 1px solid #dde0e8; }
.transport-zones summary { display: flex; align-items: center; justify-content: space-between; gap: 14px; cursor: pointer; }
.transport-zones summary > span:first-child { display: flex; min-width: 0; flex-direction: column; }
.transport-zones summary > span:first-child strong { color: var(--navy); font-size: 14px; }
.transport-zones summary > span:first-child small { margin-top: 2px; color: var(--muted); font-size: 13px; }
.transport-zones[open] summary { margin-bottom: 13px; }
.current-zone-badge { display: inline-flex; padding: 7px 10px; align-items: center; gap: 4px; color: var(--purple-dark); background: var(--brand-soft); border-radius: 9px; font-size: 12px; white-space: nowrap; }
.current-zone-badge strong { color: var(--purple-dark); }
.zones-scale { display: grid; overflow: hidden; grid-template-columns: repeat(3, minmax(0, 1fr)); background: var(--white); border: 1px solid #d9dce5; border-radius: 12px; }
.zone-scale-item { position: relative; display: flex; min-height: 78px; padding: 10px 7px; align-items: center; justify-content: center; flex-direction: column; color: var(--muted); text-align: center; }
.zone-scale-item + .zone-scale-item { border-left: 1px solid #e3e5eb; }
.zone-scale-item span { font-size: 12px; font-weight: 600; }
.zone-scale-item strong { margin-top: 2px; color: var(--navy); font-size: 14px; }
.zone-scale-item small { margin-top: 1px; color: #737887; font-size: 12px; }
.zone-scale-item.is-active { color: rgba(255,255,255,.82); background: var(--purple); box-shadow: inset 0 0 0 2px rgba(255,255,255,.12); }
.zone-scale-item.is-active strong, .zone-scale-item.is-active small { color: var(--white); }
.zone-scale-item.is-active::after { position: absolute; width: 8px; height: 8px; top: 6px; right: 6px; content: ""; background: var(--accent-on-dark); border: 2px solid var(--white); border-radius: 50%; }
.transport-zones-note { display: flex; margin: 11px 0 0; align-items: flex-start; gap: 7px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.transport-zones-note i { margin-top: 3px; color: var(--blue); }
.transport-zones.is-disabled .zone-scale-item.is-active { color: var(--muted); background: transparent; box-shadow: none; }
.transport-zones.is-disabled .zone-scale-item.is-active strong { color: var(--navy); }
.transport-zones.is-disabled .zone-scale-item.is-active small { color: #828691; }
.transport-zones.is-disabled .zone-scale-item.is-active::after { display: none; }
.transport-zones.is-disabled { display: none; }

.lead-section { margin-bottom: 0; }
.lead-fields { row-gap: 13px; }
.note-field { margin-top: 13px; }
.privacy-consent { display: grid; margin-top: 15px; align-items: flex-start; grid-template-columns: 20px minmax(0,1fr); gap: 9px; color: var(--muted); font-size: 14px; line-height: 1.55; cursor: pointer; }
.privacy-consent input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.privacy-consent-box { display: grid; width: 20px; height: 20px; margin-top: 1px; place-items: center; color: transparent; background: var(--white); border: 1px solid #cfd5e3; border-radius: 5px; transition: background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.privacy-consent-box i { font-size: 10px; }
.privacy-consent input:checked + .privacy-consent-box { color: var(--white); background: var(--purple); border-color: var(--purple); }
.privacy-consent input:focus-visible + .privacy-consent-box { box-shadow: 0 0 0 3px rgba(61,47,153,.18); }
.privacy-consent a { color: var(--purple); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.privacy-consent strong { color: #d14e64; }
.turnstile-wrap { margin-top: 17px; padding: 14px; background: #f7f8fb; border: 1px solid #dfe3ed; border-radius: 13px; }
.turnstile-widget { min-height: 65px; }
.turnstile-message { margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.turnstile-message.is-success { color: var(--purple-dark); }
.turnstile-message.is-error { color: #b3414c; }
.price-sidebar { position: sticky; top: 22px; }
.price-sidebar-inner { padding: 28px; overflow: hidden; color: var(--white); background: linear-gradient(150deg, var(--navy), var(--purple)); border-radius: 20px; box-shadow: 0 22px 55px rgba(0,71,103,.17); }
.price-kicker { color: var(--accent-on-dark); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.main-price { margin-top: 8px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.13); }
.main-price strong { display: block; color: var(--white); font-size: 39px; line-height: 1.08; letter-spacing: -.04em; }
.main-price small { color: rgba(255,255,255,.76); font-size: 13px; }
.tax-status-badge { width: fit-content; margin-top: 12px; padding: 7px 10px; display: flex; align-items: center; gap: 7px; color: var(--navy); background: var(--brand-soft-strong); border-radius: 8px; font-size: 13px; font-weight: 800; line-height: 1.2; }
.tax-status-badge i { color: var(--blue); }
.sidebar-step-actions { padding: 17px 0 0; }
.calculator-layout[data-current-step="3"] .sidebar-step-actions { display: none; }
.sidebar-next { display: none; width: 100%; min-height: 50px; padding-inline: 14px; font-size: 14px; }
.calculator-layout[data-current-step="1"] .sidebar-next[data-visible-step="1"],
.calculator-layout[data-current-step="2"] .sidebar-next[data-visible-step="2"] { display: inline-flex; }
.order-summary { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.summary-heading { display: flex; margin-bottom: 11px; justify-content: space-between; color: rgba(255,255,255,.78); font-size: 13px; }
.summary-heading strong { color: var(--white); }
.selected-laundry-summary { display: grid; gap: 8px; }
.selected-laundry-summary div { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: rgba(255,255,255,.84); font-size: 13px; }
.selected-laundry-summary div span:first-child { display: flex; align-items: center; gap: 7px; }
.selected-laundry-summary i { color: var(--accent-on-dark); font-size: 7px; }
.selected-laundry-summary strong { color: var(--white); font-size: 13px; }
.selected-services-summary { display: none; margin-top: 13px; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.13); }
.selected-services-summary.is-visible { display: grid; gap: 8px; }
.selected-services-summary > span { color: rgba(255,255,255,.84); font-size: 13px; font-weight: 700; }
.selected-services-summary div { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: rgba(255,255,255,.84); font-size: 13px; }
.selected-services-summary div span:first-child { display: flex; align-items: center; gap: 7px; }
.selected-services-summary i { color: var(--accent-on-dark); font-size: 7px; }
.selected-services-summary strong { color: var(--white); font-size: 13px; }
.price-breakdown { display: grid; gap: 9px; padding: 19px 0; }
.price-breakdown div { display: flex; justify-content: space-between; gap: 12px; color: rgba(255,255,255,.84); font-size: 13px; }
.price-breakdown strong { color: var(--white); }
.transport-summary { padding: 17px 0; border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.transport-summary .summary-heading { margin-bottom: 6px; font-size: 15px; font-weight: 700; }
.transport-summary .summary-heading strong { color: var(--accent-on-dark); font-size: 16px; }
.transport-summary p { margin: 0; color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.5; }
.button-submit { width: 100%; min-height: 56px; margin-top: 4px; padding-inline: 16px; cursor: pointer; font-size: 15px; }
.button-submit[disabled] { cursor: wait; opacity: .7; transform: none; }
.submit-reassurance { margin: 12px 0 2px; color: var(--white); font-size: 13px; font-weight: 600; line-height: 1.45; text-align: center; }
.privacy-note, .model-note { display: flex; margin: 12px 0 0; gap: 8px; color: rgba(255,255,255,.84); font-size: 13px; line-height: 1.55; }
.privacy-note i { margin-top: 2px; color: var(--accent-on-dark); }
.model-note i { margin-top: 2px; color: var(--accent-on-dark); }
.form-status { display: none; margin-top: 13px; padding: 11px 12px; border-radius: 9px; font-size: 13px; font-weight: 600; }
.form-status.is-visible { display: block; }
.form-status.is-success { color: var(--white); background: rgba(0,120,180,.28); border: 1px solid rgba(189,234,255,.35); }
.form-status.is-error { color: #ffe1de; background: rgba(190,62,53,.22); border: 1px solid rgba(255,191,186,.24); }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

.audience-strip { color: var(--white); background: var(--blue); }
.audience-inner { display: grid; min-height: 88px; grid-template-columns: .7fr repeat(4, 1fr); align-items: center; }
.audience-inner > span { color: rgba(255,255,255,.78); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.audience-inner > div { display: flex; min-height: 40px; padding: 0 18px; align-items: center; gap: 10px; border-left: 1px solid rgba(255,255,255,.22); font-size: 14px; font-weight: 700; }
.audience-inner i { color: var(--accent-on-dark); font-size: 17px; }

.services-section { padding: 105px 0; }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .why-copy h2, .faq-intro h2 { margin: 12px 0 15px; color: var(--navy); font-size: clamp(35px, 4vw, 49px); line-height: 1.12; letter-spacing: -.04em; }
.section-heading p, .why-copy > p, .faq-intro > p { margin: 0; color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.service-card { position: relative; min-height: 280px; padding: 37px 31px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 12px 35px rgba(0,71,103,.06); }
.service-card.featured { color: var(--white); background: var(--purple); border-color: var(--purple); transform: translateY(-10px); }
.service-number { position: absolute; top: 21px; right: 25px; color: #eef0f5; font-size: 52px; font-weight: 700; line-height: 1; }
.featured .service-number { color: rgba(255,255,255,.1); }
.service-icon { display: grid; width: 60px; height: 60px; margin-bottom: 28px; place-items: center; color: var(--blue); background: var(--blue-light); border-radius: 16px; font-size: 23px; }
.featured .service-icon { color: var(--purple); background: var(--accent-on-dark); }
.service-card h3 { margin: 0 0 12px; color: var(--navy); font-size: 21px; }
.featured h3 { color: var(--white); }
.service-card p { margin: 0; color: var(--muted); font-size: 15px; }
.featured p { color: rgba(255,255,255,.82); }

.why-section { padding: 105px 0; background: var(--soft); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 78px; align-items: center; }
.why-image { position: relative; min-height: 520px; }
.why-image::before { position: absolute; z-index: 0; width: 70%; height: 78%; top: -18px; left: -18px; content: ""; background: var(--blue); border-radius: 24px; opacity: .16; }
.why-image img { position: absolute; z-index: 1; width: calc(100% - 34px); height: 100%; right: 0; object-fit: cover; border-radius: 22px; box-shadow: 0 24px 55px rgba(0,71,103,.16); }
.image-badge { position: absolute; z-index: 2; right: -20px; bottom: 38px; display: flex; padding: 15px 20px; align-items: center; gap: 12px; color: var(--white); background: var(--purple); border-radius: 14px; box-shadow: 0 15px 30px rgba(0,120,180,.23); }
.image-badge i { color: var(--accent-on-dark); font-size: 20px; }
.image-badge span { display: flex; flex-direction: column; color: rgba(255,255,255,.86); font-size: 13px; line-height: 1.35; }
.image-badge strong { color: var(--white); font-size: 15px; }
.why-list { display: grid; gap: 21px; margin-top: 30px; }
.why-list > div { display: grid; grid-template-columns: 48px 1fr; gap: 15px; align-items: start; }
.why-list > div > span { display: grid; width: 48px; height: 48px; place-items: center; color: var(--blue); background: var(--white); border: 1px solid #e9eaf0; border-radius: 13px; box-shadow: 0 8px 20px rgba(0,71,103,.06); }
.why-list strong { display: block; color: var(--navy); font-size: 17px; }
.why-list p { margin: 4px 0 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.text-link { display: inline-flex; margin-top: 31px; align-items: center; gap: 9px; color: var(--purple); border-bottom: 2px solid rgba(0,120,180,.2); font-size: 15px; font-weight: 700; }
.text-link i { color: var(--blue); font-size: 11px; }

.faq-section { padding: 105px 0; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 82px; align-items: start; }
.faq-phone { display: inline-flex; margin-top: 28px; align-items: center; gap: 12px; color: var(--purple); font-weight: 700; }
.faq-phone > i { display: grid; width: 45px; height: 45px; place-items: center; color: var(--white); background: var(--blue); border-radius: 12px; }
.faq-phone span { display: flex; flex-direction: column; line-height: 1.25; }
.faq-phone small { color: var(--muted); font-size: 13px; font-weight: 500; }
.accordion { display: grid; gap: 11px; }
.accordion details { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 13px; }
.accordion details[open] { border-color: var(--brand-border); box-shadow: 0 9px 25px rgba(0,71,103,.06); }
.accordion summary { display: flex; min-height: 64px; padding: 17px 20px; align-items: center; justify-content: space-between; gap: 18px; color: var(--navy); font-size: 15px; font-weight: 700; list-style: none; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary i { color: var(--blue); font-size: 11px; transition: transform .2s ease; }
.accordion details[open] summary i { transform: rotate(45deg); }
.accordion details p { margin: 0; padding: 0 20px 20px; color: var(--muted); font-size: 15px; }

.final-cta { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(120deg, var(--purple-dark), var(--purple)); }
.final-cta::after { position: absolute; width: 390px; height: 390px; top: -250px; right: 10%; content: ""; border: 60px solid rgba(255,255,255,.04); border-radius: 50%; }
.final-cta-inner { position: relative; z-index: 1; display: flex; min-height: 260px; align-items: center; justify-content: space-between; gap: 40px; }
.cta-kicker { color: var(--accent-on-dark); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.final-cta h2 { max-width: 730px; margin: 10px 0 0; color: var(--white); font-size: clamp(32px, 4vw, 48px); line-height: 1.14; letter-spacing: -.035em; }
.button-light { color: var(--purple); background: var(--white); box-shadow: none; white-space: nowrap; }
.button-light:hover, .button-light:focus-visible { color: var(--purple); background: #effaff; }

.site-footer { padding: 58px 0 20px; color: rgba(255,255,255,.72); background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.4fr .8fr; gap: 45px; align-items: center; }
.footer-brand img { width: 260px; height: auto; border-radius: 10px; }
.footer-brand .brand-copy strong { color: var(--white); }
.footer-brand .brand-copy small { color: rgba(255,255,255,.5); }
.footer-contact { display: flex; flex-direction: column; gap: 7px; font-size: 15px; }
.footer-contact i { width: 20px; color: var(--accent-on-dark); }
.footer-company { color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.65; }
.footer-bottom { display: flex; margin-top: 38px; padding-top: 19px; justify-content: space-between; color: rgba(255,255,255,.7); border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; letter-spacing: .02em; }
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--white); }
.footer-cookie-button, .privacy-cookie-link { padding: 0; color: inherit; background: none; border: 0; font: inherit; text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
.footer-cookie-button:hover { color: var(--white); }
.privacy-cookie-link { color: var(--purple); font-weight: 700; }
.privacy-page { padding: 76px 0 96px; background: var(--soft); }
.privacy-page-content { max-width: 900px; padding: clamp(28px,5vw,58px); background: var(--white); border: 1px solid #e4e7f0; border-radius: 24px; box-shadow: 0 18px 55px rgba(0,71,103,.08); }
.privacy-page-content h1 { margin: 0 0 14px; color: var(--navy); font-size: clamp(34px,5vw,52px); line-height: 1.08; }
.privacy-page-content .privacy-intro { margin-bottom: 34px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.privacy-page-content h2 { margin: 32px 0 10px; color: var(--navy); font-size: 23px; line-height: 1.25; }
.privacy-page-content p, .privacy-page-content li { color: var(--muted); font-size: 15px; line-height: 1.7; }
.privacy-page-content ul { display: grid; margin: 10px 0 0; padding-left: 21px; gap: 5px; }
.privacy-page-content a { color: var(--purple); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.privacy-page-meta { display: inline-flex; margin-top: 28px; padding: 9px 12px; color: var(--purple); background: var(--brand-soft); border-radius: 8px; font-size: 12px; font-weight: 700; }
.mobile-cta { display: none; }

/* Cookie consent a Consent Mode v2 */
[hidden] { display: none !important; }
.cookie-dialog-open { overflow: hidden; }
.cookie-banner { position: fixed; z-index: 1000; right: 20px; bottom: 20px; left: 20px; width: min(1180px, calc(100% - 40px)); margin-inline: auto; padding: 20px; display: flex; align-items: center; justify-content: space-between; gap: 28px; color: var(--navy); background: rgba(255,255,255,.98); border: 1px solid #dfe3ee; border-radius: 18px; box-shadow: 0 22px 70px rgba(0,71,103,.22); }
.cookie-banner-copy { display: grid; min-width: 0; grid-template-columns: 44px minmax(0,1fr); align-items: center; gap: 14px; }
.cookie-icon { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; color: var(--purple); background: var(--brand-soft); border-radius: 13px; font-size: 19px; }
.cookie-banner h2 { margin: 0 0 4px; font-size: 17px; line-height: 1.25; }
.cookie-banner p { max-width: 690px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.cookie-banner p a { color: var(--purple); font-weight: 700; }
.cookie-banner-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 9px; }
.cookie-button { min-height: 43px; padding: 0 17px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 10px; font-family: inherit; font-size: 14px; font-weight: 800; cursor: pointer; transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease; }
.cookie-button:hover { transform: translateY(-1px); }
.cookie-button-primary { color: var(--white); background: var(--purple); border-color: var(--purple); }
.cookie-button-primary:hover { background: var(--navy); border-color: var(--navy); }
.cookie-button-secondary { color: var(--navy); background: var(--white); border-color: #cfd5e3; }
.cookie-button-secondary:hover { color: var(--purple); border-color: var(--purple); }
.cookie-dialog { position: fixed; z-index: 1100; inset: 0; display: grid; place-items: center; padding: 20px; }
.cookie-dialog-backdrop { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; padding: 0; background: rgba(13,12,45,.68); border: 0; cursor: pointer; }
.cookie-dialog-panel { position: relative; z-index: 1; width: min(590px,100%); max-height: calc(100vh - 40px); overflow-y: auto; padding: clamp(26px,5vw,42px); color: var(--navy); background: var(--white); border-radius: 22px; box-shadow: 0 28px 90px rgba(8,7,37,.34); }
.cookie-dialog-close { position: absolute; top: 17px; right: 17px; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; color: var(--navy); background: #f2f3f8; border: 0; border-radius: 50%; cursor: pointer; }
.cookie-dialog-panel h2 { max-width: calc(100% - 30px); margin: 9px 0 8px; font-size: clamp(25px,4vw,34px); line-height: 1.15; }
.cookie-dialog-panel > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.cookie-options { display: grid; margin-top: 24px; gap: 10px; }
.cookie-option { position: relative; min-height: 78px; padding: 16px 15px; display: grid; grid-template-columns: minmax(0,1fr) 46px; align-items: center; gap: 18px; border: 1px solid #dfe3ed; border-radius: 13px; cursor: pointer; }
.cookie-option.is-required { background: #f7f8fb; cursor: default; }
.cookie-option strong, .cookie-option small { display: block; }
.cookie-option strong { margin-bottom: 3px; font-size: 14px; }
.cookie-option small { color: var(--muted); font-size: 12px; line-height: 1.45; }
.cookie-option input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.cookie-switch { position: relative; width: 46px; height: 26px; background: #c9cfdb; border-radius: 20px; transition: background-color .18s ease; }
.cookie-switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: var(--white); border-radius: 50%; box-shadow: 0 2px 7px rgba(16,19,45,.2); transition: transform .18s ease; }
.cookie-option input:checked + .cookie-switch { background: var(--blue); }
.cookie-option input:checked + .cookie-switch::after { transform: translateX(20px); }
.cookie-option input:focus-visible + .cookie-switch { outline: 3px solid var(--focus-ring); outline-offset: 3px; }
.cookie-option input:disabled + .cookie-switch { opacity: .65; }
.cookie-save { width: 100%; margin-top: 22px; }
.cookie-button:focus-visible, .cookie-dialog-close:focus-visible, .footer-cookie-button:focus-visible, .privacy-cookie-link:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 3px; }

@media (max-width: 1100px) {
    .header-note { display: none; }
    .hero-grid { gap: 52px; }
    .hero h1 { font-size: 62px; }
    .hero-lead { font-size: 17px; }
    .hero-benefits { gap: 10px; }
    .hero-visual { min-height: 465px; }
    .hero-image-wrap { height: 440px; }
    .calculator-layout { grid-template-columns: minmax(0,1fr) 350px; }
    .calc-block { padding: 26px; }
    .why-grid { gap: 48px; }
    .faq-grid { gap: 48px; }
}

@media (max-width: 900px) {
    .header-actions .button, .header-button { display: none; }
    .hero { padding: 68px 0 76px; }
    .hero-grid { grid-template-columns: 1fr; gap: 52px; }
    .hero-copy { max-width: 720px; }
    .hero h1 { max-width: 720px; font-size: 68px; }
    .hero-lead { max-width: 620px; }
    .hero-visual { width: min(680px,100%); margin-inline: auto; }
    .calculator-time { display: none; }
    .calculator-layout { grid-template-columns: 1fr; }
    .price-sidebar { position: static; }
    .price-sidebar-inner { display: grid; grid-template-columns: 1fr 1fr; column-gap: 28px; }
    .price-kicker, .main-price, .order-summary { grid-column: 1; }
    .sidebar-step-actions, .price-breakdown, .transport-summary, .button-submit, .submit-reassurance, .privacy-note, .model-note, .form-status { grid-column: 2; }
    .price-breakdown { align-content: end; padding-top: 20px; }
    .button-submit { align-self: end; }
    .audience-inner { min-height: 120px; grid-template-columns: repeat(4,1fr); }
    .audience-inner > span { display: none; }
    .audience-inner > div { justify-content: center; }
    .audience-inner > div:first-of-type { border-left: 0; }
    .why-grid { grid-template-columns: 1fr; }
    .why-image { max-width: 650px; width: 100%; margin-inline: auto; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-intro { max-width: 650px; }
    .footer-grid { grid-template-columns: 1fr 1.4fr; }
    .footer-company { display: none; }
    .cookie-banner { align-items: stretch; flex-direction: column; gap: 16px; }
    .cookie-banner-actions { justify-content: flex-end; }
}

@media (max-width: 700px) {
    body { padding-bottom: 66px; }
    .container { width: min(100% - 28px, 1240px); }
    .header-inner { min-height: 72px; }
    .brand img { width: min(220px, 62vw); height: auto; }
    .brand-copy strong { font-size: 16px; }
    .brand-copy small { font-size: 11px; }
    .phone-link > i, .header-phone > i { width: 35px; height: 35px; }
    .phone-link span, .header-phone span { display: none; }
    .hero { padding: 52px 0 60px; }
    .hero h1 { margin-top: 16px; font-size: clamp(44px, 12.5vw, 54px); }
    .hero-lead { font-size: 16px; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-benefits { grid-template-columns: 1fr; gap: 13px; margin-top: 32px; }
    .hero-benefits > div { grid-template-columns: 22px 1fr; }
    .hero-visual { min-height: 350px; }
    .hero-image-wrap { width: 100%; height: 330px; border-radius: 22px; }
    .hero-service-card { left: -4px; bottom: -7px; }
    .hero-location { right: -4px; bottom: 12px; }
    .calculator-zone { padding: 68px 0 72px; }
    .calculator-intro { align-items: flex-start; flex-direction: column; }
    .calculator-intro > div:first-child { min-width: 0; width: 100%; }
    .calculator-intro h2 { font-size: 36px; }
    .calc-block { padding: 20px; border-radius: 16px; }
    .calculator-progress { margin-bottom: 14px; }
    .progress-step { min-height: 64px; padding: 10px 7px; grid-template-columns: 27px minmax(0,1fr); column-gap: 6px; }
    .progress-step > span { width: 27px; height: 27px; border-radius: 8px; }
    .progress-step strong { font-size: 12px; line-height: 1.3; white-space: normal; }
    .progress-step small { display: none; }
    .calc-block-heading { flex-wrap: wrap; }
    .calc-block-heading h3 { font-size: 17px; }
    .calc-block-heading > div { min-width: 0; }
    .total-weight-badge { width: auto; margin: 7px 0 0 47px; flex: 1 1 100%; justify-content: space-between; }
    .laundry-grid { grid-template-columns: 1fr; }
    .extra-services-grid { grid-template-columns: 1fr; }
    .extra-service-card { grid-template-columns: 24px 42px minmax(0,1fr); }
    .extra-service-price { grid-column: 3; justify-self: start; }
    .step-actions { align-items: stretch; flex-direction: column-reverse; }
    .step-actions .button { width: 100%; }
    .step-actions-end { flex-direction: column; }
    .step-back { justify-content: center; }
    .logistics-grid { grid-template-columns: 1fr; }
    .delivery-options { grid-template-columns: 1fr; }
    .transport-box { grid-column: auto; }
    .two-columns { grid-template-columns: 1fr; }
    .location-input-wrap { grid-template-columns: 1fr; }
    .location-input-wrap > button { min-height: 48px; }
    .location-input-wrap > i { top: 26px; }
    .location-suggestions { width: 100%; top: 56px; }
    .transport-map-card { min-height: 500px; }
    .transport-map-card > img { object-position: 58% center; }
    .transport-map-copy { width: auto; top: 24px; right: 22px; left: 22px; transform: none; }
    .transport-map-copy ul { width: min(230px, 75%); margin-top: 14px; gap: 9px; }
    .transport-map-status { min-width: 0; right: 14px; bottom: 14px; left: 14px; }
    .transport-zones summary { align-items: flex-start; flex-direction: column; }
    .current-zone-badge { align-self: flex-start; white-space: normal; }
    .zones-scale { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .zone-scale-item { min-height: 72px; }
    .zone-scale-item + .zone-scale-item { border-left: 0; }
    .zone-scale-item:nth-child(even) { border-left: 1px solid #e3e5eb; }
    .zone-scale-item:nth-child(n+3) { border-top: 1px solid #e3e5eb; }
    .transport-zones-note { font-size: 12px; }
    .price-sidebar-inner { display: block; padding: 24px 21px; }
    .price-breakdown { padding-top: 17px; }
    .audience-strip { display: none; }
    .services-section, .why-section, .faq-section { padding: 76px 0; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: auto; }
    .service-card.featured { transform: none; }
    .why-image { min-height: 390px; }
    .image-badge { right: -4px; bottom: 18px; }
    .final-cta-inner { min-height: 300px; align-items: flex-start; justify-content: center; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-contact { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 5px; }
    .thank-you-main { min-height: calc(100vh - 190px); padding: 52px 0; }
    .thank-you-card { padding: 38px 22px; border-radius: 18px; }
    .thank-you-icon { width: 62px; height: 62px; font-size: 25px; }
    .thank-you-card h1 { font-size: 36px; }
    .thank-you-card > p { font-size: 16px; }
    .thank-you-actions { align-items: stretch; flex-direction: column; }
    .thank-you-actions .button { width: 100%; }
    .mobile-cta { position: fixed; z-index: 100; right: 12px; bottom: 10px; left: 12px; display: flex; min-height: 52px; align-items: center; justify-content: center; gap: 9px; color: var(--white); background: var(--blue); border-radius: 12px; box-shadow: 0 12px 35px rgba(0,90,130,.28); font-size: 15px; font-weight: 700; transition: opacity .2s ease, transform .2s ease; }
    .mobile-cta.is-hidden { opacity: 0; pointer-events: none; transform: translateY(18px); }
    .cookie-banner { right: 10px; bottom: 10px; left: 10px; width: calc(100% - 20px); padding: 17px; border-radius: 15px; }
    .cookie-banner-copy { grid-template-columns: 1fr; gap: 8px; }
    .cookie-icon { width: 38px; height: 38px; }
    .cookie-banner-actions { display: grid; grid-template-columns: 1fr 1fr; }
    .cookie-banner-actions .cookie-button-primary { grid-column: 1 / -1; grid-row: 1; }
    .cookie-button { padding-inline: 11px; }
    .cookie-dialog { padding: 10px; }
    .cookie-dialog-panel { max-height: calc(100vh - 20px); padding: 28px 18px 20px; border-radius: 17px; }
    .cookie-option { padding: 14px 12px; gap: 12px; }
}

@media (max-width: 370px) {
    .turnstile-widget { display: flex; min-height: 140px; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
