:root {
  --ink: #10231f;
  --ink-soft: #41534e;
  --cream: #f6f3e9;
  --paper: #fffdf7;
  --line: rgba(16, 35, 31, 0.13);
  --green: #b8ff70;
  --green-deep: #75cc35;
  --mint: #dfffd0;
  --amber: #ffca66;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 35, 31, 0.13);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

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

html[lang^="hi"] body {
  font-family: "Noto Sans Devanagari", "Kohinoor Devanagari", Mangal, ui-sans-serif, system-ui, sans-serif;
}

html[lang^="hi"] .hero h1,
html[lang^="hi"] .section-intro h2,
html[lang^="hi"] .section-heading h2,
html[lang^="hi"] .compare-panel h2,
html[lang^="hi"] .checklist-copy h2,
html[lang^="hi"] .closing-card h2 {
  letter-spacing: -0.025em;
  line-height: 1.14;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

img,
svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--green);
  color: var(--ink);
  font-weight: 800;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  border-color: var(--line);
  background: rgba(246, 243, 233, 0.92);
  box-shadow: 0 8px 30px rgba(16, 35, 31, 0.05);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  color: var(--ink);
}

.brand-mark path {
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a {
  transition: color 150ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-control {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-control::after {
  position: absolute;
  right: 13px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  pointer-events: none;
  transform: translateY(-2px) rotate(45deg);
}

.language-control select {
  min-height: 42px;
  padding: 8px 34px 8px 14px;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.72);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.language-control select:focus-visible {
  outline: 3px solid rgba(117, 204, 53, 0.45);
  outline-offset: 3px;
}

.language-control-mobile {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
.brand:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(117, 204, 53, 0.45);
  outline-offset: 4px;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-small {
  min-height: 42px;
  padding: 11px 18px;
  font-size: 13px;
}

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

.button-dark:hover {
  box-shadow: 0 12px 26px rgba(16, 35, 31, 0.22);
}

.button-primary {
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(117, 204, 53, 0.2);
}

.button-primary:hover {
  background: #c8ff90;
  box-shadow: 0 15px 36px rgba(117, 204, 53, 0.28);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.button-full {
  width: 100%;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 850px;
  padding: 154px 0 98px;
  background:
    radial-gradient(circle at 72% 16%, rgba(184, 255, 112, 0.22), transparent 23%),
    radial-gradient(circle at 8% 85%, rgba(255, 202, 102, 0.16), transparent 27%),
    var(--cream);
}

.hero::before {
  position: absolute;
  top: 80px;
  left: 50%;
  width: 1px;
  height: 700px;
  background: linear-gradient(transparent, var(--line), transparent);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 25px;
  height: 3px;
  border-radius: 99px;
  background: var(--green-deep);
}

.hero h1 {
  max-width: 700px;
  margin: 22px 0 24px;
  font-size: clamp(52px, 5.2vw, 78px);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero-lead {
  max-width: 590px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.text-link {
  position: relative;
  display: inline-flex;
  padding-bottom: 3px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: scaleX(0.42);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 20px;
  padding: 0;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

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

.trust-list span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: #397513;
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(16, 35, 31, 0.12);
  border-radius: 50%;
}

.orbit-one {
  top: -30px;
  right: -60px;
  width: 560px;
  height: 560px;
}

.orbit-two {
  top: 34px;
  right: 0;
  width: 430px;
  height: 430px;
}

.comparison-card {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 20px;
  width: min(100%, 490px);
  padding: 24px;
  transform: rotate(1.4deg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  background: var(--ink);
  box-shadow: var(--shadow);
  color: var(--white);
}

.card-topline,
.offer-heading,
.offer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-topline {
  margin-bottom: 20px;
}

.card-topline > div {
  display: grid;
  gap: 3px;
}

.card-topline strong {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.card-kicker {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid rgba(184, 255, 112, 0.24);
  border-radius: 99px;
  background: rgba(184, 255, 112, 0.1);
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-dot::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.offer-card {
  padding: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(16, 35, 31, 0.08);
  border-radius: 20px;
  background: var(--paper);
  color: var(--ink);
}

.offer-muted {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.offer-heading {
  justify-content: flex-start;
  gap: 12px;
}

.offer-heading > div:last-child {
  display: grid;
}

.offer-heading strong {
  font-size: 14px;
}

.offer-heading small {
  color: #74837e;
  font-size: 10px;
}

.offer-muted .offer-heading small {
  color: rgba(255, 255, 255, 0.5);
}

.lender-placeholder {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--mint);
  color: #397513;
  font-weight: 900;
}

.lender-alt {
  background: rgba(255, 202, 102, 0.15);
  color: var(--amber);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 17px 0;
  margin-top: 15px;
  border-top: 1px solid rgba(16, 35, 31, 0.1);
  border-bottom: 1px solid rgba(16, 35, 31, 0.1);
}

.offer-muted .offer-grid {
  padding-bottom: 0;
  border-color: rgba(255, 255, 255, 0.12);
  border-bottom: 0;
}

.offer-grid > div {
  display: grid;
  gap: 2px;
}

.offer-grid small,
.offer-total span {
  color: #74837e;
  font-size: 10px;
}

.offer-muted .offer-grid small {
  color: rgba(255, 255, 255, 0.52);
}

.offer-grid strong {
  font-size: 14px;
}

.offer-total {
  padding-top: 14px;
}

.offer-total strong {
  font-size: 15px;
}

.micro-disclaimer {
  margin: 14px 4px 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  line-height: 1.5;
}

.float-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border: 1px solid rgba(16, 35, 31, 0.08);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(16, 35, 31, 0.11);
  font-size: 11px;
  font-weight: 800;
}

.float-note span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 8px;
  background: var(--mint);
  color: #397513;
}

.float-note-one {
  bottom: 35px;
  left: -14px;
}

.float-note-two {
  right: -15px;
  bottom: 96px;
}

.signal-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.55);
}

.signal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 30px;
}

.signal-inner > div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.pulse {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-deep);
}

.pulse::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--green-deep);
  border-radius: 50%;
  content: "";
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.7; transform: scale(0.7); }
  70%, 100% { opacity: 0; transform: scale(1.45); }
}

.signal-inner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.section {
  padding: 116px 0;
}

.section-intro h2,
.section-heading h2,
.compare-panel h2,
.checklist-copy h2 {
  margin: 18px 0 20px;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.section-intro p,
.section-heading p,
.compare-panel p,
.checklist-copy > p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.planner-section {
  background: var(--paper);
}

.planner-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.planner-tip {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 17px 18px;
  margin-top: 28px;
  border: 1px solid rgba(117, 204, 53, 0.25);
  border-radius: 14px;
  background: rgba(223, 255, 208, 0.38);
  color: #3b514a;
  font-size: 13px;
  line-height: 1.55;
}

.planner-tip svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #4f921f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.planner-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--cream);
  box-shadow: 0 18px 50px rgba(16, 35, 31, 0.08);
}

.range-field + .range-field {
  margin-top: 34px;
}

.range-label,
.range-limits {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.range-label {
  gap: 20px;
  margin-bottom: 18px;
}

.range-label label {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.range-label output {
  font-size: 23px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

input[type="range"] {
  width: 100%;
  height: 7px;
  margin: 0;
  appearance: none;
  border-radius: 99px;
  background: linear-gradient(to right, var(--green-deep) var(--range-progress, 22%), rgba(16, 35, 31, 0.12) var(--range-progress, 22%));
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  width: 23px;
  height: 23px;
  appearance: none;
  border: 5px solid var(--paper);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 2px 8px rgba(16, 35, 31, 0.24);
}

input[type="range"]::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border: 5px solid var(--paper);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 2px 8px rgba(16, 35, 31, 0.24);
}

input[type="range"]:focus-visible {
  outline: 3px solid rgba(117, 204, 53, 0.4);
  outline-offset: 5px;
}

.range-limits {
  margin-top: 8px;
  color: #7b8a85;
  font-size: 10px;
}

.estimate-box {
  display: grid;
  gap: 4px;
  padding: 23px;
  margin: 32px 0 18px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--white);
}

.estimate-box span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.estimate-box strong {
  color: var(--green);
  font-size: 27px;
  letter-spacing: -0.04em;
}

.estimate-box small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  line-height: 1.45;
}

.form-note {
  margin: 10px 8px 0;
  color: #7b8a85;
  font-size: 10px;
  text-align: center;
}

.steps-section {
  background: var(--cream);
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  position: relative;
  min-height: 325px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.step-card::after {
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(184, 255, 112, 0.16);
  content: "";
}

.step-number {
  position: absolute;
  top: 22px;
  right: 25px;
  color: rgba(16, 35, 31, 0.17);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.step-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 55px;
  place-items: center;
  border-radius: 17px;
  background: var(--mint);
}

.step-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.step-card h3,
.safety-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.step-card p,
.safety-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.compare-section {
  background: var(--ink);
  color: var(--white);
}

.compare-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: center;
}

.panel-label {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(184, 255, 112, 0.22);
  border-radius: 99px;
  background: rgba(184, 255, 112, 0.08);
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare-panel p {
  color: rgba(255, 255, 255, 0.6);
}

.text-link-light {
  margin-top: 12px;
  color: var(--green);
}

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

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

.compare-list article > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: rgba(184, 255, 112, 0.1);
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
}

.compare-list h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.compare-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.safety-section {
  background: var(--paper);
}

.safety-section .section-heading {
  max-width: 690px;
  margin-bottom: 48px;
}

.safety-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.safety-card {
  min-height: 260px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.safety-feature {
  grid-row: span 2;
  min-height: 538px;
  background: var(--ink);
  color: var(--white);
}

.safety-feature p {
  color: rgba(255, 255, 255, 0.56);
}

.shield-art {
  display: grid;
  height: 300px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 19px;
  background:
    radial-gradient(circle at center, rgba(184, 255, 112, 0.19), transparent 45%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 9px);
}

.shield-art svg {
  width: 150px;
  height: 170px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.22));
}

.shield-art path:first-child {
  fill: rgba(184, 255, 112, 0.12);
  stroke: var(--green);
  stroke-width: 2;
}

.shield-art path:last-child {
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6;
}

.safety-symbol {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 72px;
  place-items: center;
  border-radius: 15px;
  background: var(--mint);
  color: #397513;
  font-size: 20px;
  font-weight: 900;
}

.checklist-section {
  background: #e9f7df;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.checklist {
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(16, 35, 31, 0.18);
  list-style: none;
}

.checklist li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(16, 35, 31, 0.18);
}

.checklist li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: var(--green);
  font-weight: 900;
}

.checklist p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.checklist strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 15px;
}

.faq-section {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 50px 24px 0;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.closing-section {
  padding: 0 0 80px;
  background: var(--cream);
}

.closing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 55px 60px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 85% 20%, rgba(184, 255, 112, 0.2), transparent 30%),
    var(--ink);
  color: var(--white);
}

.closing-card h2 {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.site-footer {
  padding: 70px 0 28px;
  background: #091714;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  padding-bottom: 60px;
}

.brand-footer .brand-mark {
  color: var(--green);
}

.brand-footer .brand-mark path {
  stroke: var(--ink);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--white);
}

.legal-copy {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
  line-height: 1.7;
}

.legal-copy strong {
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.33);
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-small { transition-delay: 90ms; }
.reveal-delay { transition-delay: 160ms; }
.reveal-delay-large { transition-delay: 240ms; }

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero-grid,
  .planner-grid,
  .compare-grid,
  .checklist-grid,
  .faq-grid {
    gap: 55px;
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .hero h1 {
    font-size: 58px;
  }

  .float-note-one {
    left: 0;
  }

  .float-note-two {
    right: -5px;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 11px;
    place-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--paper);
  }

  .menu-button span:not(.sr-only) {
    width: 19px;
    height: 2px;
    border-radius: 10px;
    background: var(--ink);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 2px;
    padding: 22px 20px;
    background: var(--cream);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav > a:not(.button) {
    padding: 15px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
    font-weight: 750;
  }

  .mobile-nav .button {
    margin-top: 20px;
  }

  .language-control-mobile {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 5px 4px;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 750;
  }

  .language-control-mobile::after {
    right: 17px;
  }

  .language-control-mobile select {
    min-width: 130px;
    background: var(--paper);
  }

  .hero {
    padding-top: 135px;
  }

  .hero::before {
    display: none;
  }

  .hero-grid,
  .planner-grid,
  .compare-grid,
  .checklist-grid,
  .faq-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 72px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .comparison-card {
    right: 6%;
  }

  .planner-grid,
  .compare-grid,
  .checklist-grid,
  .faq-grid {
    gap: 50px;
  }

  .section-intro,
  .checklist-copy {
    max-width: 680px;
  }

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

  .step-card {
    min-height: 260px;
  }

  .step-icon {
    margin-bottom: 42px;
  }

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

  .safety-feature {
    grid-column: span 2;
    grid-row: auto;
    min-height: auto;
  }

  .shield-art {
    height: 260px;
  }

  .footer-main {
    gap: 45px;
  }
}

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

  .header-inner {
    height: 72px;
  }

  .mobile-nav {
    top: 72px;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 70px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(47px, 14vw, 63px);
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

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

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .trust-list {
    display: grid;
  }

  .hero-visual {
    min-height: 530px;
  }

  .comparison-card {
    right: 0;
    width: 100%;
    padding: 18px;
    transform: none;
  }

  .card-topline strong {
    font-size: 19px;
  }

  .offer-card {
    padding: 17px;
  }

  .offer-grid {
    gap: 8px;
  }

  .offer-grid strong {
    font-size: 12px;
  }

  .float-note-one {
    bottom: 3px;
    left: 7px;
  }

  .float-note-two {
    right: 7px;
    bottom: 61px;
  }

  .orbit-one {
    right: -210px;
  }

  .signal-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
    gap: 8px;
  }

  .signal-inner p {
    padding-left: 21px;
    font-size: 11px;
  }

  .section {
    padding: 82px 0;
  }

  .section-intro h2,
  .section-heading h2,
  .compare-panel h2,
  .checklist-copy h2 {
    font-size: 39px;
  }

  .planner-card {
    padding: 23px 18px;
    border-radius: 23px;
  }

  .range-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .estimate-box strong {
    font-size: 23px;
  }

  .section-heading.centered {
    text-align: left;
  }

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

  .safety-feature {
    grid-column: auto;
  }

  .safety-symbol {
    margin-bottom: 52px;
  }

  .closing-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 40px 25px;
  }

  .closing-card .button {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    row-gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
