:root {
  --navy-950: #031f3b;
  --navy-900: #06396f;
  --navy-800: #07508d;
  --cyan-600: #0499e9;
  --cyan-500: #11acf3;
  --cyan-100: #ddf5ff;
  --orange-500: #ff7a00;
  --orange-100: #fff0df;
  --whatsapp: #16a85a;
  --ink: #13243a;
  --muted: #637389;
  --line: #dce7f1;
  --surface: #f5faff;
  --white: #fff;
  --shadow-sm: 0 10px 30px rgba(4, 45, 84, .08);
  --shadow-lg: 0 24px 70px rgba(3, 31, 59, .16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body, button, input, select { font: inherit; }
img, svg { display: block; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 100px 0; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--navy-950);
  color: var(--white);
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.top-strip { background: var(--navy-950); color: #dff5ff; font-size: .79rem; font-weight: 750; letter-spacing: .04em; }
.top-strip__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.top-strip p { margin: 0; }
.top-strip p span { margin-inline: 8px; color: #5fcfff; }
.top-strip a { color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(220, 231, 241, .8);
  backdrop-filter: blur(15px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: block; width: 214px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.desktop-nav a { font-size: .91rem; font-weight: 750; color: #35465b; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--cyan-600); }
.header-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 20px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 19px; height: 19px; fill: currentColor; stroke: none; }
.btn--primary { color: var(--white); background: linear-gradient(135deg, var(--navy-800), var(--cyan-600)); box-shadow: 0 12px 26px rgba(4, 117, 180, .27); }
.btn--primary:hover { box-shadow: 0 16px 32px rgba(4, 117, 180, .34); }
.btn--whatsapp { color: var(--white); background: var(--whatsapp); box-shadow: 0 12px 26px rgba(22, 168, 90, .2); }
.btn--whatsapp:hover { background: #108d4a; box-shadow: 0 16px 30px rgba(22, 168, 90, .28); }
.btn--ghost { color: var(--navy-900); background: var(--white); box-shadow: inset 0 0 0 1.5px #bad3e5; }
.btn--ghost:hover { background: var(--surface); }
.btn--light { color: var(--navy-950); background: var(--white); box-shadow: 0 12px 28px rgba(0, 26, 51, .15); }
.btn--large { min-height: 56px; padding-inline: 27px; }

.hero { position: relative; isolation: isolate; min-height: 720px; overflow: hidden; background: #ecf8fd; }
.hero__image { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(244, 251, 255, .99) 0%, rgba(242, 251, 255, .93) 37%, rgba(242, 251, 255, .35) 57%, rgba(242, 251, 255, .05) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -270px;
  z-index: -1;
  width: 530px;
  height: 530px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 172, 243, .17), transparent 70%);
}
.hero__inner { position: relative; min-height: 720px; display: flex; align-items: center; padding-block: 68px 90px; }
.hero__content { width: min(650px, 58%); }
.eyebrow, .section-kicker { margin: 0 0 14px; color: var(--cyan-600); font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 34px; height: 3px; border-radius: 3px; background: var(--orange-500); }
.hero h1 { max-width: 600px; margin: 0; color: var(--navy-950); font-size: clamp(2.6rem, 5vw, 4.85rem); line-height: 1.01; letter-spacing: -.055em; }
.hero h1 em { color: var(--cyan-600); font-style: normal; }
.hero__lead { max-width: 575px; margin: 24px 0 0; color: #465b70; font-size: 1.08rem; line-height: 1.72; }
.hero__offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 600px; margin-top: 26px; }
.hero__offers div { position: relative; overflow: hidden; padding: 15px 14px; background: rgba(255, 255, 255, .84); border: 1px solid rgba(126, 198, 231, .55); border-radius: 15px; box-shadow: 0 10px 30px rgba(4, 70, 118, .08); backdrop-filter: blur(12px); }
.hero__offers div::after { content: ""; position: absolute; right: -14px; bottom: -24px; width: 64px; height: 64px; background: rgba(17, 172, 243, .09); border-radius: 50%; }
.hero__offers span { display: block; color: var(--navy-900); font-size: 1.05rem; font-weight: 950; line-height: 1.1; }
.hero__offers strong { display: block; margin-top: 5px; color: #587087; font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.hero__note { margin: 13px 0 0; color: #6b7f91; font-size: .73rem; }
.hero__phone { margin: 16px 0 0; color: var(--muted); font-size: .89rem; }
.hero__phone a { color: var(--navy-900); font-weight: 900; }
.hero__trust-card { position: absolute; right: 0; bottom: 34px; width: min(395px, 38%); display: flex; align-items: center; gap: 14px; padding: 16px 18px; color: var(--white); background: rgba(3, 31, 59, .9); border: 1px solid rgba(255, 255, 255, .15); border-radius: 18px; box-shadow: var(--shadow-lg); backdrop-filter: blur(14px); }
.hero__trust-icon { width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; color: #67d4ff; background: rgba(17, 172, 243, .16); border-radius: 13px; }
.hero__trust-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero__trust-card strong { display: block; font-size: .92rem; }
.hero__trust-card p { margin: 3px 0 0; color: #bcd8e9; font-size: .75rem; }

.section-heading { width: min(730px, 100%); margin: 0 auto 48px; text-align: center; }
.section-heading h2, .why h2, .faq h2 { margin: 0; color: var(--navy-950); font-size: clamp(2rem, 3.8vw, 3.2rem); line-height: 1.12; letter-spacing: -.035em; }
.section-heading > p:last-child { max-width: 630px; margin: 16px auto 0; color: var(--muted); }

.services { background: linear-gradient(#fff 0%, #f7fbff 100%); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; overflow: hidden; padding: 0 28px 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: #aedbf3; box-shadow: 0 22px 50px rgba(4, 75, 126, .13); }
.service-card::before { content: ""; position: absolute; inset: 0 0 auto; z-index: 2; height: 4px; background: linear-gradient(90deg, var(--cyan-500), var(--orange-500)); }
.service-card__image { position: relative; height: 218px; margin: 0 -28px 27px; overflow: hidden; background: #e8f4fa; }
.service-card__image::after { content: ""; position: absolute; inset: auto 0 0; height: 42%; background: linear-gradient(transparent, rgba(3, 31, 59, .56)); pointer-events: none; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-card:hover .service-card__image img { transform: scale(1.045); }
.service-card__number { position: absolute; top: 17px; right: 17px; z-index: 1; min-width: 43px; margin: 0; padding: 6px 10px; color: var(--white); background: rgba(3, 31, 59, .82); border: 1px solid rgba(255, 255, 255, .25); border-radius: 999px; font-size: .78rem; font-weight: 950; text-align: center; backdrop-filter: blur(7px); }
.service-card__icon { position: absolute; left: 20px; bottom: 17px; z-index: 1; width: 62px; height: 62px; display: grid; place-items: center; margin: 0; color: var(--navy-900); background: rgba(221, 245, 255, .94); border: 2px solid rgba(255, 255, 255, .8); border-radius: 17px; box-shadow: 0 10px 24px rgba(3, 31, 59, .18); backdrop-filter: blur(7px); }
.service-card__icon--fridge { color: #df6700; background: var(--orange-100); }
.service-card__icon--washer { color: #0876bb; background: #e4f1ff; }
.service-card__icon svg { width: 41px; height: 41px; fill: none; stroke: currentColor; stroke-width: 2.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0; color: var(--navy-950); font-size: 1.35rem; }
.service-card > p:not(.service-card__number) { min-height: 78px; margin: 11px 0 18px; color: var(--muted); font-size: .92rem; }
.service-card ul { display: grid; gap: 9px; margin: 0 0 25px; padding: 0; list-style: none; }
.service-card li { position: relative; padding-left: 20px; color: #42566b; font-size: .88rem; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; background: var(--cyan-500); border-radius: 50%; }
.service-card > a { display: inline-flex; align-items: center; gap: 7px; color: var(--navy-900); font-size: .91rem; font-weight: 900; }
.service-card > a span { color: var(--orange-500); font-size: 1.15rem; transition: transform .2s ease; }
.service-card > a:hover span { transform: translateX(4px); }
.availability-banner { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 36px; padding: 28px 32px; color: var(--white); background: linear-gradient(115deg, var(--cyan-600), var(--navy-800)); border-radius: var(--radius-md); }
.availability-banner p { margin: 0 0 2px; color: #d9f6ff; font-size: .82rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.availability-banner strong { font-size: 1.27rem; }
.availability-banner__actions { display: flex; align-items: center; gap: 18px; }
.availability-banner__form-link { color: var(--white); font-size: .86rem; font-weight: 900; white-space: nowrap; }
.availability-banner__form-link:hover { text-decoration: underline; }

.booking { position: relative; overflow: hidden; color: var(--white); background: var(--navy-950); }
.booking::before { content: ""; position: absolute; top: -230px; left: -170px; width: 560px; height: 560px; background: radial-gradient(circle, rgba(17, 172, 243, .22), transparent 69%); }
.booking::after { content: ""; position: absolute; right: -110px; bottom: -170px; width: 390px; height: 390px; border: 62px solid rgba(255, 122, 0, .08); border-radius: 50%; }
.booking__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 76px; }
.booking__content .section-kicker { color: #69d2ff; }
.booking__content h2 { margin: 0; color: var(--white); font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.08; letter-spacing: -.04em; }
.booking__content > p:last-of-type { max-width: 510px; margin: 21px 0 0; color: #bdd3e3; }
.booking__highlights { display: grid; gap: 11px; margin-top: 29px; }
.booking__highlights span { display: flex; align-items: center; gap: 9px; color: #cce2ef; font-size: .88rem; }
.booking__highlights span::before { content: "✓"; width: 24px; height: 24px; display: grid; place-items: center; color: var(--navy-950); background: #69d2ff; border-radius: 50%; font-size: .75rem; font-weight: 950; }
.booking__highlights strong { color: var(--white); }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 32px; color: var(--ink); background: var(--white); border: 1px solid rgba(255, 255, 255, .2); border-radius: 24px; box-shadow: 0 26px 70px rgba(0, 15, 30, .25); }
.booking-form__heading, .booking-form__wide, .booking-form__submit, .booking-form__note { grid-column: 1 / -1; }
.booking-form__heading { padding-bottom: 4px; }
.booking-form__heading span { display: block; color: var(--cyan-600); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.booking-form__heading strong { display: block; margin-top: 3px; color: var(--navy-950); font-size: 1.35rem; }
.booking-form label > span { display: block; margin: 0 0 6px 3px; color: #496075; font-size: .76rem; font-weight: 800; }
.booking-form input, .booking-form select, .booking-form textarea { width: 100%; color: var(--ink); background: #f5f9fc; border: 1px solid #d6e4ee; border-radius: 11px; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.booking-form input, .booking-form select { height: 49px; padding: 0 13px; }
.booking-form textarea { display: block; min-height: 90px; padding: 12px 13px; resize: vertical; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { background: var(--white); border-color: var(--cyan-500); box-shadow: 0 0 0 3px rgba(17, 172, 243, .15); }
.booking-form__submit { width: 100%; min-height: 54px; border-radius: 12px; }
.booking-form__note { margin: -3px 0 0; color: #748496; font-size: .71rem; text-align: center; }

.locations { position: relative; overflow: hidden; padding: 78px 0; background: #eef9ff; }
.locations::before { content: ""; position: absolute; top: -190px; left: -160px; width: 430px; height: 430px; background: radial-gradient(circle, rgba(17, 172, 243, .2), transparent 70%); }
.locations__inner { position: relative; display: grid; grid-template-columns: 1.4fr .6fr; align-items: center; gap: 70px; padding: 45px 52px; background: var(--white); border: 1px solid #d6ebf6; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.locations__content h2 { max-width: 700px; margin: 0; color: var(--navy-950); font-size: clamp(1.9rem, 3.4vw, 2.8rem); line-height: 1.12; letter-spacing: -.035em; }
.locations__content > p:last-of-type { max-width: 680px; margin: 15px 0 0; color: var(--muted); }
.location-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.location-chips span { display: inline-flex; align-items: center; min-height: 39px; padding: 8px 15px; color: var(--navy-900); background: var(--cyan-100); border: 1px solid #bce7fa; border-radius: 999px; font-size: .85rem; font-weight: 850; }
.location-chips span::before { content: ""; width: 7px; height: 7px; margin-right: 8px; background: var(--orange-500); border-radius: 50%; }
.locations__offer { padding: 27px; color: var(--white); background: linear-gradient(145deg, var(--navy-950), var(--navy-800)); border-radius: 22px; box-shadow: 0 20px 45px rgba(3, 31, 59, .18); }
.locations__offer small { display: block; color: #8edfff; font-size: .72rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.locations__offer strong { display: block; margin-top: 8px; font-size: 1.6rem; line-height: 1.15; }
.locations__offer p { margin: 8px 0 20px; color: #c5e0f0; font-size: .9rem; }
.locations__offer .btn { width: 100%; }

.why { overflow: hidden; }
.why__grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 76px; }
.why__visual { position: relative; min-height: 520px; padding: 52px 40px; background: linear-gradient(145deg, var(--navy-950), var(--navy-800)); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.why__visual::before, .why__visual::after { content: ""; position: absolute; border-radius: 50%; }
.why__visual::before { top: -90px; right: -80px; width: 260px; height: 260px; background: rgba(17, 172, 243, .18); }
.why__visual::after { bottom: -100px; left: -80px; width: 220px; height: 220px; border: 35px solid rgba(255, 122, 0, .13); }
.why__badge { position: relative; z-index: 1; }
.why__badge span { color: #55c9ff; font-size: 1rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.why__badge strong { display: block; width: min(350px, 100%); margin-top: 15px; color: var(--white); font-size: clamp(1.65rem, 3vw, 2.55rem); line-height: 1.15; }
.appliance-stack { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 58px; }
.appliance-stack div { display: grid; place-items: center; min-width: 0; padding: 18px 8px 14px; color: var(--white); background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .13); border-radius: 16px; backdrop-filter: blur(10px); }
.appliance-stack svg { width: 56px; height: 56px; fill: none; stroke: #6bd5ff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.appliance-stack span { margin-top: 5px; font-size: .78rem; font-weight: 800; }
.why__lead { margin: 20px 0 29px; color: var(--muted); }
.benefit-list { display: grid; gap: 4px; }
.benefit-list article { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.benefit-list article:last-child { border-bottom: 0; }
.benefit-list article > span { width: 44px; height: 44px; display: grid; place-items: center; color: var(--navy-900); background: var(--cyan-100); border-radius: 14px; font-size: .76rem; font-weight: 950; }
.benefit-list h3 { margin: 0; color: var(--navy-950); font-size: 1rem; }
.benefit-list p { margin: 5px 0 0; color: var(--muted); font-size: .89rem; }

.process { position: relative; overflow: hidden; color: var(--white); background: var(--navy-950); }
.process::before { content: ""; position: absolute; top: -280px; left: 50%; width: 660px; height: 660px; background: radial-gradient(circle, rgba(17, 172, 243, .16), transparent 68%); transform: translateX(-50%); }
.section-heading--light { position: relative; }
.section-heading--light h2 { color: var(--white); }
.section-heading--light .section-kicker { color: #69d2ff; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.process-card { position: relative; padding: 34px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .11); border-radius: var(--radius-md); }
.process-card > span { position: absolute; top: 24px; right: 28px; color: rgba(255, 255, 255, .14); font-size: 3.6rem; font-weight: 950; line-height: 1; }
.process-card__icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 25px; color: #6bd5ff; background: rgba(17, 172, 243, .12); border-radius: 17px; }
.process-card__icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.process-card h3 { margin: 0; font-size: 1.25rem; }
.process-card p { margin: 11px 0 0; color: #b8cce0; font-size: .91rem; }
.process__cta { position: relative; display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 38px; }
.process__cta p { margin: 0; color: #c9deec; font-weight: 800; }
.process__cta .text-link { color: #6bd5ff; font-size: .91rem; font-weight: 800; }

.faq { background: var(--surface); }
.faq__grid { display: grid; grid-template-columns: .65fr 1.35fr; align-items: start; gap: 80px; }
.faq__intro { position: sticky; top: 130px; }
.faq__intro p:not(.section-kicker) { margin: 18px 0; color: var(--muted); }
.faq__intro a { color: var(--navy-900); font-size: 1.3rem; font-weight: 950; }
.accordion { display: grid; gap: 12px; }
.accordion details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: 0 6px 20px rgba(4, 45, 84, .04); }
.accordion summary { position: relative; padding: 20px 58px 20px 22px; color: var(--navy-950); cursor: pointer; list-style: none; font-weight: 850; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span, .accordion summary span::after { position: absolute; background: var(--cyan-600); border-radius: 2px; }
.accordion summary span { top: 50%; right: 24px; width: 16px; height: 2px; }
.accordion summary span::after { content: ""; top: -7px; left: 7px; width: 2px; height: 16px; transition: transform .2s ease; }
.accordion details[open] summary span::after { transform: rotate(90deg); }
.accordion details[open] summary { color: var(--cyan-600); }
.accordion details p { margin: 0; padding: 0 22px 21px; color: var(--muted); font-size: .92rem; }

.final-cta { padding: 65px 0; color: var(--white); background: linear-gradient(115deg, var(--cyan-600), var(--navy-800) 70%); }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.final-cta p { margin: 0 0 6px; color: #d9f5ff; font-size: .84rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.final-cta h2 { margin: 0; font-size: clamp(1.8rem, 3.2vw, 2.75rem); line-height: 1.1; }
.final-cta__actions { display: flex; gap: 12px; flex: 0 0 auto; }

.site-footer { padding: 65px 0 20px; background: #eef7fd; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .75fr .75fr; gap: 65px; }
.footer-brand img { width: 220px; height: auto; }
.footer-brand p { max-width: 420px; margin: 20px 0 0; color: var(--muted); }
.footer-grid h2 { margin: 0 0 15px; color: var(--navy-950); font-size: .82rem; letter-spacing: .09em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid span { color: #435971; font-size: .9rem; }
.footer-grid a { color: #435971; font-size: .9rem; }
.footer-grid a:hover { color: var(--cyan-600); }
.footer-bottom { display: flex; justify-content: space-between; gap: 40px; margin-top: 46px; padding-top: 18px; color: #6d8092; border-top: 1px solid #cfdfeb; font-size: .73rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--navy-900); font-weight: 900; }
.footer-bottom a:hover { color: var(--cyan-600); }
.footer-bottom p:last-child { max-width: 720px; text-align: right; }

.mobile-cta { display: none; }
.noscript { padding: 10px 20px; color: var(--white); background: #b1302f; text-align: center; }
.noscript a { text-decoration: underline; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .hero__content { width: 60%; }
  .why__grid { gap: 45px; }
}

@media (max-width: 820px) {
  .section { padding: 76px 0; }
  .top-strip__inner { justify-content: center; }
  .header-inner { min-height: 72px; }
  .brand { width: 190px; }
  .header-call { display: none; }
  .hero { min-height: 760px; }
  .hero__image { object-position: 64% center; }
  .hero__veil { background: linear-gradient(90deg, rgba(244, 251, 255, .98) 0%, rgba(244, 251, 255, .9) 57%, rgba(244, 251, 255, .25) 100%); }
  .hero__inner { min-height: 760px; }
  .hero__content { width: 68%; }
  .hero__trust-card { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card__image { height: 330px; }
  .service-card > p:not(.service-card__number) { min-height: auto; }
  .why__grid, .faq__grid { grid-template-columns: 1fr; }
  .booking__grid { grid-template-columns: 1fr; gap: 42px; }
  .locations__inner { grid-template-columns: 1fr; gap: 30px; }
  .why__visual { min-height: 420px; }
  .why__grid { gap: 50px; }
  .process-grid { grid-template-columns: 1fr; }
  .faq__grid { gap: 42px; }
  .faq__intro { position: static; }
  .final-cta__inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
}

@media (max-width: 600px) {
  body { padding-bottom: 68px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 64px 0; }
  .top-strip { font-size: .75rem; }
  .top-strip__inner { min-height: 42px; }
  .top-strip p { display: block; text-align: center; line-height: 1.35; }
  .top-strip p span { margin-inline: 4px; }
  .top-strip a { display: none; }
  .site-header { top: 0; }
  .header-inner { min-height: 66px; }
  .brand { width: 166px; }
  .header-actions .btn--whatsapp { min-height: 41px; padding: 10px 15px; font-size: .82rem; }
  .header-actions .btn--whatsapp svg { display: none; }
  .hero { min-height: auto; padding-top: 0; background: #f3fbff; }
  .hero__image { height: 100%; object-position: 69% center; opacity: .25; }
  .hero__veil { height: 100%; background: linear-gradient(100deg, rgba(243, 251, 255, .99) 0%, rgba(243, 251, 255, .94) 58%, rgba(243, 251, 255, .7) 100%); }
  .hero__inner { min-height: 0; display: block; padding-block: 58px 48px; }
  .hero__content { width: 100%; }
  .eyebrow { font-size: .7rem; }
  .hero h1 { font-size: clamp(2.4rem, 13vw, 3.4rem); }
  .hero__lead { margin-top: 18px; font-size: 1rem; }
  .hero__offers { grid-template-columns: 1fr 1fr; }
  .hero__offers div:last-child { grid-column: 1 / -1; }
  .hero__actions { flex-direction: column; margin-top: 25px; }
  .hero__actions .btn { width: 100%; }
  .hero__phone { text-align: center; }
  .hero__trust-card { position: static; width: 100%; display: flex; margin-top: 28px; }
  .section-heading { margin-bottom: 35px; text-align: left; }
  .section-heading h2, .why h2, .faq h2 { font-size: 2rem; }
  .section-heading > p:last-child { margin-left: 0; }
  .service-card { padding: 0 23px 26px; }
  .service-card__image { height: 230px; margin: 0 -23px 24px; }
  .availability-banner { align-items: stretch; flex-direction: column; padding: 25px 22px; }
  .availability-banner .btn { width: 100%; }
  .availability-banner__actions { align-items: stretch; flex-direction: column; gap: 12px; text-align: center; }
  .booking__grid { gap: 32px; }
  .booking-form { grid-template-columns: 1fr; padding: 25px 20px; border-radius: 19px; }
  .booking-form__heading, .booking-form__wide, .booking-form__submit, .booking-form__note { grid-column: 1; }
  .locations { padding: 54px 0; }
  .locations__inner { padding: 30px 22px; border-radius: 22px; }
  .locations__offer { padding: 24px 20px; }
  .why__grid { gap: 42px; }
  .why__visual { min-height: 380px; padding: 37px 25px; border-radius: 22px; }
  .appliance-stack { margin-top: 45px; gap: 8px; }
  .appliance-stack div { padding-inline: 4px; }
  .appliance-stack svg { width: 46px; height: 46px; }
  .benefit-list article { grid-template-columns: 44px 1fr; gap: 13px; }
  .process-card { padding: 28px 24px; }
  .process__cta { align-items: stretch; flex-direction: column; text-align: center; }
  .faq__grid { gap: 30px; }
  .accordion summary { padding: 18px 48px 18px 18px; font-size: .92rem; }
  .accordion summary span { right: 19px; }
  .accordion details p { padding: 0 18px 18px; font-size: .88rem; }
  .final-cta { padding: 48px 0; }
  .final-cta__actions { width: 100%; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .footer-bottom p:last-child { text-align: left; }
  .mobile-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 7px max(8px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
    gap: 7px;
    background: rgba(255, 255, 255, .97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(3, 31, 59, .12);
  }
  .mobile-cta a { min-height: 49px; display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--white); background: linear-gradient(135deg, var(--navy-800), var(--cyan-600)); border-radius: 12px; font-size: .88rem; font-weight: 900; }
  .mobile-cta a:last-child { background: var(--whatsapp); }
  .mobile-cta svg { width: 20px; height: 20px; fill: currentColor; }
}

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