:root {
  --ink: #172123;
  --ink-soft: #263336;
  --paper: #f7f8f3;
  --paper-2: #edf0e8;
  --white: #ffffff;
  --lime: #d7f24b;
  --lime-dark: #b9d22d;
  --line: #d8ddd5;
  --muted: #657371;
  --muted-light: #aab5b3;
  --danger: #b42318;
  --success: #2d7652;
  --shadow-sm: 0 8px 24px rgba(23, 33, 35, 0.08);
  --shadow-lg: 0 28px 70px rgba(23, 33, 35, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 5.8vw, 5.4rem);
  margin-bottom: 26px;
  max-width: 820px;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  margin-bottom: 24px;
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--muted);
}

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

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

.section {
  padding: 112px 0;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 20px;
  top: 14px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

/* Announcement */
.announcement {
  color: var(--white);
  background: var(--ink);
  font-size: 0.875rem;
}

.announcement__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.announcement p {
  margin: 0;
  color: #d9e1df;
}

.announcement strong {
  color: var(--white);
}

.announcement a {
  margin-left: 12px;
  color: var(--lime);
  font-weight: 700;
}

.announcement a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.announcement__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(215, 242, 75, 0.12);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(247, 248, 243, 0.91);
  border-bottom: 1px solid rgba(216, 221, 213, 0.75);
  backdrop-filter: blur(16px);
}

.header__inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand img {
  width: 174px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 650;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Buttons */
.button {
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  background: transparent;
  font-weight: 750;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
.main-nav a:focus-visible,
.text-link:focus-visible,
.accordion button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(49, 81, 91, 0.28);
  outline-offset: 3px;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.button--primary {
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 10px 24px rgba(174, 203, 34, 0.2);
}

.button--primary:hover {
  background: #e0f76e;
  border-color: #e0f76e;
  box-shadow: 0 15px 28px rgba(174, 203, 34, 0.27);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button--dark:hover {
  background: #263436;
  box-shadow: var(--shadow-sm);
}

.button--ghost {
  background: var(--white);
  border-color: var(--line);
}

.button--ghost:hover {
  border-color: #abb7b4;
  box-shadow: var(--shadow-sm);
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.button--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
}

.button--small {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 0.9rem;
}

.button--large {
  min-height: 56px;
  padding: 16px 24px;
}

.button--block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 750;
}

.text-link--light {
  color: var(--lime);
}

/* Shared typography */
.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #53615f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 24px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
}

.eyebrow__icon {
  color: var(--lime-dark);
  font-size: 0.65rem;
}

.kicker {
  margin-bottom: 18px;
}

.kicker::before {
  content: "";
  width: 25px;
  height: 2px;
  background: var(--lime-dark);
}

.kicker--light {
  color: #c5d0cd;
}

.kicker--light::before {
  background: var(--lime);
}

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

.section-heading h2 span {
  color: var(--muted);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: 90px;
  align-items: end;
}

.section-heading--split h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.section-heading--split > p {
  margin: 0 0 4px;
  font-size: 1.06rem;
}

.section-heading--center {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .kicker {
  justify-content: center;
}

.section-heading--center p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 88px;
  padding-bottom: 92px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 680px;
  height: 680px;
  right: -280px;
  top: -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 242, 75, 0.28), rgba(215, 242, 75, 0) 69%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 500px;
  height: 500px;
  left: -280px;
  bottom: -350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(113, 133, 130, 0.18), rgba(113, 133, 130, 0) 70%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(490px, 0.88fr);
  align-items: center;
  gap: 62px;
}

.hero h1 span {
  position: relative;
  z-index: 1;
  display: inline;
  background: linear-gradient(transparent 72%, var(--lime) 0);
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: #53615f;
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
}

.hero__lead strong {
  color: var(--ink);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 28px;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
}

.hero__checks li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__checks span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.75rem;
}

.hero__visual {
  min-width: 0;
}

.visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: rotate(0.75deg);
}

.visual-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 200px;
  height: 200px;
  right: -90px;
  top: 70px;
  border-radius: 50%;
  background: rgba(215, 242, 75, 0.2);
}

.visual-card__top,
.visual-card__footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.visual-card__top {
  min-height: 67px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.status-pill {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--paper);
  color: #53615f;
  font-size: 0.74rem;
}

.status-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime-dark);
}

.barrier-scene {
  width: 100%;
  height: auto;
}

.visual-card__footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.visual-card__footer > div {
  padding: 20px 18px;
  text-align: center;
}

.visual-card__footer > div + div {
  border-left: 1px solid var(--line);
}

.visual-card__footer strong,
.metric-label {
  display: block;
}

.visual-card__footer strong {
  font-size: 0.86rem;
}

.metric-label {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-note {
  margin: 13px 8px 0;
  font-size: 0.74rem;
  text-align: center;
}

/* Proof strip */
.proof-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.proof-strip__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.proof-strip p {
  flex: 0 0 auto;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.proof-strip__items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.proof-strip__items span {
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 700;
}

/* Application cards */
.cards-grid {
  display: grid;
  gap: 18px;
}

.cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.application-card {
  position: relative;
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.74);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.application-card:hover {
  transform: translateY(-6px);
  border-color: #b7c1bd;
  box-shadow: var(--shadow-sm);
}

.application-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(215, 242, 75, 0.17);
}

.application-card__icon {
  width: 58px;
  height: 58px;
  margin-bottom: auto;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--lime);
}

.application-card__icon svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.application-card h3 {
  margin: 44px 0 12px;
}

.application-card p {
  margin: 0;
  font-size: 0.94rem;
}

/* Service band */
.service-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.service-band::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(215, 242, 75, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(215, 242, 75, 0.035), 0 0 0 160px rgba(215, 242, 75, 0.02);
}

.service-band__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 100px;
  align-items: center;
}

.service-band__intro h2 {
  color: var(--white);
}

.service-band__intro p {
  max-width: 520px;
  color: #aebbb8;
  font-size: 1.05rem;
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-list article {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
}

.service-list__number {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-list h3 {
  margin-bottom: 8px;
  color: var(--white);
}

.service-list p {
  margin: 0;
  color: #9eaeab;
  font-size: 0.94rem;
}

/* Process */
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 16%;
  right: 16%;
  top: 67px;
  height: 1px;
  border-top: 2px dashed #c8d0c8;
}

.process-grid li {
  position: relative;
  z-index: 1;
  min-height: 340px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
}

.process-grid__step {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--paper-2);
  font-size: 0.76rem;
  font-weight: 800;
}

.process-grid__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: var(--paper);
  box-shadow: 0 0 0 8px var(--white);
}

.process-grid__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-grid h3 {
  margin-bottom: 12px;
}

.process-grid p {
  max-width: 290px;
  margin-inline: auto;
  font-size: 0.94rem;
}

/* Coverage */
.coverage {
  background: var(--paper-2);
}

.coverage__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
  align-items: center;
}

.coverage__copy > p {
  max-width: 480px;
  font-size: 1.04rem;
}

.coverage__stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.coverage__stats > div {
  padding: 20px;
  border: 1px solid #ccd3ca;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
}

.coverage__stats strong,
.coverage__stats span {
  display: block;
}

.coverage__stats strong {
  margin-bottom: 3px;
}

.coverage__stats span {
  color: var(--muted);
  font-size: 0.77rem;
}

.coverage-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid #cbd2c9;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.58)),
    repeating-linear-gradient(0deg, transparent 0, transparent 39px, rgba(90, 108, 104, 0.07) 40px),
    repeating-linear-gradient(90deg, transparent 0, transparent 39px, rgba(90, 108, 104, 0.07) 40px),
    #e1e7dd;
}

.coverage-map::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -80px;
  width: 270px;
  height: 270px;
  background: var(--lime);
  border-radius: 50%;
  opacity: 0.12;
}

.coverage-map__rings {
  position: absolute;
  left: 46%;
  top: 47%;
  width: 280px;
  height: 280px;
  transform: translate(-50%, -50%);
}

.coverage-map__rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(50, 73, 68, 0.14);
  border-radius: 50%;
}

.coverage-map__rings i:nth-child(2) {
  inset: 50px;
}

.coverage-map__rings i:nth-child(3) {
  inset: 102px;
  background: rgba(215, 242, 75, 0.14);
}

.coverage-map__pin {
  position: absolute;
  z-index: 2;
  left: 46%;
  top: 47%;
  padding: 12px 16px 12px 45px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translate(-50%, -50%);
}

.coverage-map__pin > span {
  position: absolute;
  left: 15px;
  top: 18px;
  width: 17px;
  height: 17px;
  border: 5px solid var(--ink);
  border-radius: 50% 50% 50% 0;
  background: var(--lime);
  transform: rotate(-45deg);
}

.coverage-map__pin strong,
.coverage-map__pin small {
  display: block;
}

.coverage-map__pin strong {
  line-height: 1.1;
}

.coverage-map__pin small {
  margin-top: 2px;
  color: var(--muted);
}

.coverage-map__cities span {
  position: absolute;
  z-index: 1;
  padding: 6px 9px;
  border: 1px solid rgba(102, 120, 116, 0.18);
  border-radius: 8px;
  color: #556360;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  font-weight: 700;
}

.coverage-map__cities span:nth-child(1) { left: 15%; top: 24%; }
.coverage-map__cities span:nth-child(2) { left: 61%; top: 18%; }
.coverage-map__cities span:nth-child(3) { left: 74%; top: 38%; }
.coverage-map__cities span:nth-child(4) { left: 16%; top: 63%; }
.coverage-map__cities span:nth-child(5) { left: 55%; top: 67%; }
.coverage-map__cities span:nth-child(6) { left: 70%; top: 77%; }
.coverage-map__cities span:nth-child(7) { left: 9%; top: 78%; }
.coverage-map__cities span:nth-child(8) { left: 72%; top: 8%; }
.coverage-map__cities span:nth-child(9) { left: 29%; top: 10%; }
.coverage-map__cities span:nth-child(10) { left: 37%; top: 84%; }
.coverage-map__cities span:nth-child(11) { left: 78%; top: 57%; }

/* Quote section */
.quote-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #202d2f;
}

.quote-section::before {
  content: "";
  position: absolute;
  left: -280px;
  bottom: -290px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 242, 75, 0.15), rgba(215, 242, 75, 0) 70%);
}

.quote-section__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(580px, 1.28fr);
  gap: 80px;
  align-items: start;
}

.quote-intro {
  position: sticky;
  top: 128px;
}

.quote-intro h2 {
  color: var(--white);
}

.quote-intro > p {
  color: #b2c0bd;
  font-size: 1.03rem;
}

.quote-intro__tip {
  margin: 34px 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 13px;
  background: rgba(255, 255, 255, 0.045);
}

.quote-intro__tip svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 2;
  stroke-linecap: round;
}

.quote-intro__tip strong {
  display: block;
  margin-bottom: 4px;
}

.quote-intro__tip p {
  margin: 0;
  color: #9eafac;
  font-size: 0.86rem;
}

.quote-intro__contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-intro__contact-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
}

.quote-intro__contact-list li > span {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.7rem;
  font-weight: 900;
}

.quote-intro__contact-list small,
.quote-intro__contact-list a {
  display: block;
}

.quote-intro__contact-list small {
  color: #9eafac;
  font-size: 0.72rem;
}

.quote-intro__contact-list a {
  color: var(--white);
  font-weight: 700;
}

.quote-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.form-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.form-progress__item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8b9895;
}

.form-progress__item span {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--paper);
  font-size: 0.76rem;
  font-weight: 800;
}

.form-progress__item small {
  font-size: 0.74rem;
  font-weight: 750;
}

.form-progress__item.is-active {
  color: var(--ink);
}

.form-progress__item.is-active span,
.form-progress__item.is-complete span {
  border-color: var(--lime);
  background: var(--lime);
}

.form-progress__line {
  height: 2px;
  background: var(--line);
}

.form-progress__line i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--lime-dark);
  transition: width 0.3s ease;
}

.form-progress.is-step-2 .form-progress__line i {
  width: 100%;
}

.form-step[hidden] {
  display: none;
}

.form-step__header {
  margin-bottom: 26px;
}

.form-step__header > span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-step__header h3 {
  margin-bottom: 8px;
  font-size: 1.65rem;
}

.form-step__header p {
  margin: 0;
  font-size: 0.88rem;
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.field {
  margin-bottom: 18px;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cfd6ce;
  border-radius: 11px;
  color: var(--ink);
  background: #fbfcf9;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.field input,
.field select {
  min-height: 50px;
  padding: 11px 13px;
}

.field textarea {
  min-height: 114px;
  padding: 12px 13px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #aeb9b5;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #647471;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(100, 116, 113, 0.1);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}

.field-error {
  min-height: 18px;
  display: block;
  margin-top: 5px;
  color: var(--danger);
  font-size: 0.72rem;
}

.field-help {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.7rem;
}

.checkbox-group {
  padding: 0;
  border: 0;
}

.checkbox-group legend {
  margin-bottom: 10px;
}

.checkbox-card {
  position: relative;
  min-height: 58px;
  margin-bottom: 9px !important;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  display: grid !important;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 11px;
  background: #fbfcf9;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease;
}

.checkbox-card:hover {
  border-color: #aeb9b5;
}

.checkbox-card:has(input:checked) {
  border-color: var(--lime-dark);
  background: rgba(215, 242, 75, 0.12);
}

.checkbox-card input,
.consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-card__box,
.consent__box {
  position: relative;
  width: 21px;
  height: 21px;
  border: 1px solid #b6c0bd;
  border-radius: 6px;
  background: var(--white);
}

.checkbox-card input:checked + .checkbox-card__box,
.consent input:checked + .consent__box {
  border-color: var(--ink);
  background: var(--ink);
}

.checkbox-card input:checked + .checkbox-card__box::after,
.consent input:checked + .consent__box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid var(--lime);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-card input:focus-visible + .checkbox-card__box,
.consent input:focus-visible + .consent__box {
  outline: 3px solid rgba(49, 81, 91, 0.28);
  outline-offset: 3px;
}

.checkbox-card strong,
.checkbox-card small {
  display: block;
}

.checkbox-card strong {
  margin-bottom: 1px;
  font-size: 0.8rem;
}

.checkbox-card small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
}

.consent {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: #53615f;
  font-size: 0.76rem;
  cursor: pointer;
}

.consent a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-error {
  margin-left: 32px;
  margin-bottom: 10px;
}

.form-actions {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 11px;
  margin-top: 18px;
}

.form-disclaimer {
  margin: 15px 0 0;
  color: #7b8986;
  font-size: 0.67rem;
  text-align: center;
}

.form-success {
  min-height: 500px;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.form-success__icon {
  width: 74px;
  height: 74px;
  margin-bottom: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 0 0 12px rgba(215, 242, 75, 0.2);
  font-size: 2rem;
  font-weight: 900;
}

.form-success h3 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.form-success p {
  max-width: 430px;
}

/* FAQ */
.faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 90px;
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: 128px;
}

.faq__intro p {
  max-width: 380px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion__item {
  border-bottom: 1px solid var(--line);
}

.accordion__item h3 {
  margin: 0;
}

.accordion__item button {
  width: 100%;
  min-height: 78px;
  padding: 20px 0;
  border: 0;
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 20px;
  color: var(--ink);
  background: transparent;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.accordion__item button span {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.accordion__item button span::before,
.accordion__item button span::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 13px;
  width: 10px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.accordion__item button span::after {
  transform: rotate(90deg);
}

.accordion__item button[aria-expanded="true"] span::after {
  transform: rotate(0);
}

.accordion__panel {
  padding: 0 58px 24px 0;
}

.accordion__panel p {
  margin: 0;
}

/* Final CTA */
.final-cta {
  padding: 88px 0;
  color: var(--white);
  background: var(--ink);
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 60px;
  align-items: center;
}

.final-cta h2 {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}

.final-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Footer */
.site-footer {
  padding: 72px 0 30px;
  border-top: 1px solid var(--line);
  background: #f0f2ec;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(270px, 1.4fr) repeat(3, minmax(150px, 0.65fr));
  gap: 60px;
  padding-bottom: 50px;
}

.footer__brand img {
  width: 166px;
  margin-bottom: 20px;
}

.footer__brand p {
  max-width: 340px;
  font-size: 0.88rem;
}

.footer__phase {
  padding: 7px 10px;
  border: 1px solid #c6cec5;
  border-radius: 999px;
  display: inline-flex;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
}

.footer__column h2 {
  margin-bottom: 18px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__column a,
.footer__column span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer__column a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer__bottom p {
  margin: 0;
  font-size: 0.7rem;
}

.mobile-whatsapp {
  position: fixed;
  z-index: 900;
  right: 18px;
  bottom: 18px;
  min-height: 52px;
  padding: 12px 17px;
  border-radius: 999px;
  display: none;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 12px 34px rgba(23, 33, 35, 0.25);
  font-size: 0.83rem;
  font-weight: 800;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mobile-whatsapp.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.noscript-message {
  position: fixed;
  z-index: 9999;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

/* Privacy page */
.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-header {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

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

.legal-header img {
  width: 160px;
}

.legal-content {
  max-width: 820px;
  padding: 80px 0 100px;
}

.legal-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.legal-content h2 {
  margin-top: 45px;
  font-size: 1.65rem;
}

.legal-content h3 {
  margin-top: 30px;
  font-size: 1.15rem;
}

.legal-content p,
.legal-content li {
  color: #53615f;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-notice {
  margin: 28px 0;
  padding: 20px;
  border-left: 4px solid var(--lime-dark);
  border-radius: 0 12px 12px 0;
  background: var(--white);
}

/* Responsive */
@media (max-width: 1100px) {
  .header__inner {
    gap: 20px;
  }

  .main-nav {
    gap: 20px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
    gap: 38px;
  }

  .cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .application-card {
    min-height: 280px;
  }

  .service-band__grid,
  .quote-section__grid {
    gap: 54px;
  }

  .quote-section__grid {
    grid-template-columns: minmax(280px, 0.62fr) minmax(520px, 1.38fr);
  }

  .footer__grid {
    grid-template-columns: 1.2fr repeat(3, 0.65fr);
    gap: 34px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 85px;
  }

  .section {
    padding: 82px 0;
  }

  .announcement__inner {
    min-height: 46px;
  }

  .announcement a {
    display: none;
  }

  .header__inner {
    min-height: 72px;
    grid-template-columns: auto 1fr auto;
  }

  .brand img {
    width: 157px;
  }

  .nav-toggle {
    grid-column: 3;
    display: block;
  }

  .header__cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    z-index: 998;
    inset: 118px 0 auto;
    height: calc(100vh - 118px);
    padding: 26px 20px 100px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--paper);
    overflow-y: auto;
  }

  .nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 20px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.15rem;
  }

  .nav-open .nav-toggle span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(3) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding-top: 66px;
  }

  .hero__grid,
  .service-band__grid,
  .coverage__grid,
  .quote-section__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 62px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero__visual {
    max-width: 700px;
    margin-inline: auto;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading--split > p {
    max-width: 650px;
  }

  .proof-strip__inner {
    padding: 22px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .proof-strip__items {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .service-band__grid {
    gap: 45px;
  }

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

  .process-grid::before {
    display: none;
  }

  .process-grid li {
    min-height: 260px;
  }

  .coverage__grid {
    gap: 48px;
  }

  .coverage-map {
    min-height: 500px;
  }

  .quote-section__grid,
  .faq__grid {
    gap: 48px;
  }

  .quote-intro,
  .faq__intro {
    position: static;
  }

  .quote-intro__contact-list {
    max-width: 520px;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .final-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }

  .mobile-whatsapp {
    display: flex;
  }

  .site-footer {
    padding-bottom: 95px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .announcement {
    font-size: 0.72rem;
  }

  .announcement__inner {
    justify-content: flex-start;
  }

  .announcement__dot {
    flex: 0 0 auto;
  }

  .site-header {
    top: 0;
  }

  .main-nav {
    inset: 118px 0 auto;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 62px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .eyebrow {
    font-size: 0.66rem;
  }

  .hero__lead {
    font-size: 1.03rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__checks {
    display: grid;
    gap: 10px;
  }

  .visual-card {
    border-radius: 22px;
    transform: none;
  }

  .visual-card__top {
    padding: 0 15px;
    font-size: 0.72rem;
  }

  .status-pill {
    font-size: 0.64rem;
  }

  .visual-card__footer > div {
    padding: 14px 8px;
  }

  .visual-card__footer strong {
    font-size: 0.7rem;
  }

  .metric-label {
    font-size: 0.58rem;
  }

  .proof-strip__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 18px;
  }

  .proof-strip__items span {
    font-size: 0.78rem;
  }

  .cards-grid--4 {
    grid-template-columns: 1fr;
  }

  .application-card {
    min-height: 250px;
  }

  .service-list article {
    grid-template-columns: 42px 1fr;
    gap: 13px;
  }

  .coverage__stats,
  .form-grid--2,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .coverage-map {
    min-height: 470px;
  }

  .coverage-map__cities span {
    font-size: 0.6rem;
  }

  .coverage-map__cities span:nth-child(7),
  .coverage-map__cities span:nth-child(9),
  .coverage-map__cities span:nth-child(10) {
    display: none;
  }

  .quote-card {
    margin-inline: -3px;
    padding: 24px 18px;
    border-radius: 22px;
  }

  .form-progress__item small {
    display: none;
  }

  .form-actions .button {
    width: 100%;
  }

  .accordion__item button {
    min-height: 70px;
    font-size: 0.95rem;
  }

  .accordion__panel {
    padding-right: 12px;
  }

  .final-cta {
    padding: 68px 0;
  }

  .final-cta__actions {
    display: grid;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .mobile-whatsapp {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
  }

  .legal-header__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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