:root {
  --ink: #102b29;
  --green: #073b36;
  --mint: #37e1b8;
  --paper: #f3f9f7;
  --line: #d7e7e2;
  --muted: #627570;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font:
    16px/1.6 Manrope,
    system-ui,
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 16%, rgba(55, 225, 184, 0.2), transparent 30rem),
    radial-gradient(circle at 92% 9%, rgba(7, 59, 54, 0.11), transparent 32rem),
    linear-gradient(180deg, #fbfffe 0%, #edf8f4 72%, #fbfdfc 100%);
  overflow-x: hidden;
}
.shell {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.05;
}
.brand small {
  display: block;
  font-size: 0.61rem;
  color: var(--muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-top: 5px;
}
.logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid #e7bc55;
  box-shadow: 0 7px 18px rgba(7, 59, 54, 0.2);
}
.nav nav {
  margin-left: auto;
  display: flex;
  gap: 24px;
}
.nav nav a,
.nav-call {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
}
.nav-call {
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 8px 14px;
}
.scroll-hero {
  height: 230svh;
  position: relative;
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  gap: 76px;
  align-items: center;
  min-height: 100svh;
  padding: 40px 0 56px;
  position: relative;
  position: sticky;
  top: 0;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 26px -22px 38px;
  border: 1px solid rgba(7, 59, 54, 0.08);
  border-radius: 42px;
  background:
    linear-gradient(rgba(7, 59, 54, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 59, 54, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(222, 247, 239, 0.62));
  background-size: 38px 38px, 38px 38px, auto;
  box-shadow: 0 26px 70px rgba(7, 59, 54, 0.09);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 230px;
  height: 230px;
  left: 39%;
  bottom: 15px;
  border-radius: 50%;
  background: rgba(55, 225, 184, 0.12);
  filter: blur(2px);
}
.eyebrow,
.kicker {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--green);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow i {
  width: 9px;
  height: 9px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 5px #d7f8ef;
}
.hero h1 {
  font-size: clamp(3.3rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin: 25px 0;
}
.hero h1 em {
  display: block;
  font-style: normal;
  color: var(--green);
}
.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}
.actions {
  display: flex;
  gap: 12px;
  margin: 34px 0;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 14px 21px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
}
.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 15px 32px #073b3625;
}
.ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: white;
}
.proof {
  display: flex;
  gap: 35px;
  margin-top: 40px;
}
.proof div {
  display: flex;
  flex-direction: column;
}
.proof strong {
  font-size: 0.91rem;
}
.proof span {
  font-size: 0.73rem;
  color: var(--muted);
}
.diagnostic {
  min-height: 520px;
  background: var(--green);
  border-radius: 32px;
  padding: 38px;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.diagnostic:before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: var(--mint);
  opacity: 0.2;
  border-radius: 50%;
  top: -170px;
  right: -120px;
}
.light {
  color: var(--mint);
}
.diagnostic h2 {
  font-size: 2rem;
  line-height: 1.05;
  margin: 18px 0 8px;
}
.diagnostic > p {
  color: #c7deda;
  margin: 0;
}
.appliance-visual {
  display: block;
  width: min(100%, 340px);
  height: 225px;
  object-fit: contain;
  margin: 14px auto 10px;
  filter: drop-shadow(0 22px 24px #002d2755);
  position: relative;
  z-index: 1;
}
.diagnostic > a {
  margin-top: auto;
  background: #062d29;
  color: white;
  text-decoration: none;
  border-radius: 15px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  z-index: 1;
}
.scroll-video-card {
  min-height: 560px;
  height: min(72svh, 690px);
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: var(--green);
  box-shadow: 0 26px 65px rgba(7, 59, 54, 0.24);
}
.scroll-video-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.video-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(2, 25, 22, 0.86) 100%),
    linear-gradient(90deg, rgba(2, 25, 22, 0.18), transparent 55%);
  pointer-events: none;
}
.video-story {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  color: white;
}
.video-story h2 {
  max-width: 420px;
  margin: 10px 0 6px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.045em;
}
.video-story p {
  margin: 0 0 16px;
  color: #d5e7e3;
  font-size: 0.84rem;
}
.scroll-meter {
  width: 100%;
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.3);
}
.scroll-meter i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}
.scroll-cue {
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 99px;
  color: white;
  background: rgba(7, 59, 54, 0.58);
  backdrop-filter: blur(8px);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.booking,
.process {
  background: var(--green);
  padding: 90px 0;
}
.booking-grid,
.process-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}
.booking-copy h2,
.process h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  color: white;
  margin: 13px 0;
}
.booking-copy > p {
  color: #c1d7d3;
}
.booking-copy ol {
  list-style: none;
  padding: 30px 0 0;
  margin: 0;
}
.booking-copy li {
  color: #8ca9a4;
  padding: 12px 0;
  display: flex;
  gap: 12px;
  align-items: center;
}
.booking-copy li b {
  width: 27px;
  height: 27px;
  border: 1px solid #5d827c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
}
.booking-copy li.active {
  color: white;
}
.booking-copy li.active b {
  background: var(--mint);
  color: var(--green);
  border-color: var(--mint);
}
form {
  background: white;
  border-radius: 28px;
  padding: 38px;
  min-height: 500px;
}
form header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
form header span {
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.12em;
}
.step {
  display: none;
  padding-top: 25px;
}
.step.active {
  display: block;
}
form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 18px;
}
form input,
form textarea,
form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  margin-top: 7px;
  background: white;
  color: var(--ink);
}
form input:focus,
form textarea:focus,
form select:focus {
  outline: 3px solid #37e1b833;
  border-color: var(--mint);
}
.choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 23px;
}
.choices button {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  min-height: 48px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}
.choices button.selected {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.next,
.submit,
.back {
  border: 0;
  border-radius: 13px;
  padding: 15px 19px;
  font: 800 0.9rem Manrope;
  cursor: pointer;
}
.next,
.submit {
  background: var(--green);
  color: white;
  float: right;
}
.back {
  background: var(--paper);
}
.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.privacy {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: right;
  clear: both;
  padding-top: 16px;
}
.services {
  padding: 100px 0;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}
.section-head h2,
.coverage h2,
.faq h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
  margin: 12px 0;
}
.section-head p,
.coverage p {
  color: var(--muted);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-grid article {
  padding: 35px;
  background: white;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.service-grid article > b {
  position: absolute;
  right: 28px;
  top: 28px;
  color: #a7bbb7;
  font-size: 0.73rem;
}
.service-grid article > span {
  width: 44px;
  height: 44px;
  background: var(--paper);
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-weight: 800;
}
.service-grid h3 {
  font-size: 1.25rem;
  margin: 25px 0 7px;
}
.service-grid p {
  color: var(--muted);
  margin: 0 0 20px;
}
.service-grid a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
  font-size: 0.84rem;
}
.repair-work {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 76px;
  align-items: center;
  padding: 0 0 100px;
}
.repair-photo {
  position: relative;
  max-width: 500px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: 0 24px 60px rgba(7, 59, 54, 0.13);
}
.repair-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.repair-photo span {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 9px 13px;
  border-radius: 99px;
  background: rgba(7, 59, 54, 0.92);
  color: white;
  font-size: 0.73rem;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(7, 59, 54, 0.22);
}
.repair-copy h2 {
  max-width: 720px;
  margin: 12px 0 20px;
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.repair-copy > p {
  max-width: 660px;
  color: var(--muted);
}
.repair-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}
.google-link {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid var(--green);
}
.process-grid {
  grid-template-columns: 0.8fr 1.2fr;
}
.timeline article {
  color: white;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  border-bottom: 1px solid #ffffff20;
  padding: 20px 0;
}
.timeline article:first-child {
  padding-top: 0;
}
.timeline b {
  color: var(--mint);
  font-size: 0.75rem;
}
.timeline h3 {
  margin: 0;
}
.timeline p {
  margin: 4px 0;
  color: #aec8c3;
  font-size: 0.88rem;
}
.coverage {
  padding: 100px 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.area-list span {
  border: 1px solid var(--line);
  padding: 9px 14px;
  border-radius: 99px;
  background: white;
  font-size: 0.78rem;
  font-weight: 700;
}
.brands {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 30px;
}
.brands span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--green);
}
.brands div {
  font-weight: 700;
  color: var(--muted);
}
.faq {
  padding: 100px 0;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 80px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.faq summary span {
  font-size: 1.3rem;
}
.faq p {
  color: var(--muted);
}
.final {
  margin-bottom: 65px;
  background: var(--mint);
  border-radius: 30px;
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.final h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  margin: 12px 0;
}
.final > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.final a {
  color: var(--green);
  font-weight: 800;
}
.white {
  background: white;
}
footer {
  display: grid !important;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 45px;
  padding-bottom: 45px !important;
  color: var(--muted);
  font-size: 0.78rem;
}
footer > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer a {
  color: var(--ink);
  text-decoration: none;
}
footer strong {
  color: var(--ink);
}
footer > p {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.float-wa {
  display: none;
  position: fixed;
  right: 17px;
  bottom: 17px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #20b868;
  color: white;
  text-decoration: none;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 12px 30px #073b3655;
  z-index: 20;
}
#toast {
  position: fixed;
  left: 50%;
  bottom: 25px;
  transform: translate(-50%, 120px);
  background: #102b29;
  color: white;
  border-radius: 12px;
  padding: 12px 18px;
  transition: 0.3s;
  z-index: 30;
  font-size: 0.86rem;
}
#toast.show {
  transform: translate(-50%, 0);
}
@media (max-width: 850px) {
  .nav nav {
    display: none;
  }
  .hero,
  .booking-grid,
  .process-grid,
  .repair-work,
  .coverage,
  .faq {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .hero {
    padding-top: 28px;
  }
  .scroll-hero {
    height: 240svh;
  }
  .scroll-hero .hero {
    align-content: center;
    gap: 24px;
  }
  .scroll-video-card {
    min-height: 340px;
    height: 44svh;
  }
  .section-head {
    grid-template-columns: 1fr;
  }
  .final {
    flex-direction: column;
    align-items: flex-start;
  }
  .float-wa {
    display: grid;
  }
}
@media (max-width: 570px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }
  .nav {
    height: 68px;
  }
  .logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .nav-call {
    font-size: 0.73rem;
  }
  .hero {
    padding: 24px 0 36px;
  }
  .hero::before {
    inset: 16px -7px 24px;
    border-radius: 28px;
    background-size: 28px 28px, 28px 28px, auto;
  }
  .hero::after {
    width: 140px;
    height: 140px;
    left: auto;
    right: -6px;
    bottom: 28%;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .actions,
  .proof {
    flex-direction: column;
  }
  .actions .button {
    width: 100%;
  }
  .proof {
    gap: 8px;
    margin-top: 22px;
  }
  .proof div {
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
  }
  .diagnostic {
    border-radius: 24px;
    padding: 27px;
  }
  .scroll-hero {
    height: 260svh;
  }
  .scroll-video-card {
    min-height: 315px;
    height: 40svh;
    border-radius: 24px;
  }
  .video-story {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }
  .video-story h2 {
    font-size: 1.72rem;
  }
  .scroll-cue {
    top: 18px;
    right: 18px;
  }
  .booking,
  .services,
  .repair-work,
  .process,
  .coverage,
  .faq {
    padding: 70px 0;
  }
  form {
    padding: 23px;
    border-radius: 20px;
  }
  form header {
    align-items: flex-start;
    flex-direction: column;
  }
  .choices,
  .two,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .repair-work {
    padding-top: 0;
  }
  .repair-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .repair-actions .button,
  .google-link {
    width: 100%;
    text-align: center;
  }
  .form-actions {
    flex-direction: column-reverse;
    gap: 9px;
  }
  .submit,
  .back {
    width: 100%;
  }
  .brands {
    grid-template-columns: 1fr;
  }
  .final {
    padding: 34px 24px;
    border-radius: 22px;
  }
  .final > div:last-child {
    width: 100%;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  footer > p {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-hero {
    height: auto;
  }
  .scroll-hero .hero {
    position: relative;
  }
  .scroll-cue,
  .scroll-meter {
    display: none;
  }
}
