:root {
  --paper: #f8faf9;
  --surface: #ffffff;
  --ink: #303743;
  --muted: #66717d;
  --faint: #8d97a2;
  --line: #dce3e7;
  --line-2: #edf1f3;
  --teal: #00aeb5;
  --teal-dark: #0798a0;
  --teal-soft: #ddf7f7;
  --footer: #101a20;
  --footer-2: #162229;
  --shadow: 0 18px 55px rgba(30, 41, 51, 0.08);
  --radius: 10px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
body.menu-open,
body.modal-open { overflow: hidden; }
button,
input,
select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
.page-shell { width: min(100% - 90px, 1170px); margin-inline: auto; }

.site-header {
  padding: 30px 0 20px;
  background: linear-gradient(180deg, #fff 0%, rgba(248,250,249,0.9) 100%);
}
.header-grid {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: start;
  gap: 22px;
}
.logo { display: inline-flex; flex-direction: column; gap: 4px; width: max-content; }
.logo-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #222a34;
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0.055em;
  font-weight: 750;
}
.logo-subtitle { color: #8c949e; font-size: 12px; letter-spacing: 0.005em; }
.sparkles { position: relative; display: inline-block; width: 20px; height: 20px; margin-left: 2px; }
.sparkles::before,
.sparkles::after,
.sparkles i,
.sparkles b {
  content: "";
  position: absolute;
  background: var(--teal);
  border-radius: 1px;
  transform: rotate(45deg);
}
.sparkles::before { width: 10px; height: 3px; left: 2px; top: 4px; }
.sparkles::after { width: 3px; height: 10px; left: 5px; top: 0; }
.sparkles i { width: 7px; height: 2px; right: 1px; top: 9px; opacity: .85; }
.sparkles b { width: 2px; height: 7px; right: 3px; top: 6px; opacity: .85; }
.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  color: #303743;
  font-size: 12px;
  font-weight: 600;
  padding-top: 15px;
  white-space: nowrap;
}
.main-nav a,
.footer-col a,
.footer-col button { transition: color .2s ease, opacity .2s ease; }
.main-nav a:hover,
.footer-col a:hover,
.footer-col button:hover { color: var(--teal); }
.header-actions { display: flex; align-items: start; gap: 16px; }
.phone {
  display: grid;
  grid-template-columns: 20px auto;
  gap: 8px;
  min-width: 174px;
  padding-top: 2px;
  color: #2c3440;
}
.phone svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; margin-top: 1px; }
.phone strong { display: block; font-size: 15px; line-height: 1.1; white-space: nowrap; }
.phone em { display: block; margin-top: 3px; color: #8a929b; font-size: 10px; font-style: normal; text-align: right; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
  user-select: none;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { color: #fff; background: linear-gradient(180deg, #10bbc1 0%, #02aeb5 100%); box-shadow: 0 10px 24px rgba(0, 174, 181, .18); }
.btn-primary:hover { background: linear-gradient(180deg, #0cb1b7 0%, #039fa6 100%); box-shadow: 0 12px 26px rgba(0, 174, 181, .23); }
.btn-secondary { color: #303743; background: #fff; border-color: #75808b; box-shadow: none; }
.btn-secondary:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn-wide { width: 100%; }
.header-cta { min-width: 142px; }
.burger { display: none; width: 40px; height: 38px; border: 1px solid var(--line); background: #fff; border-radius: 8px; padding: 0; }
.burger span { display: block; width: 18px; height: 2px; margin: 5px auto; background: #33404b; border-radius: 2px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 455px);
  gap: clamp(44px, 8vw, 104px);
  align-items: start;
  padding: 38px 0 33px;
}
.hero-copy { padding-top: 3px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 5px 13px;
  border-radius: 7px;
  background: #d9f6f6;
  color: #078f98;
  font-size: 12px;
  font-weight: 750;
}
h1, h2, h3, p { margin: 0; }
h1 {
  max-width: 570px;
  margin-top: 22px;
  color: #333b47;
  font-size: clamp(50px, 5.5vw, 68px);
  line-height: 1.18;
  letter-spacing: -0.045em;
  font-weight: 800;
}
.hero-lead { max-width: 490px; margin-top: 20px; color: #697481; font-size: 17px; line-height: 1.55; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 565px; margin-top: 43px; }
.trust-item { display: grid; justify-items: center; gap: 13px; color: #35404b; text-align: center; font-size: 12.5px; line-height: 1.35; }
.trust-icon,
.service-icon,
.mini,
.lock { position: relative; display: inline-block; color: #2f3b45; }
.trust-icon { width: 36px; height: 36px; }
.trust-icon::before,
.trust-icon::after,
.service-icon::before,
.service-icon::after,
.mini::before,
.mini::after,
.lock::before,
.lock::after { content: ""; position: absolute; box-sizing: border-box; }
.icon-shield::before { inset: 2px 7px 4px; border: 2px solid currentColor; border-top-width: 3px; border-radius: 12px 12px 16px 16px; clip-path: polygon(50% 0,100% 16%,100% 68%,50% 100%,0 68%,0 16%); }
.icon-shield::after { width: 12px; height: 7px; left: 12px; top: 14px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(-45deg); }
.icon-leaf::before { width: 24px; height: 30px; left: 7px; top: 2px; border: 2px solid currentColor; border-radius: 100% 0 100% 55%; transform: rotate(39deg); }
.icon-leaf::after { width: 20px; height: 2px; left: 8px; top: 21px; background: currentColor; transform: rotate(-32deg); transform-origin: left center; }
.icon-clock::before { inset: 3px; border: 2px solid currentColor; border-radius: 50%; }
.icon-clock::after { width: 10px; height: 10px; left: 18px; top: 10px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; }
.icon-card::before { width: 30px; height: 21px; left: 3px; top: 8px; border: 2px solid currentColor; border-radius: 3px; }
.icon-card::after { width: 19px; height: 3px; left: 8px; top: 14px; background: currentColor; box-shadow: 10px 8px 0 -1px currentColor; }
.hero-buttons { display: flex; gap: 18px; margin-top: 48px; }

.calculator-card,
.service-card,
.included-card,
.quick-card,
.review-card,
.subscription-card,
.slot-card,
.modal-card {
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  box-shadow: 0 15px 45px rgba(31, 43, 52, .06);
}
.calculator-card {
  min-height: 522px;
  padding: 28px 29px 24px;
  border: 0;
  border-radius: 13px;
  box-shadow: var(--shadow);
}
.calculator-card h2 { font-size: 23px; line-height: 1.25; letter-spacing: -0.025em; font-weight: 750; }
.calc-row { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.calc-headline { margin-top: 29px; }
.calc-headline label { color: #5f6872; font-size: 13px; font-weight: 600; }
.calc-headline output { color: var(--teal); font-size: 25px; font-weight: 800; letter-spacing: -0.02em; }
.range { width: 100%; margin: 18px 0 10px; accent-color: var(--teal); }
.range::-webkit-slider-runnable-track { height: 4px; border-radius: 20px; background: linear-gradient(90deg, var(--teal) var(--range-fill, 25%), #dde5e8 var(--range-fill, 25%)); }
.range::-webkit-slider-thumb { appearance: none; width: 26px; height: 26px; margin-top: -11px; border: 2px solid #bfeeee; border-radius: 50%; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,.12); }
.range::-moz-range-track { height: 4px; border-radius: 20px; background: #dde5e8; }
.range::-moz-range-progress { height: 4px; border-radius: 20px; background: var(--teal); }
.range-scale { display: flex; justify-content: space-between; color: #8c949e; font-size: 11px; }
.segmented { margin: 26px 0 0; padding: 0; border: 0; }
.segmented legend,
.addons legend { margin-bottom: 12px; color: #5f6872; font-size: 13px; font-weight: 700; }
.segmented { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.segmented legend { grid-column: 1 / -1; }
.segmented label { position: relative; min-width: 0; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented span {
  display: flex; align-items: center; justify-content: center;
  min-height: 34px; padding: 0 10px; border: 1px solid #cfd8dd; border-radius: 5px; color: #68727d; background: #fff; font-size: 12px; font-weight: 650; white-space: nowrap;
}
.segmented input:checked + span { border-color: var(--teal); color: var(--teal-dark); background: #edfbfb; box-shadow: inset 0 0 0 1px rgba(0,174,181,.14); }
.addons { margin: 25px 0 0; padding: 0; border: 0; display: grid; gap: 10px; }
.addons label { display: grid; grid-template-columns: 17px 1fr auto; align-items: center; gap: 9px; color: #5d6670; font-size: 12.5px; }
.addons input { width: 15px; height: 15px; margin: 0; accent-color: var(--teal); }
.addons em { color: #77828c; font-size: 12px; font-style: normal; }
.total-line { display: flex; justify-content: space-between; align-items: center; margin-top: 23px; padding-top: 18px; border-top: 1px solid #dbe2e6; }
.total-line span { color: #5b6570; font-size: 17px; font-weight: 750; }
.total-line strong { color: #202936; font-size: 30px; line-height: 1; letter-spacing: -0.03em; }
.calculator-card .btn-wide { margin-top: 20px; min-height: 43px; }
.price-note { display: flex; justify-content: center; align-items: center; gap: 9px; margin-top: 20px; color: #969fa8; font-size: 11px; }
.lock { width: 15px; height: 15px; }
.lock::before { width: 12px; height: 9px; left: 2px; top: 6px; border: 1.6px solid #9aa4ac; border-radius: 2px; }
.lock::after { width: 7px; height: 7px; left: 4.5px; top: 1px; border: 1.6px solid #9aa4ac; border-bottom: 0; border-radius: 7px 7px 0 0; }

.section-block { padding: 4px 0 25px; }
.section-heading { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.section-heading h2,
.included-card h2,
.quick-card h2,
.subscription-card h2,
.modal-card h2 { font-size: 24px; line-height: 1.2; letter-spacing: -0.025em; font-weight: 800; color: #303743; }
.compact-heading { margin-bottom: 21px; }
.stacked-heading { align-items: flex-start; flex-direction: column; gap: 2px; margin-bottom: 18px; }
.stacked-heading p { color: #66717d; font-size: 13px; }
.link-arrow { border: 0; background: transparent; padding: 6px 0; color: #45505c; font-size: 12px; font-weight: 700; }
.link-arrow span { padding-left: 8px; font-size: 18px; vertical-align: -1px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { min-height: 312px; padding: 29px 33px 26px; border-radius: 9px; }
.service-icon { width: 59px; height: 59px; border-radius: 50%; background: var(--teal-soft); color: #2f3b45; margin-bottom: 18px; }
.spray::before { width: 20px; height: 27px; left: 20px; top: 21px; border: 2px solid currentColor; border-radius: 3px 3px 7px 7px; }
.spray::after { width: 18px; height: 13px; left: 21px; top: 12px; border: 2px solid currentColor; border-bottom: 0; transform: skewX(-12deg); }
.bucket::before { width: 22px; height: 24px; left: 19px; top: 22px; border: 2px solid currentColor; border-radius: 2px 2px 8px 8px; }
.bucket::after { width: 28px; height: 14px; left: 15px; top: 14px; border: 2px solid currentColor; border-bottom: 0; border-radius: 16px 16px 0 0; }
.roller::before { width: 26px; height: 10px; left: 15px; top: 17px; border: 2px solid currentColor; border-radius: 3px; }
.roller::after { width: 18px; height: 22px; left: 27px; top: 27px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; border-radius: 0 0 0 5px; }
.service-card h3 { max-width: 220px; font-size: 20px; line-height: 1.22; letter-spacing: -0.02em; }
.service-card p { margin-top: 19px; color: #7a838d; font-size: 14px; line-height: 1.45; }
ul { margin: 20px 0 0; padding-left: 19px; color: #5d6873; font-size: 13px; line-height: 1.7; }
.service-card strong { display: block; margin-top: 24px; color: #2f3844; font-size: 24px; letter-spacing: -0.02em; }
.service-card small { color: #7d8791; font-size: 12px; }

.process-anchor { padding-top: 13px; }
.slots-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.slot-card { min-height: 166px; padding: 17px 13px 16px; border-radius: 8px; text-align: center; }
.slot-card.active { border-color: var(--teal); box-shadow: inset 0 0 0 1px rgba(0,174,181,.38); }
.slot-card h3 { color: #606a75; font-size: 12px; font-weight: 800; }
.slot-card small { display: block; margin-top: 3px; color: #8d96a1; font-size: 11px; }
.time-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 19px; }
.time-grid button { min-height: 33px; border: 1px solid #dde4e7; border-radius: 5px; background: #fff; color: #535e69; font-size: 12px; transition: border-color .2s ease, color .2s ease, background .2s ease; }
.time-grid button:hover,
.time-grid button.selected { border-color: var(--teal); background: #edfbfb; color: var(--teal-dark); }
.calendar-card { display: grid; place-items: center; align-content: center; gap: 14px; }
.calendar-card button { display: grid; justify-items: center; gap: 12px; border: 0; background: transparent; color: #6c7580; font-size: 12px; font-weight: 700; }
.calendar-icon { width: 26px; height: 26px; position: relative; }
.calendar-icon::before { content: ""; position: absolute; inset: 5px 4px 3px; border: 2px solid #59636d; border-radius: 3px; }
.calendar-icon::after { content: ""; position: absolute; left: 7px; right: 7px; top: 11px; height: 2px; background: #59636d; }

.mid-grid { display: grid; grid-template-columns: 1.55fr .98fr; gap: 30px; align-items: stretch; padding: 4px 0 26px; }
.included-card,
.quick-card,
.subscription-card { border-radius: 9px; }
.included-card { min-height: 302px; padding: 29px 29px 28px; }
.check-list { display: grid; gap: 13px 32px; margin-top: 25px; color: #53606c; font-size: 13px; }
.check-list.two-col { grid-template-columns: 1fr 1fr; }
.check-list span { position: relative; padding-left: 26px; }
.check-list span::before { content: ""; position: absolute; left: 0; top: 1px; width: 14px; height: 14px; border: 1.8px solid var(--teal); border-radius: 50%; }
.check-list span::after { content: ""; position: absolute; left: 4px; top: 5px; width: 7px; height: 4px; border-left: 1.6px solid var(--teal); border-bottom: 1.6px solid var(--teal); transform: rotate(-45deg); }
.quick-card { padding: 29px 30px 24px; }
.quick-form { display: grid; gap: 11px; margin-top: 20px; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quick-form label,
.modal-form label { display: grid; gap: 6px; }
.quick-form label span,
.modal-form label span { color: #6b747e; font-size: 11px; font-weight: 650; }
.quick-form label span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
input,
select {
  width: 100%;
  min-height: 41px;
  border: 1px solid #d9e0e4;
  border-radius: 5px;
  background: #fff;
  color: #303743;
  padding: 0 13px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus,
select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0, 174, 181, .12); }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #9aa3ac 50%), linear-gradient(135deg, #9aa3ac 50%, transparent 50%); background-position: calc(100% - 17px) 18px, calc(100% - 12px) 18px; background-size: 5px 5px; background-repeat: no-repeat; }
.quick-form .btn-wide { min-height: 42px; margin-top: 2px; }
.form-note { max-width: 270px; margin: 9px auto 0; color: #a0a9b1; font-size: 10px; line-height: 1.3; text-align: center; }
.form-note a { color: #71808e; text-decoration: underline; text-underline-offset: 2px; }
.form-success { margin-top: 8px; padding: 10px 12px; border: 1px solid rgba(0,174,181,.28); border-radius: 6px; background: #effbfb; color: #078f98; font-size: 12px; text-align: center; }

.bottom-grid { display: grid; grid-template-columns: 1.45fr .74fr; gap: 30px; align-items: start; padding: 0 0 42px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review-card { min-height: 161px; padding: 18px 18px 16px; border-radius: 7px; }
.review-head { display: flex; align-items: center; gap: 12px; }
.avatar { position: relative; width: 34px; height: 34px; flex: 0 0 auto; border-radius: 50%; background: #e9eef2; overflow: hidden; }
.avatar::before { content: ""; position: absolute; width: 12px; height: 12px; left: 11px; top: 7px; border-radius: 50%; background: #b5c0ca; }
.avatar::after { content: ""; position: absolute; width: 24px; height: 18px; left: 5px; top: 22px; border-radius: 50% 50% 0 0; background: #b5c0ca; }
.review-head strong { display: block; color: #39434e; font-size: 12px; }
.review-head small { display: block; color: #89929c; font-size: 10px; }
.stars { display: flex; gap: 4px; margin-top: 12px; color: #ffb018; }
.stars span { width: 12px; height: 12px; background: currentColor; clip-path: polygon(50% 0,61% 35%,98% 35%,68% 56%,79% 91%,50% 69%,21% 91%,32% 56%,2% 35%,39% 35%); }
.review-card p { margin-top: 15px; color: #4f5b66; font-size: 11.5px; line-height: 1.55; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 19px; }
.slider-dots span { width: 9px; height: 9px; border-radius: 50%; background: #d2d8dd; }
.slider-dots span.active { width: 18px; border-radius: 999px; background: #2f3b45; }
.subscription-card { min-height: 241px; padding: 27px 32px 26px; }
.subscription-card p { max-width: 290px; margin-top: 14px; color: #687481; font-size: 13px; line-height: 1.45; }
.subscription-card .check-list { gap: 10px; margin-top: 19px; }
.subscription-card .btn { min-width: 259px; margin-top: 22px; }

.site-footer { background: radial-gradient(circle at 14% 0%, #20313a 0%, var(--footer) 36%, #0c1318 100%); color: #d9e0e4; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr .9fr 1fr 1.25fr; gap: 40px; padding: 35px 0 34px; }
.footer-logo .logo-title { color: #fff; }
.footer-logo .logo-subtitle { color: #c8d0d6; }
.footer-brand p { max-width: 235px; margin-top: 19px; color: #c4ccd2; font-size: 13px; line-height: 1.45; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { display: grid; place-items: center; width: 29px; height: 29px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: #fff; font-size: 10px; font-weight: 850; text-transform: uppercase; transition: background .2s ease, border-color .2s ease; }
.socials a:hover { background: var(--teal); border-color: var(--teal); }
.footer-col,
.footer-contact { display: grid; align-content: start; gap: 10px; font-style: normal; }
.footer-col h3,
.footer-contact h3 { margin: 0 0 10px; color: #fff; font-size: 13px; }
.footer-col a,
.footer-col button,
.footer-contact a,
.footer-contact span { color: #c6ced5; font-size: 13px; line-height: 1.25; text-align: left; }
.footer-col button { border: 0; padding: 0; background: transparent; }
.footer-contact a,
.footer-contact > span { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: center; }
.mini { width: 16px; height: 16px; color: #f3f7f8; }
.phone-mini::before { inset: 2px; border: 1.6px solid currentColor; border-radius: 50%; clip-path: polygon(0 0, 100% 0,100% 100%,30% 100%,30% 65%,0 65%); transform: rotate(-35deg); }
.mail-mini::before { inset: 2px 0; border: 1.6px solid currentColor; border-radius: 2px; }
.mail-mini::after { left: 1px; right: 1px; top: 6px; height: 8px; border-left: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: rotate(-45deg); }
.clock-mini::before { inset: 1px; border: 1.6px solid currentColor; border-radius: 50%; }
.clock-mini::after { width: 5px; height: 6px; left: 8px; top: 4px; border-left: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; }
.map-mini::before { width: 12px; height: 12px; left: 2px; top: 1px; border: 1.6px solid currentColor; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.map-mini::after { width: 4px; height: 4px; left: 6px; top: 5px; border: 1.4px solid currentColor; border-radius: 50%; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 0 23px; border-top: 1px solid rgba(255,255,255,.09); color: #aeb7be; font-size: 12px; }
.footer-bottom i { display: inline-block; width: 13px; height: 12px; margin-left: 8px; vertical-align: -1px; border: 1.5px solid currentColor; border-top: 0; border-left: 0; transform: rotate(45deg); border-radius: 0 0 4px 0; }

.modal { position: fixed; inset: 0; z-index: 20; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.is-open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(12, 20, 26, .46); backdrop-filter: blur(5px); }
.modal-card { position: relative; z-index: 1; width: min(820px, calc(100vw - 40px)); max-height: min(820px, calc(100dvh - 42px)); overflow: auto; border-radius: 13px; padding: 34px; }
.wide-modal { width: min(1120px, calc(100vw - 40px)); }
.text-modal { width: min(620px, calc(100vw - 40px)); }
.modal-close { position: absolute; right: 20px; top: 18px; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; background: #fff; }
.modal-close::before,
.modal-close::after { content: ""; position: absolute; left: 9px; top: 16px; width: 14px; height: 2px; background: #3d4853; border-radius: 2px; }
.modal-close::before { transform: rotate(45deg); }
.modal-close::after { transform: rotate(-45deg); }
.modal-copy { max-width: 560px; margin-bottom: 22px; }
.modal-copy h2 { margin-top: 14px; }
.modal-copy p,
.text-modal p { margin-top: 12px; color: #687481; }
.modal-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal-form input,
.modal-form select { min-height: 50px; }
.span-2 { grid-column: 1 / -1; }
.modal-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.modal-list-grid article { padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.modal-list-grid strong { display: block; font-size: 17px; }
.modal-list-grid span { display: block; margin-top: 8px; color: var(--teal-dark); font-weight: 800; }
.modal-list-grid p { margin-top: 10px; color: #66717d; font-size: 13px; }
.price-table { display: grid; gap: 0; margin-top: 22px; border: 1px solid var(--line); border-radius: 9px; overflow: hidden; }
.price-table div { display: flex; justify-content: space-between; gap: 20px; padding: 16px 18px; background: #fff; border-bottom: 1px dashed #cfd8dd; }
.price-table div:last-child { border-bottom: 0; }
.price-table strong { color: #202936; }
.modal-reviews { margin-top: 22px; }

@media (min-width: 1600px) {
  .page-shell { width: min(100% - 130px, 1280px); }
  .hero { grid-template-columns: minmax(0, 1fr) 500px; gap: 120px; }
  h1 { font-size: 72px; }
}

@media (max-width: 1120px) {
  .page-shell { width: min(100% - 48px, 1020px); }
  .header-grid { grid-template-columns: 160px 1fr auto; }
  .main-nav { gap: 18px; }
  .phone { display: none; }
  .hero { grid-template-columns: 1fr 410px; gap: 38px; }
  h1 { font-size: 54px; }
  .trust-grid { gap: 14px; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (max-width: 900px) {
  .site-header { padding-top: 20px; }
  .header-grid { grid-template-columns: 1fr auto; align-items: center; }
  .main-nav {
    position: fixed;
    inset: 74px 18px auto;
    z-index: 15;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .menu-open .main-nav { display: flex; }
  .main-nav a { padding: 13px 12px; border-bottom: 1px solid var(--line-2); }
  .main-nav a:last-child { border-bottom: 0; }
  .burger { display: inline-block; }
  .header-cta { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 22px; }
  .calculator-card { width: min(100%, 560px); }
  .trust-grid { max-width: 100%; }
  .service-grid,
  .mid-grid,
  .bottom-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .subscription-card .btn { min-width: 0; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .page-shell { width: min(100% - 30px, 520px); }
  .logo-title { font-size: 20px; }
  h1 { font-size: clamp(39px, 11vw, 50px); }
  .hero-lead { font-size: 15px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons { flex-direction: column; margin-top: 32px; }
  .btn { width: 100%; }
  .calculator-card { padding: 23px 18px 20px; }
  .segmented { grid-template-columns: 1fr; }
  .service-card { padding: 24px 22px; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .input-row,
  .check-list.two-col,
  .reviews-grid,
  .modal-form,
  .modal-list-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .quick-card,
  .included-card,
  .subscription-card { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .modal { padding: 14px; align-items: flex-end; }
  .modal-card { width: 100%; max-height: calc(100dvh - 28px); padding: 28px 18px 22px; border-radius: 14px 14px 0 0; }
}

@media (max-width: 380px) {
  .page-shell { width: min(100% - 24px, 360px); }
  .slots-grid { grid-template-columns: 1fr; }
  .trust-grid { gap: 18px 10px; }
  .trust-item { font-size: 12px; }
  .calculator-card h2,
  .section-heading h2,
  .included-card h2,
  .quick-card h2,
  .subscription-card h2 { font-size: 22px; }
}

/* Reference-size tuning: source screenshot is 941 × 1672. */
@media (min-width: 901px) and (max-width: 1120px) {
  body { font-size: 11.5px; }
  .page-shell { width: min(100% - 90px, 851px); }
  .site-header { padding: 16px 0 8px; }
  .header-grid { grid-template-columns: 142px 1fr auto; gap: 18px; align-items: start; }
  .logo-title { font-size: 18px; letter-spacing: .055em; }
  .logo-subtitle { font-size: 10px; }
  .sparkles { width: 16px; height: 16px; }
  .main-nav { gap: 25px; padding-top: 13px; font-size: 10px; }
  .header-actions { gap: 12px; }
  .phone { display: grid; min-width: 132px; gap: 6px; padding-top: 2px; }
  .phone svg { width: 14px; height: 14px; }
  .phone strong { font-size: 12px; }
  .phone em { font-size: 8px; margin-top: 1px; }
  .btn { min-height: 34px; padding: 0 20px; border-radius: 5px; font-size: 10px; }
  .header-cta { min-width: 103px; }

  .hero { grid-template-columns: minmax(0, 1fr) 365px; gap: 45px; padding: 24px 0 25px; }
  .eyebrow { min-height: 21px; padding: 3px 11px; border-radius: 5px; font-size: 10px; }
  h1 { max-width: 440px; margin-top: 17px; font-size: 43px; line-height: 1.18; letter-spacing: -.045em; }
  .hero-lead { max-width: 420px; margin-top: 15px; font-size: 12.5px; line-height: 1.55; }
  .trust-grid { max-width: 425px; gap: 18px; margin-top: 32px; }
  .trust-item { gap: 10px; font-size: 10px; line-height: 1.35; }
  .trust-icon { width: 29px; height: 29px; }
  .hero-buttons { gap: 14px; margin-top: 35px; }
  .hero-buttons .btn { min-width: 145px; }

  .calculator-card { min-height: 416px; padding: 21px 18px 18px; border-radius: 10px; }
  .calculator-card h2 { font-size: 16px; line-height: 1.2; }
  .calc-headline { margin-top: 25px; }
  .calc-headline label { font-size: 10.5px; }
  .calc-headline output { font-size: 19px; }
  .range { margin: 14px 0 8px; }
  .range::-webkit-slider-thumb { width: 21px; height: 21px; margin-top: -9px; }
  .range-scale { font-size: 9px; }
  .segmented { gap: 8px; margin-top: 17px; }
  .segmented legend,
  .addons legend { margin-bottom: 8px; font-size: 10px; }
  .segmented span { min-height: 26px; padding: 0 8px; border-radius: 4px; font-size: 9.3px; }
  .addons { gap: 8px; margin-top: 16px; }
  .addons label { grid-template-columns: 13px 1fr auto; gap: 7px; font-size: 10px; }
  .addons input { width: 12px; height: 12px; }
  .addons em { font-size: 9.5px; }
  .total-line { margin-top: 15px; padding-top: 14px; }
  .total-line span { font-size: 12px; }
  .total-line strong { font-size: 22px; }
  .calculator-card .btn-wide { min-height: 33px; margin-top: 13px; }
  .price-note { gap: 7px; margin-top: 13px; font-size: 8.7px; }
  .lock { width: 12px; height: 12px; }

  .section-block { padding: 1px 0 18px; }
  .compact-heading { margin-bottom: 17px; }
  .section-heading h2,
  .included-card h2,
  .quick-card h2,
  .subscription-card h2,
  .modal-card h2 { font-size: 16px; }
  .link-arrow { font-size: 10px; }
  .service-grid { gap: 15px; }
  .service-card { min-height: 238px; padding: 20px 19px 18px; border-radius: 7px; }
  .service-icon { width: 44px; height: 44px; margin-bottom: 14px; }
  .service-card h3 { max-width: 170px; font-size: 13.5px; line-height: 1.28; }
  .service-card p { margin-top: 14px; font-size: 10.5px; line-height: 1.45; }
  ul { margin-top: 12px; padding-left: 16px; font-size: 10.2px; line-height: 1.55; }
  .service-card strong { margin-top: 16px; font-size: 16px; }
  .service-card small { font-size: 9.5px; }
  .spray::before { left: 14px; top: 16px; width: 16px; height: 21px; }
  .spray::after { left: 15px; top: 9px; width: 15px; height: 10px; }
  .bucket::before { left: 14px; top: 17px; width: 17px; height: 18px; }
  .bucket::after { left: 11px; top: 10px; width: 22px; height: 11px; }
  .roller::before { left: 11px; top: 13px; width: 22px; height: 8px; }
  .roller::after { left: 22px; top: 21px; width: 15px; height: 17px; }

  .process-anchor { padding-top: 8px; }
  .stacked-heading { gap: 1px; margin-bottom: 14px; }
  .stacked-heading p { font-size: 10px; }
  .slots-grid { grid-template-columns: repeat(6, 1fr); gap: 10px; }
  .slot-card { min-height: 130px; padding: 13px 8px 12px; border-radius: 6px; }
  .slot-card h3 { font-size: 9.5px; }
  .slot-card small { font-size: 8.8px; }
  .time-grid { gap: 9px; margin-top: 17px; }
  .time-grid button { min-height: 26px; border-radius: 4px; font-size: 10px; }
  .calendar-card { gap: 10px; }
  .calendar-card button { gap: 9px; font-size: 10px; }
  .calendar-icon { width: 22px; height: 22px; }

  .mid-grid { grid-template-columns: 1.55fr .98fr; gap: 22px; padding: 1px 0 22px; }
  .included-card { min-height: 240px; padding: 21px 18px 18px; }
  .check-list { gap: 10px 22px; margin-top: 19px; font-size: 10.2px; }
  .check-list span { padding-left: 21px; }
  .check-list span::before { width: 12px; height: 12px; }
  .check-list span::after { left: 3px; top: 5px; width: 6px; height: 3px; }
  .quick-card { padding: 21px 20px 18px; }
  .quick-form { gap: 8px; margin-top: 16px; }
  .input-row { gap: 8px; }
  input, select { min-height: 31px; padding: 0 10px; border-radius: 4px; }
  select { background-position: calc(100% - 14px) 14px, calc(100% - 9px) 14px; }
  .quick-form .btn-wide { min-height: 32px; }
  .form-note { margin-top: 7px; font-size: 8px; }

  .bottom-grid { grid-template-columns: 1.45fr .74fr; gap: 22px; padding-bottom: 28px; }
  .reviews-grid { gap: 10px; }
  .review-card { min-height: 128px; padding: 14px 12px 12px; border-radius: 6px; }
  .review-head { gap: 9px; }
  .avatar { width: 28px; height: 28px; }
  .avatar::before { width: 10px; height: 10px; left: 9px; top: 6px; }
  .avatar::after { width: 21px; height: 14px; left: 4px; top: 19px; }
  .review-head strong { font-size: 9.5px; }
  .review-head small { font-size: 8px; }
  .stars { gap: 3px; margin-top: 9px; }
  .stars span { width: 9px; height: 9px; }
  .review-card p { margin-top: 11px; font-size: 8.8px; line-height: 1.55; }
  .slider-dots { margin-top: 13px; gap: 6px; }
  .slider-dots span { width: 7px; height: 7px; }
  .slider-dots span.active { width: 15px; }
  .subscription-card { min-height: 198px; padding: 21px 20px 18px; }
  .subscription-card p { margin-top: 10px; font-size: 10px; }
  .subscription-card .check-list { gap: 8px; margin-top: 14px; }
  .subscription-card .btn { min-width: 185px; margin-top: 15px; }

  .footer-grid { grid-template-columns: 1.4fr 1fr .9fr 1fr 1.3fr; gap: 32px; padding: 25px 0 26px; }
  .footer-brand p { max-width: 180px; margin-top: 14px; font-size: 10px; }
  .socials { gap: 9px; margin-top: 15px; }
  .socials a { width: 23px; height: 23px; font-size: 8px; }
  .footer-col,
  .footer-contact { gap: 8px; }
  .footer-col h3,
  .footer-contact h3 { margin-bottom: 8px; font-size: 10px; }
  .footer-col a,
  .footer-col button,
  .footer-contact a,
  .footer-contact span { font-size: 10px; }
  .footer-contact a,
  .footer-contact > span { grid-template-columns: 14px 1fr; gap: 8px; }
  .mini { width: 13px; height: 13px; }
  .footer-bottom { padding: 14px 0 17px; font-size: 9.5px; }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .header-cta { min-width: 114px; white-space: nowrap; }
  .calculator-card { min-height: 416px; padding: 19px 18px 16px; }
  .calc-headline { margin-top: 18px; }
  .range { margin: 9px 0 6px; }
  .segmented { margin-top: 13px; gap: 7px; }
  .addons { gap: 7px; margin-top: 12px; }
  .total-line { margin-top: 11px; padding-top: 11px; }
  .calculator-card .btn-wide { margin-top: 10px; }
  .price-note { margin-top: 9px; }

  .service-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 15px;
    align-content: start;
    min-height: 238px;
    padding: 20px 18px 16px;
  }
  .service-icon { grid-column: 1; grid-row: 1; width: 42px; height: 42px; margin: 0; }
  .service-card h3 { grid-column: 2; align-self: center; max-width: 170px; }
  .service-card p { grid-column: 1 / -1; margin-top: 15px; }
  .service-card ul { grid-column: 1 / -1; margin-top: 11px; }
  .service-card strong { grid-column: 1 / -1; margin-top: 13px; }
  .service-card small { grid-column: 1 / -1; }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .calculator-card { padding: 17px 18px 13px; }
  .calculator-card h2 { font-size: 15px; }
  .calc-headline { margin-top: 13px; }
  .calc-headline label { font-size: 9.5px; }
  .calc-headline output { font-size: 18px; }
  .range { margin: 7px 0 4px; }
  .range::-webkit-slider-runnable-track { height: 3px; }
  .range::-webkit-slider-thumb { width: 18px; height: 18px; margin-top: -8px; }
  .range-scale { font-size: 8px; }
  .segmented { margin-top: 8px; gap: 7px; }
  .segmented legend,
  .addons legend { margin-bottom: 6px; font-size: 9.2px; }
  .segmented span { min-height: 23px; padding: 0 7px; font-size: 8.5px; }
  .addons { gap: 5px; margin-top: 9px; }
  .addons label { grid-template-columns: 12px 1fr auto; gap: 6px; font-size: 9px; }
  .addons input { width: 11px; height: 11px; }
  .addons em { font-size: 8.5px; }
  .total-line { margin-top: 8px; padding-top: 9px; }
  .total-line span { font-size: 11px; }
  .total-line strong { font-size: 20px; }
  .calculator-card .btn-wide { min-height: 29px; margin-top: 8px; }
  .price-note { margin-top: 7px; font-size: 7.8px; }

  .included-card { min-height: 240px; padding: 18px 18px 15px; }
  .quick-card { padding: 18px 20px 15px; }
  .check-list { gap: 8px 22px; margin-top: 16px; font-size: 9.4px; line-height: 1.35; }
  input, select { min-height: 28px; font-size: 9.5px; }
  .quick-form { gap: 7px; margin-top: 13px; }
  .quick-form .btn-wide { min-height: 29px; }
  .form-note { margin-top: 5px; font-size: 7.2px; }

  .subscription-card { min-height: 198px; padding: 18px 20px 15px; }
  .subscription-card p { margin-top: 8px; font-size: 9px; line-height: 1.35; }
  .subscription-card .check-list { gap: 6px; margin-top: 11px; font-size: 9px; }
  .subscription-card .btn { min-height: 31px; margin-top: 12px; }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .mid-grid { padding-bottom: 12px; }
  .included-card { min-height: 236px; padding: 16px 18px 13px; }
  .quick-card { min-height: 236px; padding: 16px 20px 13px; }
  .check-list { gap: 6px 22px; margin-top: 13px; font-size: 8.8px; line-height: 1.25; }
  .check-list span { padding-left: 18px; }
  .check-list span::before { width: 11px; height: 11px; top: 0; }
  .check-list span::after { left: 3px; top: 4px; width: 5px; height: 3px; }
  .quick-form { gap: 6px; margin-top: 11px; }
  input, select { min-height: 26px; font-size: 9px; }
  .quick-form .btn-wide { min-height: 28px; }

  .bottom-grid { padding-bottom: 6px; }
  .subscription-card { min-height: 196px; padding: 16px 20px 13px; }
  .subscription-card p { margin-top: 7px; font-size: 8.7px; }
  .subscription-card .check-list { gap: 5px; margin-top: 9px; font-size: 8.7px; }
  .subscription-card .btn { min-height: 29px; margin-top: 10px; }

  .footer-grid { padding: 18px 0 17px; }
  .footer-brand p { margin-top: 10px; font-size: 9px; line-height: 1.35; }
  .socials { margin-top: 11px; }
  .footer-col h3,
  .footer-contact h3 { margin-bottom: 5px; font-size: 9px; }
  .footer-col,
  .footer-contact { gap: 6px; }
  .footer-col a,
  .footer-col button,
  .footer-contact a,
  .footer-contact span { font-size: 9px; line-height: 1.18; }
  .footer-bottom { padding: 10px 0 11px; font-size: 8.5px; }
}

/* Interaction polish */
body {
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 174, 181, .055), transparent 28%),
    radial-gradient(circle at 85% 34%, rgba(0, 174, 181, .045), transparent 28%),
    var(--paper);
}

.site-header,
.hero-copy,
.calculator-card,
.section-block,
.mid-grid,
.bottom-grid {
  animation-fill-mode: both;
}

.page-ready .site-header { animation: softFadeDown .62s cubic-bezier(.16, 1, .3, 1); }
.page-ready .hero-copy { animation: softFadeUp .72s .06s cubic-bezier(.16, 1, .3, 1); }
.page-ready .calculator-card { animation: cardFloatIn .86s .12s cubic-bezier(.16, 1, .3, 1); }
.page-ready .section-block { animation: softFadeUp .72s .16s cubic-bezier(.16, 1, .3, 1); }
.page-ready .mid-grid { animation: softFadeUp .72s .2s cubic-bezier(.16, 1, .3, 1); }
.page-ready .bottom-grid { animation: softFadeUp .72s .24s cubic-bezier(.16, 1, .3, 1); }

.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
  opacity: 0;
  transform: scaleX(.2);
  transition: opacity .32s cubic-bezier(.16, 1, .3, 1), transform .32s cubic-bezier(.16, 1, .3, 1);
}
.main-nav a:hover::after { opacity: 1; transform: scaleX(1); }

.btn {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition:
    transform .28s cubic-bezier(.16, 1, .3, 1),
    border-color .28s cubic-bezier(.16, 1, .3, 1),
    background .28s cubic-bezier(.16, 1, .3, 1),
    box-shadow .28s cubic-bezier(.16, 1, .3, 1);
}
.btn::after {
  content: "";
  position: absolute;
  inset: -45% -35%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,.42) 50%, transparent 68%);
  opacity: 0;
  transform: translateX(-55%) rotate(8deg);
  transition: opacity .28s ease, transform .6s cubic-bezier(.16, 1, .3, 1);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { opacity: 1; transform: translateX(55%) rotate(8deg); }
.btn:active { transform: translateY(1px) scale(.985); }

.calculator-card {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition:
    transform .45s cubic-bezier(.16, 1, .3, 1),
    box-shadow .45s cubic-bezier(.16, 1, .3, 1),
    border-color .45s cubic-bezier(.16, 1, .3, 1);
}
.calculator-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,0) 28%, rgba(0,174,181,.2) 50%, rgba(255,255,255,0) 72%),
    radial-gradient(circle at 74% 18%, rgba(0,174,181,.22), transparent 35%);
  opacity: 0;
  transform: translateX(-18%) scale(.98);
  transition: opacity .45s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}
.calculator-card > * { position: relative; z-index: 1; }
.calculator-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(12, 30, 38, .12), 0 16px 38px rgba(0, 174, 181, .08);
}
.calculator-card.is-highlighted {
  animation: calculatorPulse 1.92s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 30px 78px rgba(12, 30, 38, .13), 0 0 0 1px rgba(0,174,181,.34), 0 0 0 12px rgba(0,174,181,.08);
}
.calculator-card.is-highlighted::before {
  opacity: 1;
  transform: translateX(18%) scale(1.01);
}

.range,
.segmented span,
.addons input,
.total-line strong {
  transition: color .32s cubic-bezier(.16, 1, .3, 1), border-color .32s cubic-bezier(.16, 1, .3, 1), box-shadow .32s cubic-bezier(.16, 1, .3, 1), transform .32s cubic-bezier(.16, 1, .3, 1);
}
.segmented label:hover span { border-color: rgba(0,174,181,.6); transform: translateY(-1px); }
.addons label:hover { color: #303743; }

.service-card,
.included-card,
.quick-card,
.review-card,
.subscription-card,
.slot-card {
  transition:
    transform .34s cubic-bezier(.16, 1, .3, 1),
    box-shadow .34s cubic-bezier(.16, 1, .3, 1),
    border-color .34s cubic-bezier(.16, 1, .3, 1),
    background .34s cubic-bezier(.16, 1, .3, 1);
}
.service-card:hover,
.review-card:hover,
.subscription-card:hover,
.quick-card:hover,
.included-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 174, 181, .26);
  box-shadow: 0 24px 55px rgba(31, 43, 52, .09);
}
.service-card:hover .service-icon { transform: translateY(-2px) rotate(-2deg); background: #cff4f4; }
.service-icon { transition: transform .34s cubic-bezier(.16, 1, .3, 1), background .34s cubic-bezier(.16, 1, .3, 1); }

.slot-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.slot-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(0,174,181,.12), transparent 54%);
  opacity: 0;
  transform: scale(.96);
  transition: opacity .34s cubic-bezier(.16, 1, .3, 1), transform .34s cubic-bezier(.16, 1, .3, 1);
}
.slot-card > * { position: relative; z-index: 1; }
.slot-card:hover { transform: translateY(-2px); border-color: rgba(0,174,181,.28); }
.slot-card.active {
  border-color: var(--teal);
  background: linear-gradient(180deg, rgba(239, 253, 253, .95), rgba(255,255,255,.96));
  box-shadow: inset 0 0 0 1px rgba(0,174,181,.48), 0 18px 44px rgba(0,174,181,.12);
  transform: translateY(-3px);
}
.slot-card.active::before { opacity: 1; transform: scale(1); }
.slot-card:focus-visible,
.time-grid button:focus-visible { outline: 3px solid rgba(0,174,181,.2); outline-offset: 3px; }
.time-grid button {
  position: relative;
  overflow: hidden;
  transition:
    transform .26s cubic-bezier(.16, 1, .3, 1),
    background .26s cubic-bezier(.16, 1, .3, 1),
    border-color .26s cubic-bezier(.16, 1, .3, 1),
    color .26s cubic-bezier(.16, 1, .3, 1),
    box-shadow .26s cubic-bezier(.16, 1, .3, 1);
}
.time-grid button:hover { transform: translateY(-1px); border-color: rgba(0,174,181,.5); }
.time-grid button.selected {
  border-color: var(--teal);
  background: #e9fbfb;
  color: var(--teal-dark);
  box-shadow: 0 8px 20px rgba(0,174,181,.13);
}

.modal.is-open .modal-card { animation: modalRise .34s cubic-bezier(.16, 1, .3, 1); }
.modal.is-open .modal-backdrop { animation: backdropFade .28s ease; }

@keyframes softFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes softFadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cardFloatIn {
  from { opacity: 0; transform: translateY(22px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes calculatorPulse {
  0% { transform: translateY(0) scale(1); }
  28% { transform: translateY(-7px) scale(1.012); }
  100% { transform: translateY(0) scale(1); }
}
@keyframes modalRise {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes backdropFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.footer-legal-link {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #c8d2d9;
  padding: 8px 13px;
  font-size: 11px;
  line-height: 1;
  transition: color .28s cubic-bezier(.16, 1, .3, 1), border-color .28s cubic-bezier(.16, 1, .3, 1), background .28s cubic-bezier(.16, 1, .3, 1), transform .28s cubic-bezier(.16, 1, .3, 1);
}
.footer-legal-link:hover {
  color: #ffffff;
  border-color: rgba(0,174,181,.55);
  background: rgba(0,174,181,.12);
  transform: translateY(-1px);
}
.policy-modal { width: min(740px, calc(100vw - 40px)); }
.policy-modal .eyebrow { margin-bottom: 14px; }
.policy-modal h2 { margin-top: 4px; }
.policy-modal strong { color: #303743; }
.policy-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #dce8eb;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(239,253,253,.65), rgba(255,255,255,.88));
}
.policy-list p { margin: 0; }
.policy-note {
  margin-top: 16px !important;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
  color: #8a949e !important;
  font-size: 12px;
}

@media (max-width: 640px) {
  .footer-legal-link { width: 100%; text-align: left; padding: 10px 12px; }
  .policy-list { padding: 14px; }
}
