:root {
  --ink: #12201c;
  --muted: #5d7069;
  --green: #17483f;
  --green-2: #2c6b49;
  --lime: #c7df72;
  --sky: #dceff0;
  --sand: #f0e4d0;
  --sand-2: #f7efdf;
  --paper: #fbf7ed;
  --line: rgba(18, 32, 28, 0.14);
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(18, 32, 28, 0.14);
  --font-body: "Aptos", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id],
footer[id] { scroll-margin-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
button,
input,
select,
textarea { font: inherit; }
img { display: block; max-width: 100%; }
.visually-hidden,
.quiz-native {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  width: min(1180px, calc(100% - 28px));
  min-height: 70px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid rgba(18, 32, 28, 0.12);
  border-radius: 999px;
  background: rgba(251, 247, 237, 0.92);
  box-shadow: 0 18px 48px rgba(4, 18, 14, 0.16);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.nav {
  display: flex;
  align-items: center;
}

.brand { gap: 10px; min-width: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 999px;
  background: #def4d8;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.brand strong,
.brand small { display: block; }
.brand strong {
  color: var(--green);
  font-size: 16px;
  line-height: 1.1;
}
.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  gap: 4px;
  justify-content: center;
  min-width: 0;
  padding: 4px;
  border-radius: 999px;
  background: var(--green);
  color: var(--paper);
  font-size: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background-color 160ms ease, color 160ms ease;
}
.nav a:hover {
  color: #102720;
  background: var(--lime);
}

.header-actions { justify-content: flex-end; gap: 12px; }
.phone-link {
  display: grid;
  gap: 2px;
  color: #0f3d2f;
  text-align: right;
  line-height: 1.05;
  white-space: nowrap;
}
.phone-link span {
  font-size: 17px;
  font-weight: 900;
}
.phone-link small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.phone-link:hover { color: var(--green-2); }
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 10px 12px;
  border-radius: 999px;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: background-color 160ms ease, color 160ms ease;
}
.contact-link:hover {
  color: var(--green);
  background: rgba(23, 72, 63, 0.08);
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(23, 72, 63, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
}
.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(100svh, 920px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: 118px clamp(18px, 5vw, 78px) 54px;
  color: var(--white);
  background: #102720;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 20, 16, 0.94) 0%, rgba(5, 27, 22, 0.78) 38%, rgba(5, 27, 22, 0.28) 66%, rgba(5, 27, 22, 0.1) 100%),
    linear-gradient(180deg, rgba(4, 20, 16, 0.42) 0%, transparent 36%, rgba(4, 20, 16, 0.18) 100%);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.hero-media::before {
  display: none;
}
.hero-image {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.02) contrast(1.02);
  animation: heroPhotoIn 900ms ease both;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
  animation: heroTextIn 520ms ease both;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 5.1vw, 78px);
  font-weight: 800;
  font-stretch: normal;
  line-height: 0.96;
  max-width: 960px;
  text-wrap: balance;
}
.hero h1 span {
  white-space: nowrap;
}
.hero-lead {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-phone {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}
.hero-phone a {
  color: var(--lime);
  white-space: nowrap;
}
.btn {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.modal-close:focus-visible,
.telegram-review-close:focus-visible,
.telegram-success-close:focus-visible,
.choice-grid button:focus-visible {
  outline: 3px solid rgba(199, 223, 114, 0.8);
  outline-offset: 3px;
}
.btn-primary { background: var(--lime); color: #16342d; }
.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.btn-ghost {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

@keyframes heroTextIn {
  from { opacity: 0.96; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroPhotoIn {
  from { opacity: 0.82; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes softRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes coverageFlow {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes chipGlow {
  0%, 100% { filter: saturate(1); box-shadow: 0 10px 26px rgba(18, 32, 28, 0.04); }
  50% { filter: saturate(1.15); box-shadow: 0 16px 34px rgba(23, 72, 63, 0.14); }
}

.section {
  padding: clamp(54px, 8vw, 112px) clamp(18px, 5vw, 78px);
}
.intro {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #d8c8ad;
  color: var(--white);
  padding: 1px;
}
.intro-item {
  min-height: 260px;
  padding: clamp(28px, 3.4vw, 48px);
  background: #1f5946;
  animation: softRise 560ms ease both;
}
.intro-item:nth-child(2) { animation-delay: 70ms; }
.intro-item:nth-child(3) { animation-delay: 140ms; }
.intro-item:nth-child(4) { animation-delay: 210ms; }
.intro-item span {
  color: var(--lime);
  font-weight: 900;
}
.intro-item h2 { margin: 28px 0 12px; font-size: clamp(24px, 3vw, 34px); }
.intro-item p { margin: 0; color: rgba(255, 255, 255, 0.76); line-height: 1.55; }

.section-head {
  display: block;
  margin-bottom: 34px;
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2,
.price-copy h2,
.coverage h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.02;
  color: #0f3d2f;
}
.section-head h2 { max-width: 920px; }

.services { background: var(--sand-2); }
.services .eyebrow,
.examples .eyebrow,
.price .eyebrow,
.process .eyebrow,
.coverage .eyebrow { color: var(--green-2); }
.examples .eyebrow {
  color: var(--green);
  font-size: 15px;
}

.coverage.coverage-top {
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(44px, 6vw, 76px) 0 0;
}
.coverage-copy {
  position: relative;
  z-index: 1;
  display: block;
  padding-inline: clamp(18px, 5vw, 78px);
}
.coverage-copy .eyebrow {
  margin-bottom: 14px;
}
.coverage-marquee {
  position: relative;
  width: 100%;
  margin-inline: 0;
  overflow: hidden;
  min-height: clamp(126px, 12vw, 166px);
  display: flex;
  align-items: flex-end;
  padding: clamp(22px, 3vw, 34px) 0 clamp(16px, 2vw, 24px);
  background: #eadcc4;
}
.coverage-marquee::before,
.coverage-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(16vw, 190px);
  pointer-events: none;
}
.coverage-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #eadcc4 0%, rgba(234, 220, 196, 0.92) 34%, rgba(234, 220, 196, 0) 100%);
}
.coverage-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #eadcc4 0%, rgba(234, 220, 196, 0.92) 34%, rgba(234, 220, 196, 0) 100%);
}
.coverage-track {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  gap: 18px;
  padding-inline: 24px;
  animation: coverageFlow 36s linear infinite;
}
.coverage-marquee:hover .coverage-track {
  animation-play-state: paused;
}
.coverage-track span {
  flex: 0 0 auto;
  border: 1px solid rgba(23, 72, 63, 0.13);
  border-radius: 999px;
  padding: clamp(16px, 1.6vw, 23px) clamp(26px, 2.3vw, 38px);
  background: #fbf7ed;
  color: var(--green);
  font-size: clamp(18px, 1.42vw, 24px);
  font-weight: 900;
  animation: chipGlow 5.8s ease-in-out infinite;
}
.coverage-track span:nth-child(3n) { transform: rotate(-1deg); }
.coverage-track span:nth-child(3n + 1) { transform: rotate(1deg); animation-delay: -1.8s; }
.coverage-track span:nth-child(3n + 2) { animation-delay: -3.4s; }

.service-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px;
  border: 1px solid rgba(23, 72, 63, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.54);
}
.service-tabs button {
  display: grid;
  gap: 5px;
  min-height: 76px;
  padding: 15px 20px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--green);
  text-align: left;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.service-tabs button:hover { background: rgba(23, 72, 63, 0.08); }
.service-tabs button:active { transform: translateY(1px); }
.service-tabs button[aria-selected="true"] {
  color: var(--paper);
  background: var(--green);
  box-shadow: 0 12px 30px rgba(23, 72, 63, 0.16);
}
.service-tabs button:focus-visible {
  outline: 3px solid rgba(44, 107, 73, 0.35);
  outline-offset: 3px;
}
.service-tabs span {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  line-height: 1.08;
}
.service-tabs small {
  color: currentColor;
  font-size: 14px;
  font-weight: 750;
  opacity: 0.72;
}
.service-panel {
  overflow: hidden;
  border: 1px solid rgba(23, 72, 63, 0.14);
  border-radius: 28px;
  background: rgba(255, 252, 244, 0.9);
  box-shadow: 0 22px 64px rgba(18, 32, 28, 0.08);
}
.service-panel[hidden] { display: none; }
.service-panel.is-active { animation: servicePanelIn 240ms ease both; }
.service-panel-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  padding: clamp(24px, 4vw, 46px);
}
.service-panel-intro h3,
.service-proof h3 {
  margin: 0;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.02;
}
.service-panel-intro p,
.service-proof p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}
.service-rate-list {
  padding: 0 clamp(24px, 4vw, 46px);
  border-top: 1px solid var(--line);
}
.service-rate-list article {
  display: grid;
  grid-template-columns: minmax(138px, 0.24fr) minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.service-rate-list article:last-child { border-bottom: 0; }
.service-rate-list strong {
  color: var(--green);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}
.service-rate-list h4 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
}
.service-rate-list p {
  max-width: 690px;
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.45;
}
.service-rate-list article > span {
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}
.service-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 390px;
  color: var(--paper);
  background: var(--green);
}
.service-proof img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}
.service-proof > div {
  align-self: center;
  padding: clamp(28px, 4vw, 52px);
}
.service-proof > div > span {
  display: block;
  margin-bottom: 16px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.service-proof h3 { color: var(--paper); }
.service-proof p { color: rgba(255, 255, 255, 0.76); }
.clearing-checklist {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 30px;
  align-items: center;
  padding: 34px 38px;
  background: var(--forest);
  color: var(--paper);
}
.clearing-checklist > div > span {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.clearing-checklist h3 {
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.02;
}
.clearing-checklist p {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}
.clearing-checklist ul {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: rgba(255, 255, 255, 0.2);
}
.clearing-checklist li {
  padding: 15px 18px;
  background: rgba(12, 58, 49, 0.96);
  font-weight: 800;
}

@keyframes servicePanelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: service;
}
.service-card {
  min-height: 336px;
  border: 1px solid rgba(23, 72, 63, 0.14);
  border-radius: 28px;
  padding: 24px 24px 28px;
  background: linear-gradient(180deg, rgba(255, 252, 244, 0.96), rgba(250, 245, 235, 0.92));
  box-shadow: 0 18px 54px rgba(18, 32, 28, 0.08);
  display: flex;
  flex-direction: column;
  counter-increment: service;
  animation: softRise 580ms ease both;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.service-card::before {
  content: counter(service);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: #bff0cb;
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(18, 32, 28, 0.12);
}
.service-card h3 {
  margin: 0;
  color: #0d4329;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 800;
  line-height: 1;
}
.service-card p { margin: 18px 0 0; color: var(--muted); line-height: 1.55; }
.service-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: #3f564f;
  line-height: 1.4;
}
.service-card span {
  display: inline-flex;
  margin-top: auto;
  color: var(--green);
  font-size: 25px;
  font-weight: 900;
}
.service-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.price {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(430px, 1.28fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--sand);
}
.price-copy p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.price-copy,
.estimate {
  min-width: 0;
}
.rate-table {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin-top: 26px;
}
.rate-table div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(23, 72, 63, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
}
.rate-table strong {
  color: var(--green);
  font-size: 22px;
}
.rate-table span {
  color: var(--muted);
  line-height: 1.35;
}
.estimate {
  display: grid;
  gap: 18px;
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  box-shadow: var(--shadow);
  animation: softRise 620ms ease both;
}
.quiz-progress {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 8px;
  background: #eef5d1;
}
.quiz-progress > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--green);
  font-weight: 900;
}
.quiz-progress span {
  color: var(--muted);
  font-size: 14px;
}
.quiz-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(23, 72, 63, 0.12);
}
.quiz-bar span {
  display: block;
  width: 16.666%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  transition: width 220ms ease;
}
.quiz-step {
  display: grid;
  gap: 18px;
  min-height: 360px;
  align-content: start;
}
.quiz-step[hidden] {
  display: none !important;
}
.quiz-question {
  display: grid;
  gap: 8px;
}
.quiz-question span {
  color: var(--green-2);
  font-weight: 900;
}
.quiz-question h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
}
.quiz-question p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.choice-grid.two,
.area-presets {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.choice-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.choice-grid button {
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  display: grid;
  gap: 6px;
  align-content: center;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}
.area-presets button {
  min-height: 58px;
  text-align: center;
  justify-content: center;
}
.choice-grid button:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 72, 63, 0.34);
}
.choice-grid button.is-active {
  border-color: rgba(23, 72, 63, 0.72);
  background: #eaf2cd;
  color: var(--green);
}
.choice-grid button span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}
.quiz-error {
  min-height: 22px;
  margin: 0;
  color: #8c3a2b;
  font-weight: 800;
}
.quiz-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.quiz-controls .btn[hidden] {
  display: none;
}
.estimate label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}
input,
select,
textarea {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--paper);
}
select {
  cursor: pointer;
}
textarea {
  min-height: 96px;
  padding: 14px;
  resize: vertical;
  line-height: 1.45;
}
.quiz-native {
  min-height: 0 !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
}
.estimate-row,
.estimate-selects {
  display: grid;
  gap: 14px;
}
.estimate-row {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
}
.estimate-selects {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.checkbox {
  grid-template-columns: 22px 1fr;
  align-items: center;
}
.checkbox input { min-height: auto; width: 18px; height: 18px; }
.photo-upload {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6ead5;
}
.photo-upload-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}
.photo-upload-head strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}
.photo-upload-head span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.4;
}
.photo-upload-head b {
  color: var(--green);
  font-size: 20px;
}
.upload-box {
  position: relative;
  min-height: 74px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(23, 72, 63, 0.38);
  border-radius: 8px;
  padding: 14px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  text-align: center;
}
.upload-box input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.upload-box span {
  color: var(--green);
  font-size: 17px;
  font-weight: 900;
}
.upload-box small {
  color: var(--muted);
  font-weight: 700;
}
.photo-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 96px;
  border-radius: 8px;
  background: var(--white);
}
.photo-card img {
  width: 100%;
  height: 96px;
  object-fit: cover;
}
.photo-card span {
  display: block;
  padding: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.photo-card button {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 39, 32, 0.86);
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.upload-status,
.telegram-status {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}
.upload-status:empty,
.telegram-status:empty {
  display: none;
}
.upload-status.is-ready,
.telegram-status.is-ready {
  color: var(--green);
}
.telegram-status.is-error {
  color: #8c3a2b;
}
.telegram-review-modal {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  border: 0;
  padding: 14px;
  background: transparent;
  overflow: auto;
}
.telegram-review-modal[open] {
  display: grid;
  place-items: center;
}
.telegram-review-modal::backdrop {
  background: rgba(5, 15, 12, 0.56);
  backdrop-filter: blur(5px);
}
.telegram-review-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100dvh - 28px);
  overflow: auto;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(23, 72, 63, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.telegram-review-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--green);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}
.review-head {
  display: grid;
  gap: 8px;
  padding-right: 46px;
}
.review-head span {
  color: var(--green-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.review-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.02;
}
.review-head p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.review-total {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 8px;
  background: #eaf2cd;
}
.review-total span,
.review-total small {
  color: var(--muted);
  font-weight: 800;
}
.review-total strong {
  color: var(--ink);
  font-size: 34px;
  line-height: 1.05;
}
.review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}
.review-list div {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 14px;
  background: var(--paper);
}
.review-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.review-list dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.review-photos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.review-photos p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px;
  border: 1px dashed rgba(23, 72, 63, 0.26);
  border-radius: 8px;
  color: var(--muted);
  background: var(--paper);
  font-weight: 800;
}
.review-photos figure {
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--paper);
}
.review-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.review-photos figcaption {
  padding: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-status {
  margin: 0;
  color: var(--green);
  font-weight: 900;
}
.review-status:empty {
  display: none;
}
.review-status.is-error {
  color: #8c3a2b;
}
.review-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.telegram-success-modal {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  border: 0;
  padding: 14px;
  background: transparent;
  overflow: auto;
}
.telegram-success-modal[open] {
  display: grid;
  place-items: center;
}
.telegram-success-modal::backdrop {
  background: rgba(5, 15, 12, 0.56);
  backdrop-filter: blur(5px);
}
.telegram-success {
  position: relative;
  width: min(520px, 100%);
  min-height: 300px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: clamp(34px, 6vw, 72px) 22px;
  border: 1px solid rgba(23, 72, 63, 0.14);
  border-radius: 8px;
  background: #eaf2cd;
  box-shadow: var(--shadow);
  text-align: center;
}
.telegram-success-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(23, 72, 63, 0.16);
  border-radius: 50%;
  background: rgba(251, 247, 237, 0.78);
  color: var(--green);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: background-color 160ms ease, transform 160ms ease;
}
.telegram-success-close:hover {
  background: var(--white);
  transform: translateY(-1px);
}
.telegram-success span {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}
.telegram-success h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}
.telegram-success p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}
.estimate-result {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 8px;
  background: #eaf2cd;
}
.estimate-kicker {
  color: var(--green);
  font-weight: 900;
}
.estimate-result strong { font-size: 32px; }
.estimate-result span { color: var(--muted); }
.examples {
  background: var(--sand-2);
}
.example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.example-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  animation: softRise 580ms ease both;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.example-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(18, 32, 28, 0.12);
}
.example-gallery {
  display: block;
  background: var(--line);
}
.example-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
  background: #d8c8ad;
}
.example-copy {
  display: grid;
  gap: 12px;
  padding: 22px;
  align-content: start;
}
.example-copy span {
  color: var(--green-2);
  font-weight: 900;
}
.example-copy h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}
.example-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.example-copy strong {
  color: var(--green);
  font-size: 24px;
}

.faq {
  background: var(--paper);
  padding-block: clamp(48px, 6vw, 78px);
}
.faq-head {
  margin-bottom: 22px;
}
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}
.faq-column {
  display: grid;
  align-content: start;
  gap: 12px;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}
.faq summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  color: var(--ink);
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #eaf2cd;
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 2px, 2px 12px;
  color: var(--green);
}
.faq details[open] summary::after {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 12px 2px;
}
.faq-answer {
  overflow: hidden;
}
.faq p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.55;
}

.process {
  background: var(--paper);
  padding-block: clamp(54px, 7vw, 88px);
}
.process .section-head {
  grid-template-columns: minmax(0, 760px);
  gap: 0;
  align-items: start;
}
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
}
.steps li {
  min-height: 240px;
  border-top: 2px solid var(--green);
  padding: 28px 0 0;
  animation: softRise 580ms ease both;
}
.steps span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}
.steps h3 { margin: 24px 0 12px; font-size: 24px; }
.steps p { color: var(--muted); line-height: 1.55; margin: 0; }

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  background: #eadcc4;
}
.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.coverage-list li {
  border: 1px solid rgba(23, 72, 63, 0.22);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}
.coverage.coverage-top {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(44px, 6vw, 76px) 0 0;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 42px clamp(18px, 5vw, 78px);
  color: var(--white);
  background: #102720;
}
.footer strong { font-size: 24px; }
.footer p { color: rgba(255, 255, 255, 0.7); }
.footer p a {
  color: var(--lime);
  font-weight: 900;
  white-space: nowrap;
}
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  align-items: center;
}
.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}
.footer-legal button {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-weight: 800;
}
.footer-legal button:hover {
  color: var(--lime);
}

.legal-modal {
  width: min(780px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  border: 0;
  padding: 0;
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  overflow: auto;
}
.legal-modal::backdrop { background: rgba(5, 15, 12, 0.64); }
.modal-panel {
  position: relative;
  display: grid;
  gap: 22px;
  padding: clamp(26px, 5vw, 48px);
  background: var(--white);
  box-shadow: var(--shadow);
}
.modal-panel h2 { margin: 0 0 12px; font-size: clamp(32px, 4vw, 46px); line-height: 1.04; }
.modal-panel label { display: grid; gap: 8px; color: var(--muted); font-weight: 700; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  font-size: 24px;
}
.legal-panel {
  gap: 16px;
}
.legal-panel .eyebrow {
  margin-bottom: 0;
}
.legal-body {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.legal-body p,
.legal-body ul {
  margin: 0;
}
.legal-body ul {
  padding-left: 20px;
}
.mobile-call-bar {
  display: none;
}
@media (max-width: 980px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 28px;
  }
  .nav {
    position: fixed;
    inset: 86px 10px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(23, 72, 63, 0.12);
    border-radius: 22px;
    background: rgba(251, 247, 237, 0.98);
    box-shadow: 0 18px 48px rgba(4, 18, 14, 0.18);
    color: var(--green);
  }
  body.menu-open .nav { display: flex; }
  .nav a { padding: 14px 12px; }
  .menu-button { display: block; }
  .contact-link,
  .phone-link { display: none; }
  .hero {
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
    min-height: 100svh;
    padding: 104px 24px 46px;
  }
  .hero::after {
    background:
      linear-gradient(90deg, rgba(4, 20, 16, 0.92), rgba(5, 27, 22, 0.68) 58%, rgba(5, 27, 22, 0.18)),
      linear-gradient(180deg, rgba(4, 20, 16, 0.38), rgba(4, 20, 16, 0.1) 38%, rgba(4, 20, 16, 0.72));
  }
  .hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
  }
  .service-grid,
  .example-grid,
  .steps,
  .faq-list,
  .price,
  .coverage,
  .section-head,
  .footer {
    grid-template-columns: minmax(0, 1fr);
  }
  .faq-list {
    gap: 12px;
  }
  .faq-column {
    display: contents;
  }
  .faq-item-cost { order: 1; }
  .faq-item-photo { order: 2; }
  .faq-item-travel { order: 3; }
  .faq-item-collection { order: 4; }
  .coverage-top {
    gap: 22px;
  }
  .coverage-copy {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }
  .intro { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price { align-items: stretch; }
  .estimate-row,
  .estimate-selects {
    grid-template-columns: 1fr;
  }
  .choice-grid,
  .choice-grid.compact,
  .choice-grid.two,
  .area-presets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-actions { justify-content: flex-start; }
  .service-panel-intro,
  .service-proof {
    grid-template-columns: minmax(0, 1fr);
  }
  .clearing-checklist {
    grid-template-columns: minmax(0, 1fr);
  }
  .service-panel-intro { align-items: start; }
  .service-panel-intro .btn { justify-self: start; }
  .service-proof img { min-height: 320px; }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }
  .site-header {
    min-height: 66px;
    padding: 9px 10px;
  }
  .brand-mark {
    width: 46px;
    height: 46px;
  }
  .brand strong { font-size: 15px; }
  .brand small { display: none; }
  .hero {
    min-height: 100svh;
    padding: 92px 18px 34px;
  }
  .hero-media {
    width: 100%;
    margin-inline: 0;
  }
  .hero-media::before {
    display: none;
  }
  .hero-image {
    object-position: 74% center;
  }
  .hero h1 {
    font-size: clamp(38px, 12vw, 48px);
  }
  .hero-actions,
  .hero-actions .btn,
  .footer-actions,
  .footer-actions .btn {
    width: 100%;
  }
  .hero-phone {
    font-size: 15px;
    line-height: 1.4;
  }
  .section { padding: 56px 18px; }
  .coverage-top {
    padding-inline: 0;
  }
  .intro {
    grid-template-columns: 1fr;
    padding: 1px;
  }
  .intro-item {
    min-height: auto;
  }
  .service-card {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }
  .service-tabs { grid-template-columns: minmax(0, 1fr); }
  .service-tabs button { min-height: 68px; }
  .service-panel { border-radius: 22px; }
  .service-panel-intro { padding: 24px 20px; }
  .service-panel-intro .btn { width: 100%; }
  .service-rate-list { padding-inline: 20px; }
  .service-rate-list article {
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
  }
  .service-rate-list article > span { white-space: normal; }
  .service-proof img { min-height: 250px; }
  .service-proof > div { padding: 26px 20px; }
  .clearing-checklist { padding: 26px 20px; }
  .rate-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .photo-upload-head {
    grid-template-columns: 1fr;
  }
  .photo-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .review-list,
  .review-photos {
    grid-template-columns: 1fr;
  }
  .review-actions,
  .review-actions .btn {
    width: 100%;
  }
  .review-actions {
    display: grid;
  }
  .quiz-progress > div:first-child {
    display: grid;
  }
  .quiz-step {
    min-height: auto;
  }
  .choice-grid,
  .choice-grid.compact,
  .choice-grid.two,
  .area-presets {
    grid-template-columns: 1fr;
  }
  .quiz-controls,
  .quiz-controls .btn {
    width: 100%;
  }
  .quiz-controls {
    display: grid;
  }
  .coverage-marquee {
    width: 100%;
    margin-inline: 0;
  }
  .coverage-track span {
    padding: 12px 18px;
    font-size: 15px;
  }
  .coverage-list li { width: 100%; text-align: center; }
  .modal-panel h2 { font-size: 28px; }
  .mobile-call-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(199, 223, 114, 0.32);
    border-radius: 999px;
    background: rgba(16, 39, 32, 0.94);
    box-shadow: 0 18px 44px rgba(4, 18, 14, 0.34);
    backdrop-filter: blur(14px);
    transition: transform 180ms ease, opacity 180ms ease;
  }
  .mobile-call-bar.is-hidden {
    pointer-events: none;
    opacity: 0;
    transform: translateY(calc(100% + 20px));
  }
  .mobile-call-bar a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--white);
    font-weight: 900;
  }
  .mobile-call-bar a:first-child {
    background: var(--lime);
    color: #16342d;
  }
  .mobile-call-bar a:last-child {
    border: 1px solid rgba(255, 255, 255, 0.22);
  }
}

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

/* Refined visual system */
:root {
  --ink: #15211d;
  --muted: #586a63;
  --green: #17483f;
  --green-2: #2b6953;
  --forest: #103b31;
  --lime: #c7df72;
  --paper: #f7f7f0;
  --sand: #eceee4;
  --sand-2: #f1f2e9;
  --line: rgba(21, 33, 29, 0.14);
  --shadow: 0 24px 72px rgba(16, 59, 49, 0.13);
  --font-display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  --serif: var(--font-display);
  --radius-panel: 24px;
  --radius-control: 14px;
}

html {
  scroll-padding-top: 100px;
}

body {
  overflow-x: hidden;
  background: var(--paper);
  -webkit-tap-highlight-color: rgba(199, 223, 114, 0.28);
}

::selection {
  color: var(--forest);
  background: var(--lime);
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

a,
button,
summary,
label {
  touch-action: manipulation;
}

:where(a, button, summary, input, textarea, select):focus-visible {
  outline: 3px solid rgba(44, 107, 73, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 14px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: var(--radius-control);
  color: var(--paper);
  background: var(--forest);
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  min-height: 68px;
  padding: 8px 10px;
  border-radius: 22px;
  background: rgba(247, 247, 240, 0.92);
  box-shadow: 0 18px 54px rgba(8, 42, 34, 0.16);
}

.nav {
  padding: 3px;
}

.nav a,
.contact-link {
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav a:active,
.contact-link:active {
  transform: translateY(1px);
}

.btn {
  min-height: 52px;
  border-radius: 999px;
  padding-inline: 24px;
  box-shadow: 0 12px 28px rgba(16, 59, 49, 0.12);
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(16, 59, 49, 0.18);
}

.btn:active {
  transform: translateY(1px) scale(0.985);
}

.btn-primary:hover {
  background: #d5eb86;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.18);
}

.hero {
  min-height: min(100dvh, 900px);
  padding: 96px clamp(24px, 6vw, 88px) 48px;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(4, 24, 19, 0.94) 0%, rgba(5, 29, 23, 0.78) 39%, rgba(5, 29, 23, 0.32) 67%, rgba(5, 29, 23, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 20, 16, 0.3) 0%, transparent 42%, rgba(4, 20, 16, 0.22) 100%);
}

.hero-content {
  width: min(790px, 68vw);
}

.hero h1 {
  max-width: 780px;
  font-family: var(--font-display);
  font-size: clamp(54px, 7vw, 94px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.hero h1 span {
  color: var(--lime);
  font-style: normal;
}

.hero-lead {
  max-width: 640px;
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.46;
}

.hero-actions {
  margin-top: 28px;
}

.hero-image {
  border-radius: 0;
  filter: saturate(0.98) contrast(1.02);
}

.section {
  padding: clamp(62px, 7vw, 96px) clamp(20px, 5.5vw, 84px);
}

.intro {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0 clamp(20px, 5.5vw, 84px);
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.intro-item {
  min-height: 0;
  padding: 34px clamp(20px, 2.5vw, 34px);
  color: var(--ink);
  background: transparent;
  border-right: 1px solid var(--line);
  animation: none;
}

.intro-item:first-child {
  border-left: 1px solid var(--line);
}

.intro-item h2 {
  margin: 0 0 8px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(20px, 1.9vw, 26px);
  letter-spacing: -0.025em;
}

.intro-item p {
  color: var(--muted);
  line-height: 1.5;
}

.section-head {
  margin-bottom: clamp(30px, 4vw, 46px);
}

.section-head h2,
.price-copy h2,
.coverage h2 {
  max-width: 880px;
  font-family: var(--font-display);
  font-size: clamp(38px, 5.1vw, 66px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.coverage-top {
  padding-top: clamp(58px, 6vw, 78px);
  background: var(--paper);
}

.coverage-marquee {
  min-height: 120px;
  background: #e9ebdf;
}

.coverage-marquee::before {
  background: linear-gradient(90deg, #e9ebdf 0%, rgba(233, 235, 223, 0) 100%);
}

.coverage-marquee::after {
  background: linear-gradient(270deg, #e9ebdf 0%, rgba(233, 235, 223, 0) 100%);
}

.coverage-track {
  animation-duration: 42s;
}

.coverage-track span {
  border-radius: var(--radius-control);
  padding: 15px 25px;
  background: rgba(247, 247, 240, 0.72);
  animation: none;
  transform: none !important;
}

.services {
  background: var(--sand-2);
}

.service-tabs {
  margin-bottom: 20px;
  padding: 6px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
}

.service-tabs button {
  border-radius: var(--radius-control);
}

.service-tabs button[aria-selected="true"] {
  box-shadow: 0 14px 34px rgba(16, 59, 49, 0.2);
}

.service-panel {
  border-radius: var(--radius-panel);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 72px rgba(16, 59, 49, 0.09);
}

.service-panel-intro h3,
.service-proof h3,
.clearing-checklist h3 {
  font-family: var(--font-display);
  font-weight: 820;
  letter-spacing: -0.035em;
}

.service-rate-list strong,
.example-copy strong,
.estimate-result strong,
.review-total strong {
  font-variant-numeric: tabular-nums;
}

.service-proof,
.clearing-checklist {
  background: var(--forest);
}

.clearing-checklist {
  min-height: 300px;
  padding: clamp(30px, 4vw, 50px);
}

.clearing-checklist ul {
  border-radius: var(--radius-control);
  overflow: hidden;
}

.examples {
  background: var(--paper);
}

.example-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.example-card {
  grid-column: span 7;
  border-radius: var(--radius-panel);
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(16, 59, 49, 0.07);
  animation: none;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms ease;
}

.example-card:nth-child(2),
.example-card:nth-child(3) {
  grid-column: span 5;
}

.example-card:nth-child(4) {
  grid-column: span 7;
}

.example-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(16, 59, 49, 0.13);
}

.example-gallery img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #dfe3d9;
}

.example-copy {
  padding: clamp(20px, 2.8vw, 30px);
}

.example-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(23px, 2.3vw, 32px);
  font-weight: 820;
  letter-spacing: -0.03em;
}

.process {
  background: var(--sand-2);
}

.steps {
  position: relative;
  gap: 0;
}

.steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  height: 2px;
  background: rgba(23, 72, 63, 0.22);
}

.steps li {
  position: relative;
  min-height: 0;
  padding: 0 clamp(24px, 3vw, 42px) 0 0;
  border-top: 0;
  animation: none;
}

.steps span {
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--sand-2);
}

.steps h3 {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.025em;
}

.price {
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(38px, 6vw, 86px);
  background: #e9ebdf;
}

.price-copy {
  position: sticky;
  top: 112px;
}

.price-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.rate-table {
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
}

.rate-table div {
  grid-template-columns: minmax(128px, 0.55fr) minmax(0, 1fr);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.rate-table div:last-child {
  border-bottom: 0;
}

.estimate {
  border: 1px solid rgba(21, 33, 29, 0.1);
  border-radius: var(--radius-panel);
  animation: none;
}

.quiz-progress,
.estimate-result,
.review-total {
  border-radius: var(--radius-control);
}

.quiz-step {
  min-height: 290px;
}

.quiz-step.is-active {
  animation: quizStepIn 300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes quizStepIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.choice-grid button,
input,
select,
textarea,
.photo-upload,
.upload-box,
.photo-card,
.telegram-review-panel,
.telegram-success,
.review-list,
.review-total,
.estimate-result,
.legal-modal {
  border-radius: var(--radius-control);
}

.choice-grid button {
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.choice-grid button:hover {
  box-shadow: 0 10px 24px rgba(16, 59, 49, 0.08);
}

.choice-grid button:active {
  transform: translateY(1px) scale(0.99);
}

.choice-grid button.is-active {
  border-color: rgba(23, 72, 63, 0.72);
  background: #edf4cf;
  box-shadow: inset 0 0 0 1px rgba(23, 72, 63, 0.18);
}

input,
select,
textarea {
  background: #fbfbf7;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(23, 72, 63, 0.62);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(44, 107, 73, 0.12);
}

.faq {
  background: var(--paper);
}

.faq details {
  border-radius: var(--radius-control);
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(16, 59, 49, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq details:hover,
.faq details[open] {
  border-color: rgba(23, 72, 63, 0.28);
  box-shadow: 0 14px 34px rgba(16, 59, 49, 0.08);
}

.footer {
  grid-template-columns: minmax(0, 1fr) auto;
  padding-block: clamp(50px, 6vw, 76px);
  background: var(--forest);
}

.footer > div:first-child {
  max-width: 680px;
}

.footer strong {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 840;
  letter-spacing: -0.04em;
  line-height: 1;
}

.footer p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.55;
}

.telegram-review-modal,
.telegram-success-modal,
.legal-modal {
  overscroll-behavior: contain;
}

.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}

.has-reveal [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms cubic-bezier(0.16, 1, 0.3, 1), transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

@media (max-width: 1100px) {
  .intro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-item:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .intro-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .price-copy {
    position: static;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 100dvh;
    padding-top: 96px;
  }

  .hero-content {
    width: min(760px, 100%);
  }

  .hero h1 {
    font-size: clamp(50px, 9vw, 74px);
  }

  .example-card,
  .example-card:nth-child(2),
  .example-card:nth-child(3),
  .example-card:nth-child(4) {
    grid-column: span 6;
  }

  .steps {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .site-header {
    border-radius: 20px;
  }

  .hero {
    min-height: 100dvh;
    padding: 90px 18px 30px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(42px, 12vw, 54px);
    line-height: 0.94;
  }

  .hero-lead {
    max-width: 350px;
    font-size: 17px;
  }

  .hero-actions {
    gap: 10px;
  }

  .section {
    padding: 56px 18px;
  }

  .intro {
    grid-template-columns: minmax(0, 1fr);
    padding-inline: 18px;
  }

  .intro-item,
  .intro-item:first-child,
  .intro-item:nth-child(2) {
    padding: 24px 2px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-item:last-child {
    border-bottom: 0;
  }

  .section-head h2,
  .price-copy h2,
  .coverage h2 {
    font-size: clamp(36px, 10.5vw, 48px);
    line-height: 1;
  }

  .section-lead {
    font-size: 16px;
  }

  .coverage-top {
    padding-top: 52px;
  }

  .coverage-marquee {
    min-height: 96px;
  }

  .service-panel,
  .example-card,
  .estimate {
    border-radius: 20px;
  }

  .clearing-checklist {
    min-height: 0;
  }

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

  .example-card,
  .example-card:nth-child(2),
  .example-card:nth-child(3),
  .example-card:nth-child(4) {
    grid-column: auto;
  }

  .steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .steps::before {
    top: 22px;
    bottom: 22px;
    left: 21px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .steps li {
    min-height: 0;
    padding: 0 0 34px 66px;
  }

  .steps li:last-child {
    padding-bottom: 0;
  }

  .steps span {
    position: absolute;
    top: 0;
    left: 0;
  }

  .steps h3 {
    margin: 0 0 8px;
  }

  .price {
    gap: 30px;
  }

  .rate-table div {
    grid-template-columns: minmax(0, 1fr);
  }

  .estimate {
    padding: 20px;
  }

  .quiz-step {
    min-height: 0;
  }

  .footer {
    gap: 28px;
  }

  .footer strong {
    font-size: 38px;
  }

  .mobile-call-bar {
    bottom: max(12px, env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-reveal [data-reveal],
  .has-reveal [data-reveal].is-revealed {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Final composition and motion pass */
:root {
  --paper: #f8f8f2;
  --sand: #ecefe5;
  --sand-2: #f0f2e9;
  --line: rgba(20, 51, 42, 0.13);
  --shadow-soft: 0 18px 54px rgba(15, 61, 47, 0.09);
}

.site-header {
  width: min(1160px, calc(100% - 28px));
  border-color: rgba(17, 61, 49, 0.1);
  background: rgba(250, 250, 245, 0.94);
}

.nav {
  gap: 0;
  padding: 0;
  color: var(--green);
  background: transparent;
  box-shadow: none;
}

.nav a {
  position: relative;
  padding: 12px 14px;
  overflow: hidden;
  color: var(--green);
  background: transparent;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav a:hover,
.nav a[aria-current="location"] {
  color: var(--green);
  background: rgba(23, 72, 63, 0.06);
}

.nav a:hover::after,
.nav a[aria-current="location"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.section-head h2,
.price-copy h2,
.coverage h2 {
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1;
}

.coverage.coverage-top {
  display: block;
  overflow: hidden;
  padding: clamp(68px, 7vw, 104px) clamp(20px, 5.5vw, 84px);
  background:
    radial-gradient(circle at 84% 0%, rgba(199, 223, 114, 0.21), transparent 28%),
    var(--paper);
}

.coverage-shell {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(20px, 3vw, 42px);
  row-gap: clamp(36px, 5vw, 64px);
  width: min(1360px, 100%);
  margin-inline: auto;
}

.coverage-copy {
  grid-column: 1 / span 8;
  padding: 0;
}

.coverage-copy h2 {
  max-width: 760px;
}

.coverage-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.coverage-distance {
  grid-column: 10 / span 3;
  align-self: end;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  padding: 4px 0 6px clamp(24px, 3vw, 42px);
  border-left: 1px solid var(--line);
  color: var(--green);
}

.coverage-distance strong {
  font-family: var(--font-display);
  font-size: clamp(78px, 8vw, 122px);
  font-weight: 760;
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.coverage-distance span {
  padding: 0 0 4px 10px;
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 800;
  line-height: 0.9;
}

.coverage-distance small {
  grid-column: 1 / -1;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coverage-route {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(130px, auto) minmax(70px, 1fr) minmax(520px, 2.1fr);
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.coverage-origin {
  display: grid;
  gap: 3px;
}

.coverage-origin strong {
  color: var(--green);
  font-size: 20px;
  font-weight: 850;
}

.coverage-origin span {
  color: var(--muted);
  font-size: 13px;
}

.coverage-line {
  height: 2px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(23, 72, 63, 0.13);
}

.coverage-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--lime));
  transform-origin: left;
}

.coverage-places {
  display: flex;
  flex-wrap: wrap;
  gap: 12px clamp(22px, 2.6vw, 38px);
}

.coverage-places span {
  color: var(--green);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 750;
  white-space: nowrap;
}

.service-tabs {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.service-tabs::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 6px;
  bottom: 6px;
  left: 6px;
  width: calc(50% - 10px);
  border-radius: var(--radius-control);
  background: var(--green);
  box-shadow: 0 14px 34px rgba(16, 59, 49, 0.2);
  transform: translateX(0);
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-tabs.is-clearing::before {
  transform: translateX(calc(100% + 8px));
}

.service-tabs button,
.service-tabs button[aria-selected="true"] {
  position: relative;
  z-index: 1;
  color: var(--green);
  background: transparent;
  box-shadow: none;
  transition: color 260ms ease, transform 180ms ease;
}

.service-tabs button[aria-selected="true"] {
  color: var(--paper);
}

.service-tabs button:active {
  transform: scale(0.99);
}

.service-panel.is-active {
  animation: servicePanelSwap 480ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes servicePanelSwap {
  from { opacity: 0; transform: translateY(20px) scale(0.992); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.example-card {
  overflow: hidden;
  align-self: start;
  border: 1px solid rgba(18, 55, 44, 0.09);
  box-shadow: var(--shadow-soft);
}

.example-grid {
  align-items: start;
}

.example-gallery {
  overflow: hidden;
}

.example-gallery img {
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.example-card:hover .example-gallery img {
  transform: scale(1.025);
}

@keyframes headerArrive {
  from { opacity: 0; transform: translate(-50%, -18px) scale(0.985); }
  to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroImageSettle {
  from { opacity: 0.72; transform: scale(1.065); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes routeGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes placeArrive {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes imageSettle {
  from { opacity: 0.7; transform: scale(1.055); }
  to { opacity: 1; transform: scale(1); }
}

html.motion-on .site-header {
  animation: headerArrive 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

html.motion-on .hero-content > .eyebrow,
html.motion-on .hero-content > h1,
html.motion-on .hero-content > .hero-lead,
html.motion-on .hero-content > .hero-actions {
  animation: heroCopyIn 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

html.motion-on .hero-content > .eyebrow { animation-delay: 100ms; }
html.motion-on .hero-content > h1 { animation-delay: 190ms; }
html.motion-on .hero-content > .hero-lead { animation-delay: 300ms; }
html.motion-on .hero-content > .hero-actions { animation-delay: 410ms; }

html.motion-on .hero-image {
  animation: heroImageSettle 1500ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

html.motion-on.has-reveal [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 44px, 0);
  transition: none;
  will-change: opacity, transform;
}

html.motion-on.has-reveal .example-card[data-reveal] {
  transform: translate3d(0, 56px, 0) scale(0.982);
}

html.motion-on.has-reveal [data-reveal].is-revealed,
html.motion-on.has-reveal .example-card[data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition: opacity 760ms cubic-bezier(0.16, 1, 0.3, 1), transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

html.motion-on.has-reveal .coverage-shell[data-reveal] .coverage-line span {
  transform: scaleX(0);
}

html.motion-on.has-reveal .coverage-shell[data-reveal] .coverage-places span {
  opacity: 0;
  transform: translateY(16px);
}

html.motion-on.has-reveal .coverage-shell[data-reveal].is-revealed .coverage-line span {
  animation: routeGrow 900ms 380ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

html.motion-on.has-reveal .coverage-shell[data-reveal].is-revealed .coverage-places span {
  animation: placeArrive 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

html.motion-on.has-reveal .coverage-shell.is-revealed .coverage-places span:nth-child(1) { animation-delay: 440ms; }
html.motion-on.has-reveal .coverage-shell.is-revealed .coverage-places span:nth-child(2) { animation-delay: 500ms; }
html.motion-on.has-reveal .coverage-shell.is-revealed .coverage-places span:nth-child(3) { animation-delay: 560ms; }
html.motion-on.has-reveal .coverage-shell.is-revealed .coverage-places span:nth-child(4) { animation-delay: 620ms; }
html.motion-on.has-reveal .coverage-shell.is-revealed .coverage-places span:nth-child(5) { animation-delay: 680ms; }
html.motion-on.has-reveal .coverage-shell.is-revealed .coverage-places span:nth-child(6) { animation-delay: 740ms; }

html.motion-on.has-reveal .example-card.is-revealed .example-gallery img {
  animation: imageSettle 1100ms 160ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

html.motion-off [data-reveal],
html.motion-off [data-reveal].is-revealed {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 980px) {
  .coverage-copy {
    grid-column: 1 / span 8;
  }

  .coverage-distance {
    grid-column: 9 / span 4;
  }

  .coverage-route {
    grid-template-columns: auto minmax(50px, 0.7fr) minmax(360px, 2fr);
  }
}

@media (max-width: 640px) {
  .nav {
    background: rgba(248, 248, 242, 0.98);
  }

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

  .coverage.coverage-top {
    padding: 64px 18px;
  }

  .coverage-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .coverage-copy,
  .coverage-distance,
  .coverage-route {
    grid-column: auto;
  }

  .coverage-distance {
    grid-template-columns: auto 1fr;
    justify-self: start;
    padding-left: 20px;
  }

  .coverage-distance strong {
    font-size: 82px;
  }

  .coverage-route {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .coverage-line {
    width: 100%;
  }

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

  .coverage-places span {
    white-space: normal;
  }

  .service-tabs::before {
    top: 6px;
    right: 6px;
    bottom: auto;
    width: auto;
    height: calc(50% - 10px);
    transform: translateY(0);
  }

  .service-tabs.is-clearing::before {
    transform: translateY(calc(100% + 8px));
  }
}

/* Mobile acceptance fixes: navigation, calculator, legal documents and analytics. */
.choice-group {
  min-width: 0;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(23, 72, 63, 0.18);
  border-radius: 16px;
  background: rgba(247, 247, 241, 0.72);
}

.choice-group + .choice-group {
  margin-top: 2px;
}

.choice-group legend {
  padding: 0 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.consent-field {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 7px 12px;
  padding: 16px;
  border: 1px solid rgba(23, 72, 63, 0.2);
  border-radius: 16px;
  background: #f7f7f1;
}

.consent-field input {
  width: 20px;
  height: 20px;
  min-height: 0;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.consent-field label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.consent-field p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.consent-field button,
.analytics-consent > div:first-child button {
  border: 0;
  padding: 0;
  color: var(--green);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-body h3 {
  margin: 12px 0 -4px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.legal-body a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-body li + li {
  margin-top: 7px;
}

.legal-meta {
  color: var(--green) !important;
  font-size: 14px;
  font-weight: 850;
}

.analytics-consent {
  position: fixed;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom));
  left: 16px;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(680px, calc(100% - 32px));
  margin-inline: auto;
  padding: 13px 14px 13px 16px;
  border: 1px solid rgba(13, 69, 56, 0.14);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 252, 0.98);
  box-shadow: 0 16px 44px rgba(4, 32, 24, 0.2);
  backdrop-filter: blur(14px);
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent strong {
  display: block;
  margin-bottom: 2px;
  font-size: 16px;
  line-height: 1.2;
}

.analytics-consent p {
  display: inline;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.analytics-consent-copy > button {
  margin-left: 5px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.analytics-consent-actions {
  display: flex;
  gap: 8px;
}

.analytics-consent .btn {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 14px;
  white-space: nowrap;
}

.analytics-consent .btn-ghost {
  border-color: rgba(13, 69, 56, 0.26);
  color: var(--green);
  background: var(--white);
}

.analytics-consent-open .mobile-call-bar {
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
}

@media (max-width: 980px) {
  .nav {
    display: flex;
    max-height: calc(100dvh - 104px);
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  body.menu-open .nav {
    display: flex;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .menu-button span {
    transition: transform 180ms ease;
  }

  body.menu-open .menu-button span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  body.menu-open .menu-button span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .choice-group {
    padding: 14px;
    border-radius: 15px;
  }

  .choice-group .choice-grid {
    gap: 9px;
  }

  .choice-grid button {
    min-height: 64px;
    padding: 14px 16px;
    border-width: 1.5px;
    border-radius: 14px;
    line-height: 1.28;
    touch-action: manipulation;
  }

  .choice-grid button.is-active {
    border: 2px solid var(--green);
    background: #edf4cf;
    box-shadow: 0 0 0 3px rgba(23, 72, 63, 0.08);
  }

  .quiz-controls {
    display: flex;
    gap: 10px;
    width: 100%;
  }

  .quiz-controls .btn {
    width: auto;
    min-width: 0;
    min-height: 54px;
    padding-inline: 18px;
    border-radius: 999px;
    touch-action: manipulation;
  }

  .quiz-controls [data-quiz-prev] {
    flex: 0 1 38%;
  }

  .quiz-controls [data-quiz-next],
  .quiz-controls [data-telegram-submit] {
    flex: 1 1 62%;
  }

  .footer {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    align-items: start;
    padding: 48px 20px calc(112px + env(safe-area-inset-bottom));
  }

  .footer > div:first-child {
    width: 100%;
    max-width: none;
  }

  .footer strong {
    display: block;
    font-size: clamp(38px, 12vw, 50px);
    line-height: 0.98;
  }

  .footer p {
    max-width: 34ch;
    margin: 16px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }

  .footer-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

  .footer-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding-inline: 14px;
  }

  .footer-legal {
    grid-column: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    width: 100%;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-legal button {
    width: fit-content;
    min-height: 34px;
    text-align: left;
    line-height: 1.3;
  }

  .legal-modal {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 18px;
  }

  .legal-panel {
    padding: 24px 20px 32px;
  }

  .legal-panel h2 {
    max-width: calc(100% - 40px);
    font-size: 28px;
    line-height: 1.08;
  }

  .legal-body {
    gap: 12px;
    font-size: 15px;
    line-height: 1.55;
  }

  .legal-body h3 {
    margin-top: 10px;
    font-size: 17px;
  }

  .analytics-consent {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    width: auto;
    padding: 14px;
    border-radius: 16px;
  }

  .analytics-consent-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .analytics-consent .btn {
    width: 100%;
    padding-inline: 12px;
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  .footer-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .quiz-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .quiz-controls .btn {
    width: 100%;
  }

  .analytics-consent {
    padding: 12px;
  }
}

/* Final acceptance fixes: balanced grids, compact forms and indivisible values. */
.example-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.example-card,
.example-card:nth-child(2),
.example-card:nth-child(3),
.example-card:nth-child(4) {
  grid-column: auto;
  grid-template-rows: auto minmax(0, 1fr);
  align-self: stretch;
  height: 100%;
}

.example-copy {
  grid-template-rows: auto auto minmax(0, 1fr) auto;
}

.rate-table div {
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1fr);
}

.rate-table strong,
.example-copy strong,
.footer-phone {
  white-space: nowrap;
}

.quiz-step {
  min-height: 0;
}

.footer {
  align-items: start;
  padding-block: clamp(44px, 5vw, 60px);
}

.footer-contact {
  display: grid;
  gap: 14px;
  justify-items: end;
  padding-top: 4px;
}

.footer-phone {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 820;
  letter-spacing: -0.025em;
  line-height: 1;
}

.footer-phone:hover {
  color: var(--lime);
}

.footer-legal {
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 640px) {
  .example-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rate-table div {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-item-prep {
    order: 5;
  }

  .footer-contact {
    width: 100%;
    justify-items: start;
    padding-top: 0;
  }
}

/* Quiet corner cookie notice. Analytics remains opt-in until acknowledgement. */
.analytics-consent {
  right: 20px;
  bottom: max(20px, env(safe-area-inset-bottom));
  left: auto;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: min(300px, calc(100% - 40px));
  margin: 0;
  padding: 16px;
  border-color: rgba(21, 33, 29, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 42px rgba(16, 39, 32, 0.16);
}

.analytics-consent p {
  display: block;
  margin: 0;
  color: #3f4744;
  font-size: 15px;
  line-height: 1.5;
}

.analytics-consent-copy > button {
  margin: 0;
  color: var(--green-2);
  font-size: inherit;
  font-weight: 800;
}

.analytics-consent-actions {
  display: flex;
  justify-content: flex-start;
}

.analytics-consent .btn {
  width: auto;
  min-height: 40px;
  padding: 9px 14px;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: #eef1ed;
  box-shadow: none;
}

.analytics-consent .btn:hover {
  color: var(--ink);
  background: #e3e8e2;
  box-shadow: none;
  transform: none;
}

@media (max-width: 640px) {
  .analytics-consent {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: auto;
    width: min(290px, calc(100% - 20px));
    padding: 15px;
  }

  .analytics-consent-actions {
    display: flex;
  }

  .analytics-consent .btn {
    width: auto;
  }
}

/* Scroll stability: no queued anchor motion or mobile viewport jumps. */
html {
  scroll-behavior: auto;
}

@media (max-width: 980px) {
  .hero {
    min-height: 100svh;
  }

  html.motion-on.has-reveal [data-reveal],
  html.motion-on.has-reveal .example-card[data-reveal] {
    transform: translate3d(0, 14px, 0);
  }

  html.motion-on.has-reveal [data-reveal].is-revealed,
  html.motion-on.has-reveal .example-card[data-reveal].is-revealed {
    transition-duration: 420ms;
    transition-delay: 0ms;
  }
}
