:root {
    --ink: #191b1c;
    --ink-soft: #4f5354;
    --paper: #f7f3ed;
    --paper-strong: #fffdfa;
    --warm: #d6c4af;
    --line: #ded7ce;
    --teal: #00737b;
    --teal-dark: #075057;
    --teal-deep: #063d42;
    --teal-soft: #dceff0;
    --gold: #d59a43;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(33, 27, 21, 0.16);
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 13px;
    --header-height: 92px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
    overflow-x: clip;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 115, 123, 0.06), transparent 30%),
        var(--paper);
    font-family: "Aptos Display", "Trebuchet MS", sans-serif;
    -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
    font: inherit;
}

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

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

button,
input,
textarea {
    border: 0;
}

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

:focus-visible {
    outline: 3px solid #f4b95c;
    outline-offset: 4px;
}

::selection {
    color: var(--white);
    background: var(--teal);
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(29, 23, 18, 0.76), rgba(29, 23, 18, 0.36));
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(17, 37, 38, 0.94);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(12px);
}

.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: var(--header-height);
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 13px;
    flex: 0 0 auto;
}

.brand__mark {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    place-items: center;
    border-radius: 17px;
    color: var(--white);
    background: var(--teal);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    transform: rotate(-4deg);
}

.brand__mark svg {
    width: 39px;
    height: 39px;
    overflow: visible;
}

.brand__mark svg > path:first-child {
    fill: var(--teal);
    stroke: var(--white);
    stroke-width: 1.5;
}

.brand__mark rect,
.brand__mark circle,
.brand__mark svg > path:last-child {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.brand__copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand__copy strong {
    font-size: 27px;
    letter-spacing: -0.04em;
}

.brand__copy small {
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 2.8vw, 44px);
    margin-inline: auto;
    font-size: 15px;
    font-weight: 700;
}

.site-nav a {
    position: relative;
    padding-block: 12px;
}

.site-nav a::after {
    position: absolute;
    right: 50%;
    bottom: 5px;
    left: 50%;
    height: 2px;
    content: "";
    background: #33bbc3;
    transition: inset 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    right: 0;
    left: 0;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 12px;
    white-space: nowrap;
}

.header-phone__icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--teal);
}

.header-phone__icon svg,
.button--phone svg,
.mobile-call svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.header-phone > span:last-child {
    display: flex;
    flex-direction: column;
}

.header-phone strong {
    font-size: 20px;
    letter-spacing: -0.02em;
}

.header-phone small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    padding: 10px;
    cursor: pointer;
    border-radius: 13px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
    position: relative;
    display: flex;
    min-height: 850px;
    color: var(--white);
    background-color: #6a5847;
    background-image: url("assets/washer-repair-hero.jpg");
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.hero__shade {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(31, 22, 15, 0.48), rgba(31, 22, 15, 0.03) 65%),
        linear-gradient(180deg, rgba(22, 18, 14, 0.3), transparent 34%, rgba(22, 18, 14, 0.6));
}

.hero__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding-top: calc(var(--header-height) + 54px);
    padding-bottom: 40px;
}

.hero__panel {
    width: min(650px, 54%);
    padding: clamp(34px, 4vw, 58px);
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: var(--radius-lg);
    background: rgba(255, 253, 250, 0.95);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 560px;
    margin: 0;
    font-size: clamp(48px, 5.2vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero__lead {
    max-width: 520px;
    margin: 22px 0 28px;
    color: var(--ink-soft);
    font-size: clamp(20px, 1.8vw, 26px);
    line-height: 1.35;
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
}

.check-list li {
    position: relative;
    padding-left: 42px;
}

.check-list li::before {
    position: absolute;
    top: -2px;
    left: 0;
    display: grid;
    width: 28px;
    height: 28px;
    content: "✓";
    place-items: center;
    color: var(--white);
    border-radius: 50%;
    background: var(--teal);
    font-size: 16px;
    font-weight: 900;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

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

.button--primary {
    color: var(--white);
    background: var(--teal);
    box-shadow: 0 12px 28px rgba(0, 91, 98, 0.22);
}

.button--primary:hover {
    background: var(--teal-dark);
}

.button--primary:disabled {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}

.button--outline {
    color: var(--teal);
    border-color: var(--teal);
    background: transparent;
}

.button--outline:hover {
    color: var(--white);
    background: var(--teal);
}

.button--light {
    color: var(--teal-deep);
    background: var(--white);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.hero__proof {
    display: grid;
    grid-template-columns: repeat(2, 270px);
    width: min(100%, 1120px);
    align-items: stretch;
    gap: 18px;
    margin-top: 36px;
}

.proof-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 22px;
    background: rgba(255, 253, 250, 0.92);
    box-shadow: 0 18px 38px rgba(22, 16, 11, 0.18);
    backdrop-filter: blur(10px);
}

.proof-card {
    color: var(--ink);
}

.proof-card__icon {
    display: grid;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    place-items: center;
    color: var(--white);
    border-radius: 50%;
    background: var(--teal);
    font-size: 16px;
    font-weight: 900;
}

.proof-card > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.proof-card strong {
    font-size: 26px;
    line-height: 1;
}

.proof-card small {
    margin-top: 7px;
    color: var(--ink-soft);
    font-size: 15px;
}

.request-section {
    position: relative;
    z-index: 2;
    padding: 62px 0;
    border-bottom: 1px solid var(--line);
    background: var(--paper-strong);
}

.request-section__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(560px, 1.25fr);
    align-items: center;
    gap: clamp(40px, 7vw, 100px);
}

.request-section__copy h2,
.section-heading h2,
.benefits__intro h2,
.call-promo h2,
.legal-content h1 {
    margin: 0;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.request-section__copy > p:last-child,
.section-heading > p:last-child,
.benefits__intro > p,
.call-promo p {
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.55;
}

.lead-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    min-width: 0;
    gap: 14px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 18px 48px rgba(41, 35, 29, 0.08);
}

.form-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
}

.form-field label {
    color: #3f4445;
    font-size: 13px;
    font-weight: 800;
}

.form-field label span {
    color: #747879;
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 14px 15px;
    color: var(--ink);
    border: 1px solid #cfc8bf;
    border-radius: 11px;
    outline: 0;
    background: #fbfaf8;
    font-size: 16px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0, 115, 123, 0.14);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #858889;
}

.button--submit {
    align-self: end;
    white-space: nowrap;
}

.consent-check {
    display: flex;
    grid-column: 1 / -1;
    align-items: flex-start;
    gap: 9px;
    color: #65696a;
    font-size: 12px;
    line-height: 1.45;
}

.consent-check input {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin: 1px 0 0;
    accent-color: var(--teal);
}

.consent-check a,
.site-footer__bottom a,
.legal-content a {
    color: var(--teal);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.form-status {
    min-height: 18px;
    grid-column: 1 / -1;
    margin: -4px 0 0;
    font-size: 14px;
    font-weight: 700;
}

.form-status--ok {
    color: #087b4c;
}

.form-status--error {
    color: #b22d20;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.section {
    padding: clamp(80px, 9vw, 132px) 0;
}

.section-heading {
    max-width: 810px;
    margin-bottom: 50px;
}

.section-heading > p:last-child {
    max-width: 690px;
    margin: 20px 0 0;
}

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

.service-card {
    position: relative;
    display: flex;
    min-height: 250px;
    flex-direction: column;
    padding: 26px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 253, 250, 0.84);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
    z-index: 1;
    border-color: rgba(0, 115, 123, 0.42);
    box-shadow: 0 24px 60px rgba(31, 42, 42, 0.12);
    transform: translateY(-6px);
}

.service-card__number {
    color: var(--teal);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.service-card h3 {
    max-width: 230px;
    margin: 24px 0 14px;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.service-card p {
    margin: 0;
    color: var(--teal-deep);
    font-size: 24px;
    font-weight: 800;
}

.service-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 22px;
    color: #595d5e;
    border-top: 1px solid var(--line);
    font-size: 14px;
    font-weight: 800;
}

.service-card a span {
    color: var(--teal);
    font-size: 22px;
}

.benefits {
    color: var(--white);
    background:
        radial-gradient(circle at 8% 12%, rgba(24, 160, 168, 0.28), transparent 30%),
        var(--teal-deep);
}

.benefits__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
    align-items: start;
    gap: clamp(50px, 8vw, 120px);
}

.benefits__intro {
    position: sticky;
    top: calc(var(--header-height) + 36px);
}

.benefits__intro .eyebrow,
.call-promo .eyebrow {
    color: #73d7dc;
}

.benefits__intro > p {
    color: rgba(255, 255, 255, 0.74);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: #75dce1;
    font-weight: 800;
}

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

.benefit-card {
    min-height: 270px;
    padding: 30px;
    color: var(--ink);
    border-radius: var(--radius-md);
    background: #f7f3ed;
}

.benefit-card > span {
    display: inline-flex;
    padding: 7px 10px;
    color: var(--teal);
    border: 1px solid rgba(0, 115, 123, 0.25);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.benefit-card h3 {
    margin: 58px 0 12px;
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.benefit-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.5;
}

.benefit-card--accent {
    color: var(--white);
    background: var(--teal);
}

.benefit-card--accent > span {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.benefit-card--accent p {
    color: rgba(255, 255, 255, 0.78);
}

.process {
    background: #f0ebe4;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: process;
}

.process-list li {
    position: relative;
    min-height: 230px;
    padding: 0 28px;
    border-left: 1px solid #cfc5ba;
}

.process-list li:first-child {
    padding-left: 0;
    border-left: 0;
}

.process-list > li > span {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--white);
    border-radius: 50%;
    background: var(--teal);
    font-size: 13px;
    font-weight: 900;
}

.process-list h3 {
    margin: 62px 0 12px;
    font-size: 23px;
    letter-spacing: -0.03em;
}

.process-list p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.5;
}

.brands-section {
    color: var(--white);
    background: #112c2f;
}

.brands-section__inner {
    display: grid;
    grid-template-columns: minmax(260px, 0.65fr) minmax(560px, 1.35fr);
    align-items: center;
    gap: 50px;
    padding-block: 48px;
}

.brands-section h2 {
    margin: 0;
    font-size: 25px;
    line-height: 1.15;
}

.brand-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.brand-list span {
    padding: 11px 16px;
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

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

.review-card {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper-strong);
    box-shadow: 0 16px 42px rgba(41, 35, 29, 0.06);
}

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

.review-card__top > span {
    color: var(--gold);
    letter-spacing: 2px;
}

.review-card__top small {
    color: #777a7a;
}

.review-card > p {
    margin: 38px 0 28px;
    color: #373b3c;
    font-size: 18px;
    line-height: 1.6;
}

.review-card footer {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.review-card footer span {
    color: #747879;
    font-size: 14px;
}

.call-promo {
    padding: 76px 0;
    color: var(--white);
    background:
        linear-gradient(115deg, rgba(0, 115, 123, 0.96), rgba(6, 61, 66, 0.98)),
        var(--teal);
}

.call-promo__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.call-promo h2 {
    max-width: 760px;
}

.call-promo p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.75);
}

.call-promo .button {
    flex: 0 0 auto;
}

.site-footer {
    padding: 76px 0 24px;
    color: var(--white);
    background: #101d1e;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
    gap: clamp(60px, 10vw, 160px);
}

.brand--footer {
    margin-bottom: 28px;
}

.site-footer__brand > p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
}

.site-footer__phone {
    display: inline-block;
    margin-top: 12px;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.lead-form--footer {
    grid-template-columns: 1fr auto;
    color: var(--ink);
}

.lead-form--footer h2,
.lead-form--footer > p {
    grid-column: 1 / -1;
}

.lead-form--footer h2 {
    margin: 0;
    font-size: 30px;
}

.lead-form--footer > p {
    margin: -5px 0 4px;
    color: var(--ink-soft);
}

.consent-check--dark {
    color: #65696a;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 64px;
    padding-top: 22px;
    color: rgba(255, 255, 255, 0.56);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
}

.site-footer__bottom a {
    color: rgba(255, 255, 255, 0.68);
}

.mobile-call {
    display: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

.js .reveal--delay {
    transition-delay: 0.16s;
}

.legal-page {
    min-height: 100vh;
    background: #f3eee7;
}

.legal-header {
    color: var(--white);
    background: var(--teal-deep);
}

.legal-header__inner {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.legal-back {
    font-weight: 800;
}

.legal-main {
    padding: 70px 0 100px;
}

.legal-content {
    width: min(920px, 100%);
    padding: clamp(28px, 6vw, 70px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper-strong);
    box-shadow: var(--shadow);
}

.legal-content > p:first-of-type {
    color: var(--ink-soft);
}

.legal-content h2 {
    margin: 42px 0 14px;
    font-size: 25px;
}

.legal-content p,
.legal-content li {
    color: #44494a;
    line-height: 1.68;
}

.legal-notice {
    margin: 28px 0;
    padding: 18px 20px;
    color: #403725;
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
    background: #fff4dc;
}

@media (max-width: 1180px) {
    :root {
        --header-height: 82px;
    }

    .container {
        width: min(100% - 40px, 1120px);
    }

    .site-nav {
        gap: 20px;
        font-size: 14px;
    }

    .brand__copy strong {
        font-size: 23px;
    }

    .brand__copy small {
        display: none;
    }

    .header-phone strong {
        font-size: 17px;
    }

    .hero {
        min-height: 790px;
    }

    .hero__panel {
        width: min(620px, 58%);
    }

    .hero__proof {
        grid-template-columns: repeat(2, 240px);
    }

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

@media (max-width: 980px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        display: grid;
        width: min(320px, calc(100vw - 40px));
        gap: 0;
        padding: 12px;
        visibility: hidden;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 16px;
        opacity: 0;
        background: rgba(7, 63, 67, 0.98);
        box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .site-nav[data-open="true"] {
        visibility: visible;
        opacity: 1;
        transform: none;
    }

    .site-nav a {
        padding: 13px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-nav a:last-child {
        border-bottom: 0;
    }

    .site-nav a::after {
        display: none;
    }

    .header-phone {
        margin-left: auto;
    }

    .hero {
        min-height: 920px;
        background-position: 58% center;
    }

    .hero__panel {
        width: min(620px, 72%);
    }

    .hero__proof {
        grid-template-columns: repeat(2, minmax(0, 260px));
    }

    .request-section__grid,
    .benefits__grid,
    .brands-section__inner,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .request-section__grid,
    .benefits__grid {
        gap: 46px;
    }

    .benefits__intro {
        position: static;
        max-width: 760px;
    }

    .process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 0;
    }

    .process-list li:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

    .brand-list {
        justify-content: flex-start;
    }

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

    .review-card {
        min-height: 0;
    }
}

@media (max-width: 700px) {
    :root {
        --header-height: 72px;
        --radius-lg: 23px;
    }

    .container {
        width: calc(100% - 30px);
    }

    body {
        padding-bottom: 72px;
    }

    .site-header__inner {
        gap: 10px;
    }

    .brand {
        gap: 8px;
    }

    .brand__mark {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        border-radius: 13px;
    }

    .brand__mark svg {
        width: 30px;
        height: 30px;
    }

    .brand__copy strong {
        font-size: 19px;
    }

    .header-phone {
        gap: 0;
    }

    .header-phone__icon,
    .header-phone small {
        display: none;
    }

    .header-phone strong {
        font-size: 14px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        padding: 9px;
    }

    .hero {
        min-height: auto;
        background-position: 63% center;
    }

    .hero__shade {
        background: linear-gradient(180deg, rgba(24, 18, 13, 0.42), rgba(24, 18, 13, 0.34) 45%, rgba(24, 18, 13, 0.82));
    }

    .hero__inner {
        padding-top: calc(var(--header-height) + 30px);
        padding-bottom: 28px;
    }

    .hero__panel {
        width: 100%;
        padding: 28px 23px;
        background: rgba(255, 253, 250, 0.95);
    }

    .hero h1 {
        font-size: clamp(40px, 13vw, 56px);
        overflow-wrap: anywhere;
    }

    .hero__lead {
        margin: 17px 0 24px;
        font-size: 19px;
    }

    .check-list {
        gap: 12px;
        font-size: 16px;
    }

    .check-list li {
        padding-left: 36px;
    }

    .check-list li::before {
        width: 25px;
        height: 25px;
    }

    .hero__actions {
        display: grid;
        gap: 10px;
        margin-top: 28px;
    }

    .button {
        width: 100%;
    }

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

    .proof-card {
        gap: 10px;
        padding: 14px;
        border-radius: 16px;
    }

    .proof-card__icon {
        display: none;
    }

    .proof-card strong {
        font-size: 21px;
    }

    .proof-card small {
        font-size: 12px;
    }

    .request-section {
        padding: 58px 0;
    }

    .request-section__copy h2,
    .section-heading h2,
    .benefits__intro h2,
    .call-promo h2,
    .legal-content h1 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .lead-form,
    .lead-form--footer {
        grid-template-columns: 1fr;
        padding: 19px;
    }

    .lead-form--footer h2,
    .lead-form--footer > p,
    .consent-check,
    .form-status {
        grid-column: auto;
    }

    .section {
        padding: 78px 0;
    }

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

    .service-grid,
    .benefit-cards,
    .process-list {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 220px;
    }

    .process-list {
        gap: 0;
    }

    .process-list li,
    .process-list li:first-child,
    .process-list li:nth-child(3) {
        display: grid;
        grid-template-columns: 48px 1fr;
        min-height: 0;
        gap: 20px;
        padding: 24px 0;
        border: 0;
        border-bottom: 1px solid #cfc5ba;
    }

    .process-list h3 {
        margin: 2px 0 8px;
    }

    .brands-section__inner {
        gap: 24px;
        padding-block: 40px;
    }

    .brand-list {
        gap: 8px;
    }

    .brand-list span {
        padding: 9px 12px;
        font-size: 12px;
    }

    .review-card {
        padding: 24px;
    }

    .review-card > p {
        margin-block: 28px 22px;
        font-size: 16px;
    }

    .call-promo {
        padding: 60px 0;
    }

    .call-promo__inner {
        display: grid;
    }

    .site-footer {
        padding-top: 62px;
    }

    .site-footer__grid {
        gap: 46px;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin-top: 48px;
    }

    .mobile-call {
        position: fixed;
        z-index: 110;
        right: 10px;
        bottom: 10px;
        left: 10px;
        display: flex;
        min-height: 54px;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: var(--white);
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 15px;
        background: var(--teal);
        box-shadow: 0 14px 34px rgba(0, 49, 53, 0.32);
        font-weight: 900;
    }

    .legal-header__inner {
        min-height: 72px;
    }

    .legal-header .brand__copy small {
        display: none;
    }

    .legal-main {
        padding: 30px 0 70px;
    }

    .legal-content {
        padding: 27px 21px;
    }
}

@media (max-width: 380px) {
    .brand__copy strong {
        font-size: 17px;
    }

    .header-phone strong {
        font-size: 12.5px;
    }

    .site-header__inner {
        gap: 7px;
    }
}

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

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

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
