@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("/assets/fonts/fraunces-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}

:root {
  --bg: #f6f0e4;
  --paper: #fffaf1;
  --paper-2: #f3ebdd;
  --olive: #728634;
  --olive-dark: #475420;
  --olive-soft: #d9e3ba;
  --ink: #213126;
  --muted: #607062;
  --line: rgba(33, 49, 38, 0.1);
  --line-strong: rgba(33, 49, 38, 0.18);
  --shadow: 0 30px 70px rgba(62, 74, 39, 0.12);
  --shadow-soft: 0 18px 40px rgba(33, 49, 38, 0.08);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top center, rgba(217, 227, 186, 0.55), transparent 26%),
    radial-gradient(circle at bottom left, rgba(217, 227, 186, 0.35), transparent 28%),
    linear-gradient(180deg, #fbf6ed 0%, #f6f0e4 46%, #efe7d6 100%);
  line-height: 1.6;
}

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

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

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

section[id] {
  scroll-margin-top: 110px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(251, 246, 237, 0.82);
  border-bottom: 1px solid rgba(33, 49, 38, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
  min-height: 90px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, #f4ebd8, #dbe5be);
  border: 1px solid rgba(114, 134, 52, 0.24);
  color: var(--olive-dark);
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.brand-copy span {
  font-size: 0.82rem;
  color: var(--muted);
}

.brand-logo {
  width: auto;
  height: 42px;
}

.footer-logo {
  width: auto;
  height: 34px;
}

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

.main-nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}

.mobile-nav-meta {
  display: none;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.nav-cta,
.button-primary {
  background: var(--olive);
  color: #fffdf8 !important;
  box-shadow: 0 18px 30px rgba(114, 134, 52, 0.18);
}

.button-secondary,
.header-phone {
  background: rgba(255, 250, 241, 0.92);
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.header-phone {
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.header-phone:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  margin-left: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.92);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

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

.hero,
.showcase,
.photo-strip,
.section {
  padding: 32px 0 88px;
}

.trust-metrics {
  padding: 0 0 52px;
}

.press-strip {
  padding: 0 0 44px;
}

.hero-shell,
.final-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 470px);
  gap: 28px;
  padding: 36px;
  border-radius: 42px;
  background:
    radial-gradient(circle at top center, rgba(217, 227, 186, 0.42), transparent 36%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(248, 242, 232, 0.96));
  border: 1px solid rgba(33, 49, 38, 0.06);
  box-shadow: var(--shadow);
}

.trust-metrics-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(280px, 400px);
  align-items: stretch;
  overflow: hidden;
  border-radius: 0;
  background: #d4c1a6;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow-soft);
}

.press-strip-shell {
  padding: 28px 28px 24px;
  border-radius: 28px;
  background: rgba(255, 250, 241, 0.92);
  border: 1px solid rgba(33, 49, 38, 0.08);
  box-shadow: var(--shadow-soft);
}

.press-label {
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.press-logos {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr 1.05fr 1.15fr;
  align-items: center;
  gap: 30px;
}

.press-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  text-align: center;
  min-width: 0;
}

.press-logo-orf {
  flex-direction: column;
}

.orf-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 56px;
  padding: 0 18px;
  background: #ef2a2b;
  color: #fff;
  font-size: 2.55rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.press-logo-presse {
  color: #1f4684;
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 2.4vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.press-logo-apa {
  position: relative;
  font-size: clamp(1.9rem, 2.4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #111;
  padding: 0 12px 8px;
}

.press-logo-apa::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 8px;
  height: 7px;
  background: #ef2a2b;
}

.press-logo-wz {
  gap: 10px;
  color: #222;
  font-family: "Fraunces", serif;
  font-size: clamp(1.55rem, 2vw, 2.5rem);
  line-height: 0.98;
}

.press-logo-wz i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: #ef3351;
  display: inline-block;
}

.press-logo-standard {
  color: #e4007c;
  font-size: clamp(1.45rem, 1.9vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
  position: relative;
  white-space: nowrap;
}

.press-logo-standard::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -12px;
  height: 5px;
  background: #e4007c;
}

.trust-metric,
.review-badge {
  min-height: 182px;
}

.trust-metric {
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 28px 24px;
  text-align: center;
  color: #fffdf7;
}

.trust-metric + .trust-metric,
.review-badge {
  position: relative;
}

.trust-metric + .trust-metric::before,
.review-badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 1px;
  background: rgba(255, 255, 255, 0.78);
}

.trust-metric strong {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.trust-metric span {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.review-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px 28px;
}

.review-badge-mark {
  flex-shrink: 0;
}

.google-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 20px rgba(71, 84, 32, 0.12);
  font-size: 2.6rem;
  font-weight: 800;
  color: #4285f4;
}

.review-badge-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.review-badge-copy strong {
  font-size: 1.55rem;
  color: #fffdf7;
  line-height: 1.05;
}

.review-badge-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fffdf7;
  font-weight: 800;
}

.review-badge-rating span:first-child {
  font-size: 1.8rem;
}

.stars {
  color: #f39a22;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.eyebrow,
.form-progress-label,
.form-progress-count,
.step-eyebrow,
.example-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow,
.form-progress-label,
.step-eyebrow,
.example-label {
  color: var(--olive-dark);
}

.form-progress-count {
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.04em;
}

h1,
h2 {
  font-family: "Fraunces", serif;
}

h1 {
  font-size: clamp(3rem, 5.6vw, 5.4rem);
  line-height: 0.95;
  max-width: 11ch;
  margin-top: 18px;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.42rem;
  line-height: 1.18;
}

.hero-text,
.section-head p,
.showcase-copy p,
.benefit-card p,
.step-card p,
.support-copy p,
.faq-list p,
.form-step > p,
.form-success p,
.final-card p {
  color: var(--muted);
}

.hero-text {
  max-width: 62ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.hero-actions,
.step-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.hero-benefits,
.hero-stats,
.benefit-grid,
.steps-grid,
.showcase-grid,
.support-grid,
.faq-layout,
.footer-inner,
.value-list,
.form-grid,
.choice-grid,
.example-stats {
  display: grid;
  gap: 18px;
}

.hero-benefits {
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-benefits div,
.hero-stats article,
.benefit-card,
.step-card,
.value-list div,
.example-card,
.form-progress,
.hero-panel,
.choice-card,
.slider-card,
input[type="range"],
.field input,
.field textarea,
.form-summary,
.form-success,
.support-image,
.support-copy,
.faq-list details,
.final-card {
  border: 1px solid rgba(33, 49, 38, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-benefits div,
.hero-stats article,
.benefit-card,
.value-list div {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.88);
}

.hero-benefits strong,
.hero-stats strong,
.value-list strong,
.benefit-card h3 {
  display: block;
}

.hero-benefits span,
.hero-stats span,
.value-list span {
  margin-top: 6px;
  display: block;
  color: var(--muted);
}

.hero-stats {
  margin-top: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-panel {
  align-self: start;
  padding: 22px;
  border-radius: 32px;
  background: rgba(255, 250, 241, 0.98);
}

.form-progress {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.94);
}

.form-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.form-progress-track {
  margin-top: 12px;
  height: 14px;
  border-radius: 999px;
  background: rgba(33, 49, 38, 0.08);
  overflow: hidden;
}

.form-progress-bar {
  display: block;
  height: 100%;
  width: 25%;
  border-radius: inherit;
  background: linear-gradient(90deg, #728634, #93ac49);
  transition: width 0.24s ease;
}

.form-step h3,
.form-success h3 {
  margin-top: 14px;
}

.choice-grid {
  grid-template-columns: 1fr;
  margin-top: 22px;
}

.choice-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.94);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.choice-card:hover {
  transform: translateY(-2px);
  border-color: rgba(114, 134, 52, 0.28);
}

.choice-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.choice-card span {
  font-size: 1rem;
  font-weight: 800;
}

.choice-card small {
  color: var(--muted);
}

.choice-card:has(input:checked) {
  background: linear-gradient(180deg, rgba(217, 227, 186, 0.84), rgba(255, 250, 241, 0.95));
  border-color: rgba(114, 134, 52, 0.34);
}

.slider-group {
  margin-top: 20px;
}

.slider-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px 14px;
  border-radius: 22px 22px 0 0;
  background: rgba(255, 250, 241, 0.94);
  border-bottom: 0;
}

.slider-copy {
  display: grid;
  gap: 4px;
}

.slider-copy small {
  color: var(--muted);
}

.slider-value {
  color: var(--olive-dark);
  white-space: nowrap;
}

input[type="range"] {
  width: 100%;
  margin: 0;
  appearance: none;
  height: 26px;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(90deg, rgba(114, 134, 52, 0.28), rgba(217, 227, 186, 0.85));
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 4px solid #fffaf1;
  background: var(--olive);
  box-shadow: 0 10px 20px rgba(71, 84, 32, 0.16);
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 4px solid #fffaf1;
  background: var(--olive);
  box-shadow: 0 10px 20px rgba(71, 84, 32, 0.16);
  cursor: pointer;
}

.step-actions {
  margin-top: 22px;
  justify-content: space-between;
}

.step-actions .button {
  min-width: 144px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 250, 241, 0.95);
  border: 1px solid var(--line);
  color: var(--ink);
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(114, 134, 52, 0.12);
  border-color: rgba(114, 134, 52, 0.34);
}

.field-full {
  grid-column: 1 / -1;
}

.form-summary {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(243, 235, 221, 0.72);
}

.form-summary h4 {
  margin-bottom: 12px;
}

.summary-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.summary-chips span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.94);
  font-size: 0.92rem;
  font-weight: 700;
}

.consent {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
}

.consent input {
  margin-top: 4px;
}

.form-success {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.95);
}

.showcase-grid,
.photo-grid,
.case-grid,
.support-grid,
.faq-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

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

.case-section {
  padding-top: 8px;
}

.case-section-head {
  max-width: none;
  margin-bottom: 28px;
  text-align: center;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  align-items: start;
  gap: 18px;
}

.case-card {
  overflow: hidden;
  border-radius: 0;
  background: #fff;
  border: 0;
  box-shadow: none;
}

.case-card img {
  width: 100%;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
  display: block;
}

.case-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 12px 16px;
  background: #f79a14;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 250, 241, 0.92);
  border: 1px solid rgba(33, 49, 38, 0.08);
  box-shadow: var(--shadow-soft);
}

.photo-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.photo-card figcaption {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.photo-card strong {
  font-size: 1rem;
}

.photo-card span {
  color: var(--muted);
}

.showcase-visual {
  position: relative;
  min-height: 620px;
}

.showcase-visual img,
.support-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-visual img {
  min-height: 620px;
  border-radius: 36px;
}

.example-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(410px, calc(100% - 48px));
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 250, 241, 0.96);
}

.example-card h3 {
  margin-top: 10px;
}

.example-stats {
  grid-template-columns: 1fr;
  margin-top: 18px;
}

.example-stats div {
  padding-top: 12px;
  border-top: 1px solid rgba(33, 49, 38, 0.08);
}

.example-stats small {
  display: block;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 700;
}

.example-stats strong {
  font-size: 1.08rem;
}

.showcase-copy {
  padding-right: 12px;
}

.value-list {
  margin-top: 24px;
}

.section-soft {
  background: linear-gradient(180deg, rgba(217, 227, 186, 0.24), rgba(255, 255, 255, 0));
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head.compact {
  max-width: 640px;
}

.section-head.left {
  margin-bottom: 0;
}

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

.benefit-card,
.step-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 250, 241, 0.92);
}

.benefit-card span,
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #dbe5be, #c9d798);
  color: var(--olive-dark);
  font-size: 1rem;
  font-weight: 800;
}

.support-image,
.support-copy {
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 250, 241, 0.92);
}

.support-image {
  min-height: 560px;
}

.support-copy {
  padding: 34px;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 600;
}

.check-list li + li {
  margin-top: 12px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--olive);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 0 22px;
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.92);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-weight: 800;
}

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

.faq-list details p {
  margin: 0;
  padding: 0 0 22px;
}

.final-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.final-actions {
  justify-content: flex-end;
}

.site-footer {
  padding: 20px 0 42px;
}

.footer-inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(33, 49, 38, 0.08);
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.footer-inner nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-inner nav a {
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .hero-shell,
  .showcase-grid,
  .photo-grid,
  .support-grid,
  .faq-layout,
  .final-card {
    grid-template-columns: 1fr;
  }

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

  .press-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .hero-copy,
  .showcase-copy {
    padding-right: 0;
  }

  .showcase-visual,
  .support-image {
    min-height: 420px;
  }
}

@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-phone {
    display: none;
  }

  .hero-benefits,
  .hero-stats,
  .benefit-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-metrics-shell {
    grid-template-columns: 1fr;
  }

  .press-logos {
    grid-template-columns: 1fr;
  }

  .trust-metric + .trust-metric::before,
  .review-badge::before {
    left: 24px;
    right: 24px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }
}

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

  .site-header {
    background: rgba(251, 246, 237, 0.95);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 82px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    display: grid;
    gap: 8px;
    justify-content: stretch;
    padding: 14px;
    background: rgba(255, 250, 241, 0.98);
    border: 1px solid rgba(33, 49, 38, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a,
  .nav-cta {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero,
  .showcase,
  .photo-strip,
  .section {
    padding: 20px 0 68px;
  }

  .trust-metrics {
    padding-bottom: 40px;
  }

  .press-strip {
    padding-bottom: 34px;
  }

  .hero-shell,
  .final-card {
    padding: 22px;
    border-radius: 30px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-actions,
  .step-actions,
  .final-actions,
  .consent,
  .slider-card,
  .form-progress-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .button,
  .step-actions .button,
  .final-actions .button {
    width: 100%;
  }

  .form-grid,
  .case-grid,
  .showcase-grid,
  .support-grid,
  .faq-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .support-copy,
  .benefit-card,
  .step-card,
  .example-card {
    padding: 20px;
  }

  .press-strip-shell {
    padding: 22px 20px 18px;
  }

  .press-logo {
    min-height: 72px;
  }

  .orf-box {
    min-width: 150px;
    min-height: 48px;
    font-size: 2.2rem;
  }

  .press-logo-standard {
    white-space: normal;
  }

  .trust-metric,
  .review-badge {
    min-height: auto;
    padding: 24px 20px;
  }

  .review-badge {
    justify-content: flex-start;
  }

  .review-badge-copy strong {
    font-size: 1.2rem;
  }

  .review-badge-rating {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .showcase-visual img {
    min-height: 360px;
  }

  .example-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .footer-inner nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* Fullscreen hero override for the Mietfuchs-inspired intake flow */
.site-header {
  display: none;
}

.hero.hero-fullscreen {
  position: relative;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  color: #fff;
}

.hero-background,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    radial-gradient(circle at 18% 28%, rgba(193, 217, 143, 0.18), transparent 22%),
    linear-gradient(110deg, rgba(8, 14, 20, 0.78) 0%, rgba(13, 20, 28, 0.56) 38%, rgba(13, 20, 28, 0.3) 62%, rgba(10, 16, 20, 0.68) 100%);
  backdrop-filter: blur(2px);
}

.hero-stage {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  align-content: space-between;
  padding-top: 28px;
  padding-bottom: 34px;
}

.hero-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 4px;
}

.hero-brandline {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-site-logo-link {
  display: inline-flex;
  align-items: center;
  max-width: min(360px, 62vw);
}

.hero-site-logo {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.16))
    drop-shadow(0 10px 24px rgba(0, 0, 0, 0.18));
}

.hero-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.hero-logos img {
  width: auto;
  height: 24px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.35) contrast(0.8);
  opacity: 0.92;
}

.hero-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fffdf8;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  backdrop-filter: blur(14px);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 530px);
  align-items: end;
  gap: 36px;
  margin-top: 38px;
}

.hero-copy-column {
  display: grid;
  gap: 28px;
  align-content: start;
}

.hero-intro {
  width: min(760px, 100%);
  text-align: left;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(194, 220, 140, 0.18);
  border: 1px solid rgba(194, 220, 140, 0.26);
  color: #e7f2c8;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-intro h1 {
  max-width: 10ch;
  margin: 16px 0 0;
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: clamp(4rem, 6vw, 6.2rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.hero-intro h1 span {
  display: block;
  margin-top: 0.12em;
  max-width: 8.2ch;
  color: #66ca41;
  letter-spacing: -0.05em;
}

.hero-intro p {
  max-width: 31ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.18rem, 1.9vw, 1.58rem);
  line-height: 1.35;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
}

.hero-proof-card {
  display: grid;
  gap: 8px;
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 46px rgba(7, 10, 15, 0.2);
}

.hero-proof-card strong {
  font-size: 1.22rem;
  line-height: 1.05;
  color: #fffdf8;
}

.hero-proof-card span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  line-height: 1.5;
}

.hero-benefit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 760px;
}

.hero-benefit-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-form-panel {
  align-self: stretch;
  padding: 24px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.92), rgba(247, 241, 230, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 34px 80px rgba(8, 10, 15, 0.24);
  color: #213126;
}

.hero-form-panel-head {
  display: grid;
  gap: 8px;
  text-align: left;
}

.hero-form-panel-head p {
  margin: 0;
  color: var(--olive-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-form-panel-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 0.98;
}

.hero-form-panel-head span {
  color: var(--muted);
  font-size: 1rem;
}

.hero-form-shell {
  width: 100%;
  margin-top: 18px;
}

.hero-stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--step-count, 5), minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: 0 0 22px;
  padding-top: 10px;
  overflow: hidden;
}

.hero-stepper-line,
.hero-stepper-fill {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 24px;
  height: 3px;
  border-radius: 999px;
}

.hero-stepper-line {
  background: rgba(33, 49, 38, 0.12);
}

.hero-stepper-fill {
  right: 24px;
  background: linear-gradient(90deg, #6f8334, #9dbd4e);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.24s ease;
}

.hero-stepper-item {
  position: relative;
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 8px;
  color: var(--ink);
  text-transform: uppercase;
  font-weight: 700;
  cursor: default;
}

.hero-stepper-item strong {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fffaf1;
  border: 1px solid rgba(33, 49, 38, 0.1);
  color: #213126;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero-stepper-item span {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1;
}

.hero-stepper-item.is-active strong,
.hero-stepper-item.is-complete strong {
  background: #728634;
  border-color: #728634;
  color: #fffdf8;
}

.hero-stepper-item.is-active strong {
  transform: scale(1.03);
}

.hero-stepper-item.is-clickable {
  cursor: pointer;
}

.hero-stepper-item.is-clickable strong,
.hero-stepper-item.is-clickable span {
  transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.hero-stepper-item.is-clickable:hover strong,
.hero-stepper-item.is-clickable:focus-visible strong {
  transform: translateY(-1px);
  border-color: rgba(114, 134, 52, 0.5);
}

.hero-stepper-item.is-clickable:hover span,
.hero-stepper-item.is-clickable:focus-visible span {
  color: #213126;
}

.multi-step-form.hero-form {
  width: 100%;
}

.hero-form-shell {
  width: 100%;
  min-height: 540px;
  display: grid;
  align-content: start;
}

.form-step,
.form-success {
  width: 100%;
}

.form-step[hidden],
.form-success[hidden] {
  display: none !important;
}

.hero-form-fields {
  width: 100%;
  display: grid;
  gap: 14px;
  margin: 0;
}

.hero-form-fields input {
  width: 100%;
  min-height: 60px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(33, 49, 38, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: #213126;
  font-size: 1.04rem;
  box-shadow: 0 16px 32px rgba(31, 38, 29, 0.08);
}

.hero-form-fields input::placeholder {
  color: #8a928a;
}

.hero-form-fields input:focus {
  outline: 3px solid rgba(114, 134, 52, 0.16);
}

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

.hero-form-fields-contact input:last-child {
  grid-column: 1 / -1;
}

.hero-form-actions {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  margin: 18px 0 0;
}

.hero-form-actions:has(.hero-back-button):not(:has(.hero-next-button)) .hero-back-button {
  width: 100%;
}

.hero-next-button,
.hero-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 24px;
  border-radius: 18px;
  border: 0;
  font-size: 1.05rem;
  font-weight: 700;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
  cursor: pointer;
}

.hero-next-button {
  width: 100%;
  background: linear-gradient(135deg, #728634, #91ad43);
  color: #fff;
  box-shadow: 0 20px 40px rgba(114, 134, 52, 0.24);
}

.hero-back-button {
  min-width: 180px;
  background: rgba(243, 235, 221, 0.84);
  color: #1f2a22;
}

.hero-next-button:hover,
.hero-back-button:hover {
  transform: translateY(-1px);
}

.hero-choice-grid {
  width: 100%;
  display: grid;
  gap: 16px;
  margin: 0;
  padding-bottom: 18px;
  justify-content: center;
}

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

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

.hero-choice-tile {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 22px 18px 14px;
  min-height: 230px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  cursor: pointer;
  border: 1px solid rgba(33, 49, 38, 0.08);
  box-shadow: 0 16px 32px rgba(31, 38, 29, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-choice-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px rgba(31, 38, 29, 0.12);
}

.hero-choice-tile input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.hero-choice-tile .choice-mark {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(114, 134, 52, 0.28);
  background: transparent;
}

.hero-choice-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-top: 4px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(217, 227, 186, 0.48), rgba(255, 250, 241, 0.8));
  font-size: 2.6rem;
  line-height: 1;
}

.hero-choice-tile strong {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1;
  text-align: center;
}

.hero-choice-tile small {
  display: none;
}

.hero-choice-tile:has(input:checked) {
  outline: 3px solid rgba(114, 134, 52, 0.76);
  transform: translateY(-3px);
}

.hero-choice-tile:has(input:checked) .choice-mark {
  background: #728634;
  border-color: #728634;
}

.hero-choice-stack {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  margin-top: 12px;
}

.hero-choice-stack strong {
  font-size: 1.02rem;
}

.hero-choice-stack b {
  font-size: clamp(2.1rem, 3vw, 2.9rem);
  line-height: 0.95;
  font-weight: 800;
}

.accent-green {
  color: #96d66a;
}

.accent-blue {
  color: #87aef5;
}

.hero-choice-tile-compact {
  min-height: auto;
  gap: 0;
  padding: 12px;
}

.hero-building-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  padding: 18px 18px 16px;
  border-radius: 18px;
  isolation: isolate;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  background-position: center;
  background-size: cover;
}

.hero-building-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(37, 85, 34, 0.18) 0%, rgba(37, 85, 34, 0.38) 42%, rgba(37, 85, 34, 0.82) 100%);
}

.building-neubau {
  background-image: url("/assets/building-types/neubau.webp");
}

.building-altbau {
  background-image: url("/assets/building-types/altbau.webp");
}

.building-gemeinde {
  background-image: url("/assets/building-types/gemeinde.webp");
}

.building-unknown {
  background-image: url("/assets/building-types/weiss-nicht.webp");
}

.hero-choice-tile-compact .choice-mark {
  display: none;
}

.hero-choice-tile-compact small {
  display: none;
}

.hero-choice-tile-compact:has(input:checked) {
  outline: 3px solid rgba(114, 134, 52, 0.92);
}

.hero-choice-tile-compact:has(input:checked) .hero-building-card::before {
  background:
    linear-gradient(180deg, rgba(54, 106, 41, 0.2) 0%, rgba(54, 106, 41, 0.42) 40%, rgba(76, 137, 52, 0.9) 100%);
}

.hero-consent {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  text-align: left;
}

.hero-consent input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
}

.hero-progress-bottom {
  width: 100%;
  height: 10px;
  margin: 20px 0 0;
  border-radius: 999px;
  background: rgba(33, 49, 38, 0.08);
  overflow: hidden;
  box-shadow: none;
}

.hero-progress-bottom span {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, #728634, #9dbd4e);
  transform-origin: left center;
  transform: scaleX(0.2);
  transition: transform 0.24s ease;
}

.form-success {
  width: 100%;
  margin: 0;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  color: #213126;
  text-align: left;
}

.form-success h3,
.form-success p {
  color: #213126;
}

@media (max-width: 1200px) {
  .hero-intro {
    margin-top: 40px;
  }

  .hero-intro h1 {
    font-size: clamp(3.6rem, 8vw, 6rem);
  }

  .hero-intro p {
    font-size: clamp(1.55rem, 3vw, 2.5rem);
  }

  .hero-choice-grid-four {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 860px) {
  .hero-stage {
    min-height: auto;
    padding-top: 22px;
    padding-bottom: 32px;
  }

  .hero-logos img {
    height: 26px;
  }

  .hero-intro {
    margin-top: 30px;
  }

  .hero-stepper {
    width: 100%;
    margin-bottom: 22px;
  }

  .hero-stepper-item span {
    font-size: 0.78rem;
  }

  .hero-form-fields,
  .hero-progress-bottom,
  .hero-form-actions,
  .hero-choice-grid,
  .hero-consent {
    width: 100%;
  }

  .hero-form-fields-contact,
  .hero-choice-grid-two,
  .hero-choice-grid-four {
    grid-template-columns: 1fr;
  }

  .hero-choice-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-choice-tile {
    min-height: 220px;
  }

  .hero-choice-tile-compact {
    padding: 8px;
    border-radius: 18px;
  }

  .hero-building-card {
    aspect-ratio: 1 / 1;
    padding: 12px;
    border-radius: 14px;
    font-size: 0.98rem;
    line-height: 1.05;
  }

  .hero-form-actions {
    flex-direction: column;
  }

  .hero-back-button,
  .hero-next-button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-stage {
    padding-bottom: 28px;
  }

  .hero-logos {
    gap: 14px 18px;
  }

  .hero-logos img {
    height: 22px;
  }

  .hero-call {
    min-height: 42px;
    font-size: 1.15rem;
  }

  .hero-intro h1 {
    font-size: clamp(2.9rem, 16vw, 4.4rem);
  }

  .hero-intro p {
    font-size: clamp(1.15rem, 7.2vw, 1.8rem);
  }

  .hero-stepper {
    gap: 8px;
  }

  .hero-stepper-line,
  .hero-stepper-fill {
    left: 22px;
    right: 22px;
    top: 28px;
  }

  .hero-stepper-item strong {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .hero-stepper-item span {
    font-size: 0.68rem;
  }

  .hero-form-fields input,
  .hero-next-button,
  .hero-back-button {
    min-height: 58px;
  }

  .hero-choice-tile {
    min-height: 200px;
    padding: 20px 16px 14px;
  }

  .hero-choice-icon {
    width: 88px;
    height: 88px;
    font-size: 3.3rem;
  }

  .hero-choice-tile strong {
    font-size: 1.45rem;
  }

  .hero-choice-tile small {
    font-size: 1.05rem;
  }

  .hero-choice-stack b {
    font-size: 2.5rem;
  }

  .hero-choice-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-choice-tile-compact {
    padding: 6px;
    border-radius: 16px;
  }

  .hero-building-card {
    aspect-ratio: 1 / 1;
    padding: 10px 10px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 28px;
  }

  .hero-copy-column {
    gap: 20px;
  }

  .hero-intro h1 {
    max-width: 12ch;
  }

  .hero-proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero-form-panel {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .hero-stage {
    min-height: auto;
    padding-top: 22px;
    padding-bottom: 26px;
  }

  .hero-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-brandline {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-site-logo-link,
  .hero-call {
    align-self: flex-start;
  }

  .hero-intro h1 {
    font-size: clamp(3.2rem, 9vw, 4.8rem);
  }

  .hero-intro p {
    max-width: 36ch;
  }

  .hero-proof-strip {
    grid-template-columns: 1fr;
  }

  .hero-form-panel {
    padding: 22px;
    border-radius: 28px;
  }
}

@media (max-width: 640px) {
  .hero-site-logo-link,
  .hero-call {
    max-width: min(280px, 78vw);
  }

  .hero-logos {
    gap: 10px 14px;
    padding: 12px 14px;
    border-radius: 24px;
  }

  .hero-logos img {
    height: 18px;
  }

  .hero-intro h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .hero-intro p {
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .hero-benefit-pills span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-form-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .hero-form-panel-head h2 {
    font-size: 1.9rem;
  }

  .hero-stepper-line,
  .hero-stepper-fill {
    left: 16px;
    right: 16px;
  }

  .hero-stepper-item span {
    font-size: 0.66rem;
  }
}

/* Unified redesign */
.site-header {
  display: block;
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(33, 49, 38, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  min-height: 76px;
  gap: 14px;
}

.brand-mark {
  display: none;
}

.brand-copy,
.brand-mark {
  display: none;
}

.main-nav {
  min-width: 0;
  gap: 20px;
  justify-content: center;
}

.main-nav a {
  color: #35443b;
  font-size: 0.94rem;
  font-weight: 700;
}

.header-phone {
  min-height: 46px;
  padding: 0 10px;
  background: transparent;
  border: 0;
  color: #1f2a22;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-phone::before {
  content: "☎";
  margin-right: 10px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4e8f38, #66b43f);
  color: #fffdf8;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 16px 32px rgba(78, 143, 56, 0.18);
}

.menu-toggle {
  border-radius: 50%;
}

.hero-topbar {
  display: none;
}

.hero.hero-fullscreen {
  min-height: auto;
  padding: 18px 0 0;
  background: #f8f5ef;
}

@media (max-width: 1380px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.88rem;
  }

  .header-phone {
    padding: 0 8px;
    font-size: 0;
  }

  .header-phone::after {
    content: "+43 1 22 644 51";
    font-size: 0.84rem;
    font-weight: 800;
  }

  .header-cta {
    padding: 0 14px;
    font-size: 0.84rem;
  }
}

.hero-background,
.hero-shade {
  display: none;
}

.hero-stage {
  min-height: auto;
  width: 100%;
  max-width: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-inline: 0;
}

.hero-layout {
  position: relative;
  grid-template-columns: minmax(0, 1.04fr) minmax(520px, 640px);
  gap: 24px;
  margin-top: 0;
  min-height: 760px;
  padding: 42px 42px 34px;
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 24, 29, 0.94) 0%, rgba(6, 24, 29, 0.9) 42%, rgba(6, 24, 29, 0.24) 64%, rgba(6, 24, 29, 0.06) 100%),
    url("/assets/hero-vienna-skyline.webp") 80% center / cover no-repeat;
  box-shadow: 0 26px 60px rgba(12, 18, 17, 0.18);
}

.hero-layout::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(6, 24, 29, 0), rgba(6, 24, 29, 0.08));
  pointer-events: none;
}

.hero-mobile-card,
.hero-mobile-brand,
.hero-mobile-actions,
.mobile-press-strip {
  display: none;
}

.hero-copy-column {
  position: relative;
  z-index: 1;
  gap: 28px;
  padding-top: 8px;
}

.hero-intro {
  width: min(700px, 100%);
}

.hero-kicker {
  min-height: 42px;
  padding: 0 18px;
  background: rgba(99, 190, 66, 0.16);
  border-color: rgba(99, 190, 66, 0.26);
  color: #dce8be;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.hero-intro h1 {
  max-width: 12ch;
  margin-top: 20px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(4rem, 5vw, 5.5rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-intro h1 span {
  display: block;
  color: #66ca41;
}

.hero-intro p {
  max-width: 21ch;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.4;
}

.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 650px;
}

.hero-proof-card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-proof-card strong {
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
}

.hero-proof-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.4;
}

.hero-social-proof {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  max-width: 670px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-social-stars {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-social-stars span {
  color: #66ca41;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
}

.hero-social-stars strong {
  color: #fff;
  font-size: 1.9rem;
  line-height: 1;
}

.hero-social-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.35;
}

.hero-social-avatars {
  display: flex;
  align-items: center;
}

.hero-social-avatars img,
.hero-social-avatars span {
  width: 42px;
  height: 42px;
  margin-left: -8px;
  border-radius: 50%;
  border: 3px solid rgba(6, 24, 29, 0.92);
}

.hero-social-avatars img {
  object-fit: cover;
}

.hero-social-avatars span {
  display: grid;
  place-items: center;
  background: #66ca41;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-panel-stack {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: end;
  width: min(100%, 640px);
}

.hero-refund-badge {
  position: absolute;
  right: calc(100% + 28px);
  left: auto;
  top: 46%;
  z-index: 3;
  transform: translateY(-8%);
  width: 224px;
  padding: 22px 24px 20px;
  border-radius: 28px;
  background: rgba(255, 250, 241, 0.96);
  box-shadow: 0 22px 42px rgba(17, 21, 18, 0.18);
}

.hero-refund-badge span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-refund-badge strong {
  display: block;
  margin-top: 6px;
  color: #66ca41;
  font-size: 3.2rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-refund-badge small {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-form-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  padding: 34px 38px 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.97), rgba(255, 250, 243, 0.95)),
    radial-gradient(circle at top left, rgba(110, 168, 57, 0.08), transparent 36%);
  box-shadow: 0 30px 64px rgba(17, 21, 18, 0.22);
}

.hero-form-panel-head {
  text-align: left;
}

.hero-form-panel-head p {
  color: #5f8f35;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-form-panel-head h2,
.hero-form-panel-head span {
  display: none;
}

.hero-stepper {
  margin: 20px 0 30px;
  padding-top: 4px;
}

.hero-stepper-line,
.hero-stepper-fill {
  top: 24px;
  left: 32px;
  right: 32px;
  height: 4px;
}

.hero-stepper-item {
  gap: 10px;
}

.hero-stepper-item strong {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
}

.hero-stepper-item span {
  font-size: 1rem;
  text-transform: none;
}

.hero-form-shell,
.hero-form-fields,
.hero-form-actions,
.hero-consent,
.hero-progress-bottom {
  width: 100%;
}

.hero-form-shell {
  min-height: 610px;
}

.hero-field-group {
  display: grid;
  gap: 14px;
}

.hero-step-question {
  display: block;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
}

.hero-input-shell {
  position: relative;
}

.hero-input-icon,
.hero-input-unit {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 700;
  pointer-events: none;
}

.hero-input-icon {
  left: 24px;
}

.hero-input-unit {
  right: 24px;
}

.hero-form-fields input {
  min-height: 74px;
  padding-left: 68px;
  padding-right: 72px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(33, 49, 38, 0.1);
  box-shadow: none;
  font-size: 1.15rem;
}

.hero-next-button,
.hero-back-button {
  min-height: 74px;
  border-radius: 18px;
  font-size: 1.2rem;
  font-weight: 800;
}

.hero-next-button {
  background: linear-gradient(135deg, #4e8f38, #66b43f);
}

.hero-progress-bottom {
  height: 12px;
  margin-top: 18px;
}

.hero-progress-bottom span {
  background: linear-gradient(90deg, #4e8f38, #87cf5c);
}

.hero-mobile-form-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.hero-mobile-form-meta span {
  flex: 1 1 0;
}

.trust-metrics {
  padding: 0 0 44px;
  background: #fff;
}

.mobile-press-strip {
  display: none;
}

.trust-metrics-shell {
  grid-template-columns: 2fr repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.trust-metrics-press {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 12px 16px 12px 6px;
}

.trust-metrics-press p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-metrics-press-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.trust-metrics-press-logos img {
  width: 100%;
  height: 22px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.25);
  opacity: 0.9;
}

.trust-metric {
  min-height: 132px;
  padding: 18px 16px;
  border-radius: 18px;
  background: #f6f7f2;
  color: var(--ink);
}

.trust-metric strong {
  color: #4e8f38;
  font-size: clamp(1.8rem, 2vw, 2.3rem);
}

.trust-metric span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.3;
  text-transform: none;
}

.showcase,
.photo-strip,
.section {
  padding-top: 72px;
}

.section-soft {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7f1 100%);
}

.benefit-card,
.step-card,
.photo-card,
.support-copy,
.support-image,
.faq-list details,
.example-card,
.final-card {
  border-radius: 24px;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto 1fr auto auto;
  }

  .header-cta {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    padding: 30px;
  }

  .hero-intro h1 {
    max-width: 11ch;
  }

  .hero-proof-strip {
    max-width: none;
  }

  .hero-panel-stack {
    max-width: 440px;
    width: 100%;
    justify-self: center;
    margin-inline: auto;
  }

  .hero-refund-badge {
    left: auto;
    right: calc(100% + 14px);
  }

  .trust-metrics-shell {
    grid-template-columns: 1fr 1fr;
  }

  .trust-metrics-press {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .header-inner {
    position: relative;
    grid-template-columns: 1fr auto auto;
    min-height: 58px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 36px;
    max-width: min(100%, 288px);
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 12px);
    display: grid;
    gap: 8px;
    padding: 14px;
    background: linear-gradient(180deg, #fffdf8 0%, #f9f4ea 100%);
    border: 1px solid rgba(33, 49, 38, 0.08);
    border-radius: 24px;
    box-shadow: 0 22px 42px rgba(17, 22, 17, 0.18);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 140;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    color: #223229;
    font-size: 0.98rem;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(33, 49, 38, 0.06);
  }

  .main-nav a::after {
    content: "→";
    font-size: 1rem;
    color: rgba(78, 143, 56, 0.92);
  }

  .mobile-nav-meta {
    display: grid;
    gap: 10px;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(33, 49, 38, 0.08);
  }

  .mobile-nav-phone,
  .mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 16px;
    font-size: 0.95rem;
    font-weight: 800;
  }

  .mobile-nav-phone {
    background: rgba(255, 255, 255, 0.92);
    color: #213126;
    box-shadow: inset 0 0 0 1px rgba(33, 49, 38, 0.08);
  }

  .mobile-nav-phone::before {
    content: "☎";
    margin-right: 10px;
  }

  .mobile-nav-phone::after,
  .mobile-nav-cta::after {
    content: none;
  }

  .mobile-nav-cta {
    background: linear-gradient(135deg, #4e8f38, #66b43f);
    color: #fffdf8;
    box-shadow: 0 16px 28px rgba(78, 143, 56, 0.2);
  }

  .header-cta {
    display: none;
  }

  .brand-copy strong {
    font-size: 0.86rem;
  }

  .brand-logo {
    height: 26px;
  }

  .footer-logo {
    height: 28px;
  }

  .header-phone {
    display: inline-grid;
    place-items: center;
    width: 36px;
    min-height: 36px;
    padding: 0;
    border-radius: 50%;
    background: #f8f5ef;
    font-size: 0;
    box-shadow: 0 8px 16px rgba(17, 22, 17, 0.08);
  }

  .header-phone::before {
    margin: 0;
    font-size: 0.92rem;
  }

  .header-phone::after {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 0;
    background: #f8f5ef;
    box-shadow: 0 8px 16px rgba(17, 22, 17, 0.08);
  }

  .hero.hero-fullscreen {
    padding-top: 0;
    background: linear-gradient(180deg, #ffffff 0 58px, #08181d 58px 100%);
  }

  .hero-layout {
    padding: 10px 0 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
  }

  .hero-panel-stack {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    display: grid;
    justify-items: center;
    margin-top: -12px;
  }

  .hero-layout::after,
  .hero-intro,
  .hero-proof-strip,
  .hero-social-proof,
  .hero-refund-badge {
    display: none;
  }

  .hero-mobile-card {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 10px 12px 10px;
    border-radius: 0 0 24px 24px;
    background: #08181d;
    min-height: 330px;
  }

  .hero-mobile-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(6, 24, 29, 0.96) 0%, rgba(6, 24, 29, 0.9) 40%, rgba(6, 24, 29, 0.34) 68%, rgba(6, 24, 29, 0.16) 100%),
      linear-gradient(180deg, rgba(6, 24, 29, 0.06) 0%, rgba(6, 24, 29, 0.24) 100%);
  }

  .hero-mobile-copy {
    position: relative;
    z-index: 3;
    max-width: 53%;
    display: grid;
    gap: 6px;
  }

  .hero-mobile-copy .hero-kicker {
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(133, 177, 71, 0.14);
    border-color: rgba(133, 177, 71, 0.3);
    color: #dce8be;
    font-size: 0.52rem;
    letter-spacing: 0.08em;
  }

  .hero-mobile-copy h1 {
    margin: 0;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.52rem, 9.8vw, 2.42rem);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.055em;
    text-wrap: balance;
  }

  .hero-mobile-copy h1 em {
    display: block;
    max-width: 5.7ch;
    margin-top: 0.1em;
    font-style: normal;
    color: #66ca41;
    letter-spacing: -0.05em;
  }

  .hero-mobile-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.66rem;
    line-height: 1.26;
    max-width: 24ch;
  }

  .hero-mobile-art {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    z-index: 0;
  }

  .hero-mobile-art img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 68% center;
  }

  .hero-mobile-refund {
    position: absolute;
    right: 14px;
    top: 132px;
    z-index: 3;
    display: grid;
    gap: 2px;
    width: 92px;
    padding: 8px 9px;
    border-radius: 14px;
    background: rgba(255, 250, 241, 0.96);
    box-shadow: 0 16px 32px rgba(7, 11, 14, 0.18);
  }

  .hero-mobile-refund span {
    color: var(--muted);
    font-size: 0.54rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .hero-mobile-refund strong {
    color: #61be44;
    font-size: 1.18rem;
    line-height: 1;
    font-weight: 900;
  }

  .hero-mobile-refund small {
    color: var(--muted);
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
  }

  .hero-mobile-benefits {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 34px;
    padding-top: 0;
  }

  .hero-mobile-benefits div {
    display: grid;
    gap: 5px;
  }

  .hero-mobile-benefits strong {
    color: #dce8be;
    font-size: 0.56rem;
    font-weight: 800;
    line-height: 1.2;
  }

  .hero-mobile-benefits span {
    display: none;
  }

  .hero-mobile-rating {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    margin-top: 8px;
    padding: 8px 9px;
    border-radius: 14px;
    background: rgba(255, 250, 241, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
  }

  .hero-mobile-stars {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 800;
  }

  .hero-mobile-stars span {
    color: #79d34f;
    letter-spacing: 0.08em;
    font-size: 0.64rem;
  }

  .hero-mobile-rating p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.5rem;
    line-height: 1.2;
  }

  .hero-mobile-avatars {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .hero-mobile-avatars img,
  .hero-mobile-avatars span {
    width: 22px;
    height: 22px;
    margin-left: -6px;
    border-radius: 50%;
    border: 2px solid #0d1b21;
  }

  .hero-mobile-avatars img {
    object-fit: cover;
  }

  .hero-mobile-avatars span {
    display: grid;
    place-items: center;
    background: #66ca41;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
  }

  .hero-form-panel {
    width: min(calc(100% - 12px), 374px);
    margin: 12px auto 0;
    max-width: none;
    padding: 12px 12px 18px;
    border-radius: 20px;
    box-shadow: 0 18px 36px rgba(9, 18, 17, 0.16);
  }

  .hero-form-panel-head {
    text-align: center;
  }

  .hero-form-panel-head p {
    font-size: 0.72rem;
  }

  .hero-stepper {
    margin: 10px 0 14px;
  }

  .hero-stepper-item strong {
    width: 24px;
    height: 24px;
    font-size: 0.78rem;
  }

  .hero-stepper-item span {
    font-size: 0.56rem;
  }

  .hero-mobile-form-meta {
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(33, 49, 38, 0.08);
    font-size: 0.62rem;
  }

  .hero-progress-bottom {
    height: 18px;
    margin-top: 14px;
    border-radius: 999px;
    background: #e8e3d9;
    box-shadow: inset 0 1px 2px rgba(33, 49, 38, 0.08);
  }

  .hero-progress-bottom span {
    border-radius: 999px;
    background: linear-gradient(90deg, #4f9639, #8ed45f);
  }

  .hero-form-shell {
    min-height: 0;
  }

  .mobile-press-strip {
    display: block;
    margin-top: 12px;
    margin-bottom: 16px;
    text-align: center;
  }

  .mobile-press-strip p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-press-logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    align-items: center;
  }

  .mobile-press-logos img {
    width: 100%;
    height: 18px;
    object-fit: contain;
    filter: grayscale(1) brightness(0.2);
    opacity: 0.85;
  }

  .trust-metrics-shell {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .trust-metrics-press {
    display: none;
  }

  .trust-metric {
    min-height: 110px;
    padding: 16px 10px;
    border-radius: 16px;
  }

  .trust-metric strong {
    font-size: 1.45rem;
  }

  .trust-metric span {
    font-size: 0.73rem;
  }
}

/* Rebuilt sections after hero */
.posthero-overview {
  padding: 28px 0 26px;
  background: #fbfaf6;
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(0, 2fr);
  gap: 16px;
  align-items: stretch;
}

.mission-panel,
.overview-stat,
.process-panel,
.testimonial-card,
.testimonial-benefits,
.faq-shell,
.footer-cta-band,
.footer-shell {
  border: 1px solid rgba(31, 43, 35, 0.08);
  background: #fffdf9;
  box-shadow: 0 22px 52px rgba(19, 28, 23, 0.06);
}

.mission-panel {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 28px;
  border-radius: 20px;
}

.mission-icon {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf5e7;
  color: #58a93a;
  font-size: 2rem;
  font-weight: 900;
}

.mission-copy h2 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.mission-copy p {
  margin: 0;
  color: #5e6b63;
  font-size: 1rem;
  line-height: 1.5;
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.overview-stat {
  display: grid;
  justify-items: start;
  gap: 6px;
  min-height: 152px;
  padding: 24px 24px 22px;
  border-radius: 20px;
}

.overview-stat-icon {
  color: #97a59b;
  font-size: 2rem;
  line-height: 1;
}

.overview-stat strong {
  color: #58a93a;
  font-size: 2.05rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.overview-stat small {
  color: #4c5b53;
  font-size: 0.95rem;
  line-height: 1.35;
}

.process-panel-wrap,
.testimonials-panel-wrap,
.faq-section {
  padding: 26px 0;
  background:
    radial-gradient(circle at top center, rgba(144, 199, 81, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfaf6 0%, #f6f7f1 100%);
}

.process-panel,
.testimonials-panel {
  padding: 34px 36px 30px;
  border-radius: 24px;
}

.process-head,
.testimonials-head,
.faq-section-head {
  text-align: center;
}

.process-head p,
.testimonials-head p,
.faq-section-head p {
  margin: 0 0 10px;
  color: #64b63e;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-head h2,
.testimonials-head h2,
.faq-section-head h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #15271f;
}

.process-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: start;
}

.process-step-icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f2f5ef;
  color: #61ae3c;
  font-size: 2rem;
}

.process-step-copy h3 {
  margin: 4px 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.process-step-copy p {
  margin: 0;
  color: #54635a;
  font-size: 1rem;
  line-height: 1.55;
}

.process-arrow {
  color: #61ae3c;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 700;
}

.process-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(108, 172, 62, 0.18);
  background:
    linear-gradient(135deg, #376e28 0%, #4a8a33 48%, #5ea63d 100%);
  box-shadow: 0 22px 44px rgba(37, 77, 31, 0.18);
}

.process-benefit {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
}

.process-benefit + .process-benefit {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.process-benefit span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.55rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.process-benefit strong {
  display: block;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
}

.process-benefit small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.45;
}

.testimonials-panel-wrap {
  padding-top: 18px;
}

.testimonial-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.testimonial-rating span {
  color: #62b13d;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}

.testimonial-rating strong {
  color: #1a2b22;
  font-size: 1.22rem;
  font-weight: 800;
}

.testimonial-rating small {
  color: #5a675f;
  font-size: 1rem;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.testimonial-card {
  padding: 22px 22px 18px;
  border-radius: 18px;
}

.testimonial-quote-mark {
  color: #5eb13a;
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.7;
}

.testimonial-card p {
  min-height: 124px;
  margin: 10px 0 18px;
  color: #24362c;
  font-size: 1rem;
  line-height: 1.45;
}

.testimonial-card p strong {
  color: #58a93a;
}

.testimonial-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-person img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-person strong {
  display: block;
  color: #1f3228;
  font-size: 1rem;
  font-weight: 800;
}

.testimonial-person small,
.testimonial-amount small {
  color: #66746c;
  font-size: 0.9rem;
}

.testimonial-amount {
  padding: 14px 16px;
  border-radius: 14px;
  background: #f1f7ea;
  text-align: center;
}

.testimonial-amount strong {
  display: block;
  color: #58a93a;
  font-size: 1.05rem;
  font-weight: 800;
}

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

.testimonial-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(24, 37, 29, 0.18);
}

.testimonial-dots .is-active {
  background: #5fb33c;
}

.testimonial-benefits {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding: 20px 24px;
  border-radius: 18px;
  text-align: center;
}

.testimonial-benefits strong {
  color: #1b2d23;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.testimonial-benefit-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.testimonial-benefit-list span {
  color: #526159;
  font-size: 0.98rem;
}

.testimonial-benefit-list b {
  color: #58a93a;
}

.results-proof-wrap {
  padding: 14px 0 22px;
}

.results-proof-panel {
  display: grid;
  gap: 24px;
  padding: 28px 30px;
  border-radius: 24px;
  background: #fffdfa;
  border: 1px solid rgba(27, 42, 33, 0.08);
  box-shadow: 0 18px 44px rgba(21, 39, 31, 0.08);
}

.results-proof-head {
  text-align: center;
}

.results-proof-head p {
  margin: 0;
  color: #64b63e;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.results-proof-head h2 {
  margin: 12px auto 0;
  max-width: 15ch;
  color: #13251d;
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.results-proof-head h2 span {
  color: #64b63e;
}

.results-proof-subtitle {
  margin-top: 12px !important;
  color: #304239 !important;
  font-size: clamp(1.1rem, 1.7vw, 1.7rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
}

.results-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.result-story-card {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(27, 42, 33, 0.08);
  box-shadow: 0 16px 30px rgba(21, 39, 31, 0.07);
}

.result-story-card img {
  display: block;
  width: 100%;
  height: auto;
}

.result-story-meta {
  display: grid;
  gap: 6px;
  padding: 16px 18px 18px;
}

.result-story-meta strong {
  position: relative;
  display: block;
  padding-left: 28px;
  color: #23362c;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.3;
}

.result-story-meta strong::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(100, 182, 62, 0.12);
  color: #5caf39;
  font-size: 0.78rem;
  font-weight: 900;
}

.result-story-meta small {
  color: #67756d;
  font-size: 0.95rem;
}

.results-proof-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  color: #23362c;
}

.results-proof-rating span,
.results-proof-rating b {
  color: #5caf39;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.results-proof-rating strong {
  font-size: 1.2rem;
  font-weight: 800;
}

.results-proof-rating small {
  color: #53625a;
  font-size: 1rem;
}

.results-proof-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(27, 42, 33, 0.06);
  border-radius: 18px;
  overflow: hidden;
  background: #f7f8f3;
}

.results-proof-benefits article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
}

.results-proof-benefits article + article {
  border-left: 1px solid rgba(27, 42, 33, 0.08);
}

.results-proof-benefits span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #5caf39;
  font-size: 1.45rem;
}

.results-proof-benefits strong {
  display: block;
  color: #21342a;
  font-size: 1.05rem;
  font-weight: 800;
}

.results-proof-benefits small {
  display: block;
  margin-top: 4px;
  color: #5f6d65;
  font-size: 0.98rem;
  line-height: 1.45;
}

.faq-section {
  padding-top: 18px;
}

.faq-shell {
  padding: 28px 30px 26px;
  border-radius: 24px;
}

.faq-grid-new {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.faq-grid-new details {
  padding: 0 20px;
  border-radius: 16px;
  background: #f8faf5;
  border: 1px solid rgba(31, 43, 35, 0.08);
}

.faq-grid-new summary {
  position: relative;
  padding: 18px 28px 18px 0;
  cursor: pointer;
  list-style: none;
  color: #1f3228;
  font-size: 1rem;
  font-weight: 800;
}

.faq-grid-new summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #5eb13a;
  font-size: 1.4rem;
  line-height: 1;
}

.faq-grid-new details[open] summary::after {
  content: "−";
}

.faq-grid-new p {
  margin: 0;
  padding: 0 0 18px;
  color: #5c6b62;
  font-size: 0.98rem;
  line-height: 1.5;
}

.site-footer {
  padding: 28px 0 34px;
  background: #fbfaf6;
}

.footer-stage {
  width: 100%;
  max-width: none;
}

.footer-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 6px;
  padding: 22px 48px;
  border-radius: 0;
  background: #0f2027;
  color: #fff;
}

.footer-cta-copy {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-cta-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(103, 183, 62, 0.14);
  color: #64b93e;
  font-size: 1.8rem;
}

.footer-cta-copy strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.15;
}

.footer-cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
}

.footer-shell {
  padding: 30px 48px 16px;
  border-radius: 0;
  background: #0f2027;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.15fr;
  gap: 28px;
}

.footer-column h3,
.footer-column h4 {
  margin: 0 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-column p,
.footer-column a,
.footer-column span {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
  line-height: 1.45;
}

.footer-brand-column h3 {
  color: #6ec946;
}

.footer-brand-logo {
  width: auto;
  height: 38px;
  margin-bottom: 14px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
}

.footer-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 18px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.footer-badge-google,
.footer-badge-security {
  align-items: center;
}

.footer-badge-google-mark {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-badge-google-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-badge-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.footer-badge strong {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.05;
}

.footer-badge-google-copy span {
  display: block;
  margin: 0;
  color: #f8bb3d;
  line-height: 1;
  letter-spacing: 0.12em;
}

.footer-badge-icon-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-badge-icon-mark svg {
  width: 28px;
  height: 28px;
  display: block;
  transform: translateY(4px);
}

.footer-badge small {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.35;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p,
.footer-bottom span {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

@media (max-width: 1180px) {
  .overview-grid,
  .process-steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .overview-stats,
  .testimonial-cards,
  .testimonial-benefit-list,
  .results-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-arrow {
    display: none;
  }

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

  .results-proof-benefits {
    grid-template-columns: 1fr;
  }

  .results-proof-benefits article + article {
    border-left: 0;
    border-top: 1px solid rgba(27, 42, 33, 0.08);
  }

  .process-benefit + .process-benefit {
    border-left: 0;
  }

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

@media (max-width: 760px) {
  .posthero-overview,
  .process-panel-wrap,
  .testimonials-panel-wrap,
  .faq-section,
  .site-footer {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .posthero-overview {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-top: 42px;
    border-radius: 0;
    background:
      linear-gradient(180deg, #08181d 0%, #08181d 34px, #f8f6f0 34px, #fbfaf6 88px, #fbfaf6 100%);
  }

  .mission-panel,
  .process-panel,
  .testimonials-panel,
  .results-proof-panel,
  .faq-shell,
  .footer-shell,
  .footer-cta-band {
    padding: 20px;
    border-radius: 18px;
  }

  .mission-panel {
    grid-template-columns: 1fr;
  }

  .mission-copy h2,
  .process-head h2,
  .testimonials-head h2,
  .faq-section-head h2 {
    font-size: 1.8rem;
  }

  .overview-stats,
  .process-benefits,
  .testimonial-cards,
  .testimonial-benefit-list,
  .results-proof-grid,
  .results-proof-benefits,
  .faq-grid-new,
  .footer-badges {
    grid-template-columns: 1fr;
  }

  .footer-badge-google,
  .footer-badge-security {
    gap: 12px;
  }

  .footer-badge-google-mark {
    width: 46px;
    height: 46px;
  }

  .footer-badge-icon-mark {
    width: 46px;
    height: 46px;
  }

  .footer-badge-icon-mark svg {
    width: 22px;
    height: 22px;
    transform: translateY(3px);
  }

  .results-proof-head h2 {
    font-size: 1.95rem;
  }

  .results-proof-subtitle {
    font-size: 1rem !important;
  }

  .results-proof-rating {
    gap: 8px;
  }

  .results-proof-rating span,
  .results-proof-rating b {
    font-size: 1.35rem;
  }

  .results-proof-benefits article {
    padding: 18px;
  }

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

  .process-step-icon {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
  }

  .process-step-copy h3 {
    font-size: 1.2rem;
  }

  .process-benefit {
    padding: 18px;
  }

  .testimonial-card p {
    min-height: auto;
  }

  .testimonial-foot,
  .footer-cta-band,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    gap: 20px;
  }
}

/* Unified lower-page theme */
body {
  background:
    radial-gradient(circle at top right, rgba(157, 201, 88, 0.12), transparent 22%),
    radial-gradient(circle at 14% 28%, rgba(157, 201, 88, 0.08), transparent 18%),
    linear-gradient(180deg, #fffdf8 0%, #f7f3e8 54%, #f5f6f0 100%);
}

.showcase,
.photo-strip,
.section,
.site-footer {
  position: relative;
}

.showcase::before,
.photo-strip::before,
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 18%, rgba(138, 201, 76, 0.08), transparent 16%),
    radial-gradient(circle at 88% 12%, rgba(138, 201, 76, 0.06), transparent 20%);
  opacity: 0.9;
}

.showcase-grid,
.support-grid,
.faq-layout,
.final-card {
  position: relative;
  z-index: 1;
}

.showcase {
  padding-top: 86px;
}

.showcase-grid,
.support-grid {
  gap: 42px;
  align-items: stretch;
}

.showcase-copy h2,
.section-head h2,
.support-copy h2,
.final-card h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.6rem, 3.6vw, 4.3rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: #1b3027;
}

.section-head.compact h2,
.support-copy h2,
.final-card h2 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
}

.eyebrow,
.example-label {
  color: #6a7f67;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.showcase-copy p,
.support-copy p,
.faq-list p,
.benefit-card p,
.step-card p,
.photo-card span,
.value-list span,
.final-card p,
.footer-inner p,
.footer-inner nav a {
  color: #607167;
}

.showcase-visual img,
.support-image,
.support-image img {
  border-radius: 38px;
}

.showcase-visual img,
.support-image {
  box-shadow: 0 30px 60px rgba(19, 33, 26, 0.12);
}

.example-card,
.benefit-card,
.step-card,
.value-list div,
.photo-card,
.support-copy,
.faq-list details {
  border: 1px solid rgba(91, 118, 83, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(252, 248, 239, 0.95)),
    radial-gradient(circle at top left, rgba(134, 193, 70, 0.08), transparent 36%);
  box-shadow:
    0 22px 46px rgba(18, 29, 23, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.example-card {
  right: 28px;
  bottom: 28px;
  width: min(430px, calc(100% - 56px));
  padding: 26px 26px 22px;
  border-radius: 30px;
}

.example-card h3,
.benefit-card h3,
.step-card h3,
.photo-card strong,
.value-list strong,
.faq-list summary,
.check-list li {
  color: #203529;
}

.example-stats div,
.value-list div {
  border-top-color: rgba(91, 118, 83, 0.1);
}

.value-list {
  gap: 16px;
}

.value-list div {
  position: relative;
  padding: 22px 22px 22px 26px;
  border-radius: 26px;
}

.value-list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #68b53f, #91d05f);
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(245, 247, 241, 0.76), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 84% 14%, rgba(146, 206, 72, 0.08), transparent 18%);
}

.benefit-grid,
.steps-grid {
  gap: 22px;
}

.benefit-card,
.step-card {
  padding: 28px;
  border-radius: 30px;
}

.benefit-card span,
.step-card span {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(180deg, #5ea438, #7ece4d);
  color: #fff;
  box-shadow: 0 16px 24px rgba(92, 164, 56, 0.18);
}

.photo-strip {
  padding-top: 54px;
}

.photo-card {
  overflow: hidden;
  border-radius: 30px;
}

.photo-card img {
  height: 300px;
}

.photo-card figcaption {
  padding: 22px;
}

.support-section {
  background:
    radial-gradient(circle at 18% 34%, rgba(140, 196, 77, 0.08), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(245, 247, 241, 0.44));
}

.support-copy {
  padding: 38px;
  border-radius: 36px;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list li {
  padding: 16px 18px 16px 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(91, 118, 83, 0.08);
}

.check-list li::before {
  left: 18px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, #64b33d, #83cf52);
  box-shadow: 0 8px 14px rgba(100, 179, 61, 0.18);
}

.faq-layout {
  gap: 30px;
  align-items: start;
}

.faq-list {
  gap: 16px;
}

.faq-list details {
  padding: 0 24px;
  border-radius: 24px;
}

.faq-list summary {
  position: relative;
  padding: 24px 38px 24px 0;
  font-size: 1.02rem;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #63b63d;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.final-cta {
  padding-top: 78px;
}

.final-card {
  gap: 28px;
  padding: 34px 38px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(7, 24, 29, 0.98) 0%, rgba(14, 35, 29, 0.95) 58%, rgba(44, 73, 35, 0.94) 100%);
  box-shadow: 0 30px 56px rgba(12, 20, 16, 0.14);
}

.final-card .eyebrow,
.final-card h2,
.final-card p {
  color: #fff;
}

.final-card .eyebrow {
  color: rgba(208, 229, 184, 0.88);
}

.final-card p {
  color: rgba(255, 255, 255, 0.76);
}

.final-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-footer {
  padding-top: 12px;
}

.footer-inner {
  border-top-color: rgba(91, 118, 83, 0.12);
}

@media (max-width: 1180px) {
  .showcase-grid,
  .support-grid {
    gap: 28px;
  }

  .showcase-copy h2,
  .section-head h2,
  .support-copy h2,
  .final-card h2 {
    font-size: clamp(2rem, 5vw, 3.1rem);
  }
}

@media (max-width: 760px) {
  .showcase::before,
  .photo-strip::before,
  .section::before {
    display: none;
  }

  .showcase,
  .photo-strip,
  .section {
    padding-top: 24px;
  }

  .showcase-copy h2,
  .section-head h2,
  .support-copy h2,
  .final-card h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .example-card,
  .benefit-card,
  .step-card,
  .value-list div,
  .support-copy,
  .faq-list details,
  .final-card {
    border-radius: 24px;
  }

  .support-copy,
  .final-card {
    padding: 24px;
  }

  .check-list li {
    padding: 14px 14px 14px 42px;
  }

  .photo-card img {
    height: 240px;
  }
}

.calculator-page .hero-intro h1 {
  max-width: 11ch;
}

.calculator-page .hero-intro p {
  max-width: 58ch;
}

.hero-mobile-refund-estimator strong {
  font-size: 2rem;
  line-height: 0.95;
}

.hero-mobile-refund-estimator small {
  max-width: 18ch;
}

.hero-refund-badge-estimator strong {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 0.88;
}

.hero-refund-badge-estimator small {
  max-width: 16ch;
}

.hero-social-proof-estimator p {
  max-width: 34ch;
}

.calculator-form-panel .hero-stepper-item span {
  font-size: 0.68rem;
}

.estimator-form .hero-step-question {
  display: block;
  margin: 0 0 12px;
}

.estimator-helper {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.hero-choice-tile-copy {
  align-content: start;
  gap: 12px;
  text-align: left;
}

.hero-choice-tile-copy strong {
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-choice-tile-copy small {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-choice-tile-copy input:checked ~ small {
  color: rgba(255, 255, 255, 0.82);
}

.estimator-result {
  display: grid;
  gap: 18px;
}

.estimator-result-head {
  display: grid;
  gap: 8px;
}

.estimator-result-head p {
  margin: 0;
  color: var(--olive-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.estimator-result-head h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 0.98;
}

.estimator-result-head span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(114, 134, 52, 0.12);
  color: #51682d;
  font-size: 0.92rem;
  font-weight: 700;
}

.estimator-highlight {
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(114, 134, 52, 0.18), rgba(255, 251, 244, 0.96));
  color: #223126;
  font-size: 1.02rem;
  line-height: 1.55;
  border: 1px solid rgba(114, 134, 52, 0.14);
}

.estimator-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.estimator-result-card {
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(33, 49, 38, 0.08);
  box-shadow: 0 18px 34px rgba(26, 36, 24, 0.07);
}

.estimator-result-card small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.estimator-result-card strong {
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  line-height: 1.05;
  color: #203025;
}

.estimator-result-card-accent {
  background: linear-gradient(135deg, rgba(114, 134, 52, 0.18), rgba(255, 251, 244, 0.96));
}

.estimator-side-by-side {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 14px;
}

.estimator-side-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(33, 49, 38, 0.08);
}

.estimator-side-card h4 {
  margin: 0 0 14px;
  font-size: 1.05rem;
}

.estimator-side-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.estimator-side-card li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(33, 49, 38, 0.08);
}

.estimator-side-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.estimator-side-card li span {
  color: var(--muted);
}

.estimator-side-card li strong {
  text-align: right;
}

.estimator-reason-list li {
  display: block;
  padding-left: 24px;
  position: relative;
  color: #223126;
  line-height: 1.55;
}

.estimator-reason-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: #6f8334;
}

.estimator-disclaimer {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(33, 49, 38, 0.06);
  color: #2e3f32;
}

.estimator-disclaimer strong {
  display: block;
  margin-bottom: 8px;
}

.estimator-disclaimer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.estimator-result-actions .hero-back-button {
  min-width: 220px;
}

.calculator-method-panel .process-step-copy p {
  max-width: 32ch;
}

.calculator-method-panel .process-benefit small {
  max-width: 22ch;
}

.footer-badge-text {
  width: 100%;
  min-height: 148px;
  justify-content: center;
}

.footer-badge-text .footer-badge-copy {
  align-items: flex-start;
}

@media (max-width: 1180px) {
  .estimator-result-grid,
  .estimator-side-by-side {
    grid-template-columns: 1fr;
  }

  .calculator-method-panel .process-steps {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .calculator-page .hero-intro h1 {
    max-width: 8ch;
  }

  .calculator-form-panel .hero-stepper {
    margin-bottom: 18px;
  }

  .calculator-form-panel .hero-stepper-item span {
    font-size: 0;
  }

  .calculator-form-panel .hero-stepper-item strong {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    font-size: 0.9rem;
  }

  .hero-choice-tile-copy strong {
    font-size: 1rem;
  }

  .hero-choice-tile-copy small,
  .estimator-helper {
    font-size: 0.92rem;
  }

  .estimator-result-head h3 {
    font-size: 2rem;
  }

  .estimator-side-card li {
    flex-direction: column;
    align-items: flex-start;
  }

  .estimator-side-card li strong {
    text-align: left;
  }

  .footer-badge-text {
    min-height: 112px;
  }
}
