:root {
  --white: #ffffff;
  --surface: #f7f7f5;
  --text: #1e1e1e;
  --muted: #666666;
  --accent: #1f6b4f;
  --heading-accent: #1b3b30;
  --accent-soft: rgba(31, 107, 79, 0.1);
  --line: rgba(30, 30, 30, 0.1);
  --shadow: 0 30px 90px rgba(30, 30, 30, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  width: 100%;
  min-height: 52px;
  padding: 5px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(30, 30, 30, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 44px rgba(30, 30, 30, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  color: var(--heading-accent);
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  transition: color 180ms ease;
}

.site-nav small {
  display: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--heading-accent);
}

.header-cta,
.phone-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  font-weight: 700;
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease,
    border-color 200ms ease, box-shadow 200ms ease;
}

.header-cta {
  padding: 0 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
}

.phone-link {
  width: 46px;
  height: 46px;
  justify-self: end;
  margin-right: 12px;
  border: 1px solid rgba(27, 59, 48, 0.18);
  border-radius: 6px;
  background: var(--white);
  color: var(--heading-accent);
}

.phone-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.phone-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.header-cta:hover,
.button-primary:hover {
  background: #18563f;
  box-shadow: 0 14px 34px rgba(31, 107, 79, 0.24);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  align-self: center;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 132px max(24px, calc((100vw - 1180px) / 2)) 58px;
  background: var(--surface);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(247, 247, 245, 0.94) 0%, rgba(247, 247, 245, 0.68) 34%, rgba(247, 247, 245, 0.08) 64%),
    linear-gradient(180deg, rgba(30, 30, 30, 0.01) 0%, rgba(30, 30, 30, 0.12) 100%);
  pointer-events: none;
}

.hero-title {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding-top: 210px;
}

.hero-details {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 24px 64px;
  background: var(--surface);
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 9px 13px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.hero-badges {
  position: absolute;
  top: 124px;
  left: max(24px, calc((100vw - 1180px) / 2));
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.hero-eyebrow {
  margin: 0 !important;
}

.hero-rank {
  flex-direction: column;
  align-items: center;
  max-width: 390px;
  padding: 11px 14px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
}

.hero-rank span {
  display: block;
  white-space: nowrap;
}

.hero-mobile-stats {
  display: none;
}

h1 {
  margin: 0;
  max-width: 640px;
  color: var(--accent);
  font-size: clamp(44px, 5.3vw, 76px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 600;
  line-height: 1.45;
}

.hero-note,
.expert-quote {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.expert-quote {
  position: relative;
  padding: 18px 20px 18px 24px;
  border-left: 4px solid var(--heading-accent);
  border-radius: 8px;
  background: rgba(247, 247, 245, 0.86);
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-width: 178px;
  padding: 0 24px;
  font-size: 15px;
}

.button-primary {
  background: var(--accent);
  color: var(--white);
}

.button-secondary {
  border: 1px solid rgba(31, 107, 79, 0.28);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent);
}

.button-secondary:hover {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(30, 30, 30, 0.1);
  transform: translateY(-2px);
}

.trust-markers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-markers span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(31, 107, 79, 0.14);
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.about-expert {
  padding: 56px 24px 64px;
  background: var(--white);
}

.about-expert-inner {
  width: min(100%, 900px);
  margin: 0 auto;
}

.about-expert-intro {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.about-photo-block {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.about-expert-intro img {
  display: block;
  width: 190px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  object-position: 52% 35%;
  box-shadow: 0 20px 54px rgba(30, 30, 30, 0.12);
}

.section-kicker {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--heading-accent);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.about-expert h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.04;
}

.about-lead {
  margin: 18px 0 0;
  color: var(--heading-accent);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.about-copy {
  max-width: 740px;
  margin-top: 42px;
}

.about-copy p {
  margin: 0;
  color: var(--text);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 500;
  line-height: 1.58;
}

.about-copy p + p {
  margin-top: 22px;
}

.expert-signature {
  margin: 34px 0 0;
  color: var(--heading-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 4vw, 38px);
  font-style: italic;
  line-height: 1;
}

.about-statement {
  position: relative;
  margin: 42px 0 0;
  padding: 34px 38px 34px 96px;
  border: 1px solid rgba(30, 30, 30, 0.1);
  border-radius: 8px;
  background: var(--surface);
}

.about-statement span {
  position: absolute;
  top: 26px;
  left: 34px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
  font-weight: 700;
  line-height: 0.8;
}

.about-statement p {
  margin: 0;
  max-width: 640px;
  color: var(--text);
  font-size: clamp(22px, 3.6vw, 34px);
  font-weight: 800;
  line-height: 1.34;
}

.about-statement cite {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
}

.check-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(27, 59, 48, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(31, 107, 79, 0.12), rgba(247, 247, 245, 0.92));
  color: var(--heading-accent);
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 20px 54px rgba(30, 30, 30, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.check-teaser span {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.check-teaser strong {
  color: var(--heading-accent);
  font-size: 18px;
  line-height: 1.15;
}

.check-teaser small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--heading-accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.check-teaser:hover {
  border-color: rgba(31, 107, 79, 0.34);
  box-shadow: 0 24px 64px rgba(30, 30, 30, 0.1);
  transform: translateY(-2px);
}

.comparison-section {
  padding: 58px 24px 66px;
  background: var(--surface);
}

.comparison-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 800;
  line-height: 1.02;
}

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

.comparison-table {
  overflow: hidden;
  border: 1px solid rgba(30, 30, 30, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(30, 30, 30, 0.08);
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-head {
  background: var(--heading-accent);
  color: var(--white);
}

.comparison-head h3 {
  margin: 0;
  padding: 20px 24px;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.15;
}

.comparison-head h3 + h3 {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
}

.comparison-row + .comparison-row {
  border-top: 1px solid rgba(30, 30, 30, 0.08);
}

.comparison-cell {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 82px;
  margin: 0;
  padding: 18px 22px 18px 58px;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.34;
}

.comparison-cell + .comparison-cell {
  border-left: 1px solid rgba(30, 30, 30, 0.08);
}

.comparison-positive {
  background: rgba(31, 107, 79, 0.07);
  color: var(--text);
}

.comparison-negative {
  background: rgba(30, 30, 30, 0.025);
  color: var(--muted);
}

.comparison-cell::before {
  position: absolute;
  left: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.comparison-positive::before {
  content: "✓";
  background: var(--accent);
}

.comparison-negative::before {
  content: "×";
  background: #777777;
}

.process-section {
  padding: 58px 24px 66px;
  background: var(--white);
}

.process-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(5, minmax(88px, auto));
  gap: 14px;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: end;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(30, 30, 30, 0.08);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(30, 30, 30, 0.05);
}

.process-step::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.58) 72%),
    linear-gradient(90deg, rgba(247, 247, 245, 0.28), rgba(247, 247, 245, 0.04));
}

.process-cover {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.process-step::after {
  position: absolute;
  z-index: 4;
  border-top: 3px dashed rgba(27, 59, 48, 0.72);
  content: "";
  pointer-events: none;
  filter: drop-shadow(0 6px 12px rgba(27, 59, 48, 0.12));
}

.process-step:nth-child(odd):not(:last-child)::after {
  top: 50%;
  right: -19px;
  width: 24px;
}

.process-step:nth-child(even):not(:last-child)::after {
  bottom: -15px;
  left: -20px;
  width: 31px;
  transform: rotate(135deg);
  transform-origin: center;
}

.process-step span {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--heading-accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.process-step h3 {
  position: relative;
  z-index: 3;
  margin: 0;
  color: var(--text);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.24;
}

.reviews-section {
  padding: 58px 24px 66px;
  background: var(--surface);
}

.reviews-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.reviews-top {
  max-width: 780px;
}

.reviews-carousel-wrap {
  position: relative;
}

.carousel-button {
  position: absolute;
  top: 42%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(27, 59, 48, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  color: var(--heading-accent);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  opacity: 0.48;
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: opacity 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.carousel-button-prev {
  left: 14px;
}

.carousel-button-next {
  right: 14px;
}

.carousel-button:hover,
.carousel-button.is-pressed {
  background: var(--heading-accent);
  color: var(--white);
  opacity: 0.96;
  transform: translateY(-50%) scale(1.02);
}

.reviews-carousel {
  display: grid;
  grid-auto-columns: minmax(320px, calc((100% - 36px) / 3));
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(30, 30, 30, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(30, 30, 30, 0.08);
  scroll-snap-align: start;
}

.review-image {
  position: relative;
}

.review-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
  object-position: center;
}

.review-image span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(27, 59, 48, 0.9);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(16, 35, 29, 0.22);
}

.review-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.review-name {
  margin: 0;
  color: var(--heading-accent);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.review-story {
  flex: 1;
  min-height: 150px;
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.48;
}

.review-card dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

.review-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(30, 30, 30, 0.08);
}

.review-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.review-card dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(27, 59, 48, 0.24);
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--heading-accent);
}

.spotlight-section {
  padding: 58px 24px 66px;
  background: var(--white);
}

.spotlight-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 34px;
  width: min(100%, 1180px);
  min-height: 560px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 24%, rgba(31, 107, 79, 0.35), transparent 32%),
    linear-gradient(135deg, #10231d, #111716 72%);
  box-shadow: 0 30px 90px rgba(16, 35, 29, 0.22);
}

.spotlight-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.spotlight-content {
  position: relative;
  z-index: 2;
  padding: 54px;
}

.spotlight-kicker {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.spotlight-content h2 {
  max-width: 660px;
  margin: 0;
  color: var(--white);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.02;
}

.spotlight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 34px;
}

.spotlight-list p {
  position: relative;
  margin: 0;
  padding: 15px 16px 15px 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.28;
}

.spotlight-list p::before {
  position: absolute;
  top: 14px;
  left: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  content: "✓";
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  margin-top: 34px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.spotlight-cta span {
  font-size: 22px;
}

.spotlight-cta:hover {
  background: #18563f;
  box-shadow: 0 16px 40px rgba(31, 107, 79, 0.3);
  transform: translateY(-2px);
}

.spotlight-media {
  position: relative;
  z-index: 1;
  min-height: 100%;
}

.spotlight-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, #111716 0%, rgba(17, 23, 22, 0.18) 34%, transparent 72%);
  pointer-events: none;
}

.spotlight-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}

.story-section {
  padding: 58px 24px 66px;
  background: var(--white);
}

.story-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.story-label {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 9px 13px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--heading-accent);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 58px;
  align-items: start;
}

.story-heading h2 {
  position: sticky;
  top: 88px;
  margin: 0;
  color: var(--text);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.04;
}

.story-content {
  padding: 30px;
  border: 1px solid rgba(30, 30, 30, 0.08);
  border-radius: 8px;
  background: var(--surface);
}

.story-speech {
  position: relative;
  padding: 24px 24px 24px 58px;
  border: 1px solid rgba(27, 59, 48, 0.12);
  border-radius: 8px;
  background: var(--white);
}

.story-speech::before {
  position: absolute;
  top: 18px;
  left: 22px;
  content: "“";
  color: var(--heading-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

.story-speech p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.58;
}

.story-speech p + p {
  margin-top: 20px;
}

.story-content blockquote {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-left: 4px solid var(--heading-accent);
  border-radius: 8px;
  background: var(--white);
  color: var(--heading-accent);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  line-height: 1.32;
}

.lead-section {
  padding: 58px 24px 104px;
  background: var(--surface);
}

.lead-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 0.72fr);
  gap: 58px;
  align-items: center;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.lead-copy h2 {
  max-width: 680px;
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 800;
  line-height: 0.98;
}

.lead-inner .check-teaser {
  grid-column: 1 / -1;
  margin-top: -20px;
}

.check-teaser-dark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
    var(--heading-accent);
  color: var(--white);
}

.check-teaser-dark span,
.check-teaser-dark strong {
  color: var(--white);
}

.check-teaser-dark span {
  color: rgba(255, 255, 255, 0.72);
}

.check-teaser-dark small {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.lead-form {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(31, 107, 79, 0.5), transparent 34%),
    #10231d;
  box-shadow: 0 30px 90px rgba(16, 35, 29, 0.24);
}

.form-gridline {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.form-field,
.budget-field,
.form-submit,
.form-note,
.form-status {
  position: relative;
  z-index: 1;
}

.form-field {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.form-field span,
.budget-field legend {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 800;
}

.form-field input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  outline: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input::placeholder {
  color: rgba(102, 102, 102, 0.55);
}

.form-field input:focus {
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 4px rgba(31, 107, 79, 0.28);
}

.budget-field {
  display: grid;
  gap: 14px;
  margin: 26px 0 28px;
  padding: 0;
  border: 0;
}

.budget-field legend {
  margin-bottom: 2px;
}

.budget-field label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}

.budget-field input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--accent);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.form-submit:hover {
  background: #18563f;
  box-shadow: 0 16px 40px rgba(31, 107, 79, 0.32);
  transform: translateY(-2px);
}

.form-submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.form-note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}

.form-note span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
}

.form-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.44;
}

.form-status {
  min-height: 22px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.form-status.is-success {
  color: #d8fff0;
}

.form-status.is-error {
  color: #ffd9d9;
}

.ukraine-check-section {
  padding: 0 24px 70px;
  background: var(--surface);
}

.ukraine-check-section[hidden] {
  display: none;
}

.ukraine-check-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.ukraine-check-card {
  display: grid;
  gap: 24px;
  padding: 34px;
  border: 1px solid rgba(27, 59, 48, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(30, 30, 30, 0.08);
}

.check-copy {
  max-width: 800px;
}

.check-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1;
}

.check-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  line-height: 1.5;
}

.check-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.check-points div {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 148px;
  padding: 28px 34px;
  border: 1px solid rgba(30, 30, 30, 0.08);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(30, 30, 30, 0.06);
}

.check-points div::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.74) 42%, rgba(255, 255, 255, 0.1) 100%),
    linear-gradient(180deg, rgba(247, 247, 245, 0.2), rgba(247, 247, 245, 0.52));
}

.check-points img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
}

.check-points span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--heading-accent);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
}

.check-points p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.1;
}

.check-result {
  margin: 0;
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: rgba(31, 107, 79, 0.08);
  color: var(--heading-accent);
  font-size: clamp(19px, 2.4vw, 26px);
  font-weight: 800;
  line-height: 1.35;
}

.check-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.check-price {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
}

.check-limits {
  max-width: 700px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-grid;
  gap: 3px;
  min-width: 184px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--heading-accent);
  color: var(--white);
  box-shadow: 0 18px 54px rgba(16, 35, 29, 0.26);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.floating-cta span {
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.floating-cta small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.floating-cta:hover {
  background: var(--accent);
  box-shadow: 0 20px 58px rgba(31, 107, 79, 0.32);
  transform: translateY(-2px);
}

.lead-popup {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 29;
  width: min(360px, calc(100vw - 44px));
  padding: 22px;
  border: 1px solid rgba(27, 59, 48, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  box-shadow: 0 24px 80px rgba(16, 35, 29, 0.18);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.lead-popup[hidden] {
  display: none;
}

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

.lead-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(30, 30, 30, 0.08);
  border-radius: 6px;
  background: var(--surface);
  color: var(--heading-accent);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.lead-popup-title {
  max-width: 280px;
  margin: 0;
  color: var(--heading-accent);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.lead-popup-text {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.lead-popup-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: var(--heading-accent);
  color: var(--white);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.lead-popup-action:hover {
  background: var(--accent);
  box-shadow: 0 14px 34px rgba(31, 107, 79, 0.24);
  transform: translateY(-2px);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  isolation: isolate;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, rgba(31, 107, 79, 0.02), rgba(31, 107, 79, 0.08));
  pointer-events: none;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 68% 45%;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero-media.is-visible {
  transition-delay: 120ms;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .site-nav {
    gap: 18px;
    font-size: 13px;
  }

  .hero {
    min-height: 86vh;
    padding-top: 112px;
  }

  .hero-media {
    min-height: 100%;
  }

  .hero-title {
    max-width: 720px;
    padding-top: 180px;
  }

  .hero-badges {
    top: 104px;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 0;
    width: 100%;
    grid-template-columns: 1fr;
    align-items: center;
    min-height: 44px;
    padding: 3px 20px;
  }

  .brand {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 16px;
    gap: 2px;
    padding-right: 54px;
  }

  .brand small {
    max-width: 220px;
    font-size: 10px;
    line-height: 1.1;
  }

  .menu-toggle {
    width: 32px;
    height: 32px;
    min-height: 32px;
  }

  .phone-link {
    position: absolute;
    top: 50%;
    right: 62px;
    width: 32px;
    height: 32px;
    min-height: 32px;
    margin-right: 0;
    transform: translateY(-50%);
  }

  .phone-link:hover {
    transform: translateY(-50%);
  }

  .phone-link svg {
    width: 16px;
    height: 16px;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: 0;
    transform: translateY(-50%);
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    border-top: 1px solid rgba(30, 30, 30, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 54px rgba(30, 30, 30, 0.12);
    backdrop-filter: blur(18px);
    transition: max-height 220ms ease, padding-top 220ms ease, padding-bottom 220ms ease;
  }

  .site-nav a {
    display: grid;
    gap: 6px;
    padding: 15px 0;
    border-top: 1px solid var(--line);
    color: var(--text);
    font-size: 18px;
    line-height: 1.1;
  }

  .site-nav a:first-child {
    border-top: 0;
  }

  .site-nav small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
  }

  .menu-open .site-nav {
    max-height: 420px;
    padding-top: 14px;
    padding-bottom: 18px;
  }

  .hero {
    min-height: 72svh;
    align-items: center;
    padding: 54px 26px 34px;
    background: var(--surface);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(247, 247, 245, 0.12) 0%, rgba(247, 247, 245, 0.05) 28%, rgba(247, 247, 245, 0.22) 58%, rgba(247, 247, 245, 0.52) 100%),
      linear-gradient(90deg, rgba(247, 247, 245, 0.42) 0%, rgba(247, 247, 245, 0.08) 58%);
  }

  .hero-media {
    min-height: 100%;
    border-radius: 0;
  }

  .hero-media img {
    object-position: 50% 18%;
  }

  .hero-title {
    padding-top: 47svh;
    max-width: 660px;
  }

  .hero-badges {
    top: 78px;
    left: 26px;
    max-width: calc(100vw - 52px);
    gap: 8px;
  }

  .hero-badges > .hero-eyebrow:not(.hero-rank) {
    display: none;
  }

  .hero-rank {
    justify-content: center;
    align-items: center;
    max-width: 260px;
    padding: 9px 11px;
    font-size: 10px;
    line-height: 1.05;
    letter-spacing: 0;
    text-align: center;
  }

  .hero-rank span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: none;
  }

  .hero-mobile-stats {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: min(310px, calc(100vw - 52px));
    margin: 0;
    padding: 8px 11px;
    border-radius: 6px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    box-shadow: 0 12px 32px rgba(31, 107, 79, 0.18);
  }

  h1 {
    font-size: clamp(35px, 10vw, 52px);
    line-height: 1;
  }

  .hero-details {
    padding: 32px 26px 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-note,
  .expert-quote {
    font-size: 16px;
  }

  .expert-quote {
    padding: 16px 18px 16px 20px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .trust-markers {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-markers span {
    min-height: 42px;
  }

  .about-expert {
    padding: 38px 26px 46px;
  }

  .about-expert-intro {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
  }

  .about-expert-intro img {
    width: 112px;
  }

  .about-photo-block {
    gap: 12px;
  }

  .section-kicker {
    margin-bottom: 11px;
    font-size: 12px;
  }

  .about-expert h2 {
    font-size: clamp(29px, 8vw, 38px);
  }

  .about-lead {
    margin-top: 12px;
    font-size: 16px;
  }

  .about-copy {
    margin-top: 32px;
  }

  .about-copy p {
    font-size: 17px;
  }

  .about-copy p + p {
    margin-top: 18px;
  }

  .expert-signature {
    margin-top: 28px;
  }

  .about-statement {
    margin-top: 34px;
    padding: 56px 22px 26px;
  }

  .about-statement span {
    top: 18px;
    left: 22px;
    font-size: 58px;
  }

  .about-statement p {
    font-size: 24px;
  }

  .check-teaser {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .check-teaser small {
    width: 100%;
  }

  .comparison-section {
    padding: 38px 26px 46px;
  }

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

  .section-heading h2 {
    font-size: clamp(31px, 8.6vw, 42px);
  }

  .comparison-head h3 {
    padding: 16px 14px;
    font-size: 16px;
  }

  .comparison-cell {
    min-height: 86px;
    padding: 14px 12px 14px 40px;
    font-size: 13px;
    line-height: 1.3;
  }

  .comparison-cell::before {
    left: 12px;
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .process-section {
    padding: 38px 26px 46px;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(5, auto);
    gap: 10px;
  }

  .process-step {
    grid-template-columns: 1fr;
    align-content: space-between;
    gap: 42px;
    min-height: 154px;
    padding: 14px;
    align-items: start;
  }

  .process-step::after {
    border-top-width: 3px;
  }

  .process-step:nth-child(odd):not(:last-child)::after {
    right: -15px;
    width: 20px;
  }

  .process-step:nth-child(even):not(:last-child)::after {
    bottom: -12px;
    left: -17px;
    width: 25px;
  }

  .process-step span {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .process-step h3 {
    font-size: 14px;
    line-height: 1.25;
  }

  .reviews-section {
    padding: 38px 26px 46px;
  }

  .reviews-top {
    max-width: none;
  }

  .carousel-button {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }

  .reviews-carousel {
    grid-auto-columns: minmax(280px, 88%);
    gap: 12px;
    margin-inline: -4px;
    padding-inline: 4px;
  }

  .review-content {
    padding: 18px;
  }

  .review-story {
    min-height: 134px;
  }

  .spotlight-section {
    padding: 38px 26px 46px;
  }

  .spotlight-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .spotlight-content {
    margin-top: -230px;
    padding: 28px;
  }

  .spotlight-content h2 {
    font-size: clamp(31px, 8.6vw, 44px);
  }

  .spotlight-list {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .spotlight-media {
    min-height: 360px;
    order: -1;
  }

  .spotlight-media::before {
    background: linear-gradient(180deg, transparent 0%, #111716 100%);
  }

  .story-section {
    padding: 38px 26px 46px;
  }

  .story-label {
    margin-bottom: 18px;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .story-heading h2 {
    position: static;
    font-size: clamp(31px, 8.6vw, 42px);
  }

  .story-content {
    padding: 22px;
  }

  .story-speech {
    padding: 20px 18px 20px 48px;
  }

  .story-speech::before {
    left: 18px;
    font-size: 38px;
  }

  .story-speech p {
    font-size: 15px;
  }

  .story-content blockquote {
    padding: 18px 20px;
    font-size: 18px;
  }

  .lead-section {
    padding: 38px 26px 108px;
  }

  .lead-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lead-copy h2 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .lead-inner .check-teaser {
    margin-top: -8px;
  }

  .lead-form {
    padding: 24px;
  }

  .ukraine-check-section {
    padding: 0 26px 54px;
  }

  .ukraine-check-card {
    gap: 20px;
    padding: 22px;
  }

  .check-points {
    grid-template-columns: 1fr;
  }

  .check-points div {
    min-height: 128px;
    padding: 22px;
  }

  .check-points p {
    font-size: clamp(20px, 5vw, 28px);
  }

  .check-footer {
    grid-template-columns: 1fr;
  }

  .check-footer .button {
    width: 100%;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
    min-width: 156px;
    padding: 13px 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 71svh;
    padding-inline: 26px;
  }

  .hero-media {
    min-height: 100%;
  }

  .hero-title {
    padding-top: 47svh;
  }

  .hero-badges {
    left: 26px;
  }

  .hero-rank {
    max-width: min(260px, calc(100vw - 52px));
    font-size: 10px;
    line-height: 1.05;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .hero-details {
    padding-inline: 26px;
  }

  .comparison-section {
    padding-inline: 12px;
  }

  .comparison-head h3 {
    padding: 14px 10px;
    font-size: 14px;
  }

  .comparison-cell {
    padding: 12px 10px 12px 34px;
    font-size: 12px;
  }

  .comparison-cell::before {
    left: 9px;
  }

  .process-section {
    padding-inline: 12px;
  }

  .process-grid {
    gap: 8px;
  }

  .process-step {
    min-height: 142px;
    padding: 12px;
  }

  .process-step:nth-child(odd):not(:last-child)::after {
    right: -13px;
    width: 18px;
  }

  .process-step:nth-child(even):not(:last-child)::after {
    bottom: -11px;
    left: -15px;
    width: 22px;
  }

  .process-step h3 {
    font-size: 13px;
  }

  .reviews-section {
    padding-inline: 12px;
  }

  .spotlight-section {
    padding-inline: 12px;
  }

  .spotlight-content {
    margin-top: -210px;
    padding: 22px;
  }

  .spotlight-media {
    min-height: 320px;
  }

  .story-section {
    padding-inline: 12px;
  }

  .lead-section {
    padding-inline: 12px;
  }

  .lead-form {
    padding: 20px;
  }

  .ukraine-check-section {
    padding-inline: 12px;
  }

  .ukraine-check-card {
    padding: 18px;
  }

  .check-points {
    grid-template-columns: 1fr;
  }

  .check-points div {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    min-height: 112px;
    padding: 18px;
  }

  .check-points span {
    width: 44px;
    height: 44px;
    font-size: 13px;
  }

  .check-points p {
    font-size: 20px;
  }

  .floating-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-width: 0;
  }

  .lead-popup {
    right: 12px;
    bottom: 84px;
    left: 12px;
    width: auto;
    padding: 18px;
  }

  .lead-popup-close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
    border-color: rgba(27, 59, 48, 0.22);
    background: var(--white);
    color: var(--heading-accent);
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 10px 26px rgba(30, 30, 30, 0.12);
  }

  .floating-cta small {
    text-align: right;
  }
}
