:root {
  --moss: #263025;
  --moss-2: #1d241c;
  --oat: #d4b895;
  --sand: #e8dcc7;
  --clay: #b08b6e;
  --terracotta: #c66b3d;
  --ochre: #c08e3a;
  --sage: #8b9d83;
  --text: #231a13;
  --muted: #745f4f;
  --soft: rgba(232, 220, 199, 0.72);
  --line: rgba(176, 139, 110, 0.38);
  --line-dark: rgba(232, 220, 199, 0.16);
  --white: #fffdf8;
  --radius: 18px;
  --container: 1196px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Instrument Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--sand);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 0.04;
}

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

a {
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 68px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(176, 139, 110, 0.28);
  background: rgba(232, 220, 199, 0.88);
  backdrop-filter: blur(16px) saturate(140%);
}

.brand,
.nav,
.hero-actions,
.hero-proof,
.footer-inner {
  display: flex;
  align-items: center;
}

.brand {
  gap: 14px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.nav {
  gap: 26px;
}

.nav a,
.topbar-cta,
footer a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.nav a:hover,
.topbar-cta:hover,
footer a:hover {
  color: var(--terracotta);
}

.topbar-cta {
  justify-self: end;
  padding: 11px 18px;
  border-radius: 12px;
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(198, 107, 61, 0.22);
}

.topbar-cta:hover {
  color: var(--white);
  background: var(--ochre);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 108px) 0 78px;
  background:
    radial-gradient(circle at 80% 20%, rgba(198, 107, 61, 0.22), transparent 34%),
    linear-gradient(135deg, var(--moss-2), var(--moss));
  color: var(--soft);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(29, 36, 28, 0.4));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 56px;
  align-items: center;
}

.sale-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(198, 107, 61, 0.96);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(198, 107, 61, 0.28);
}

.sale-badge span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sand);
  box-shadow: 0 0 0 4px rgba(232, 220, 199, 0.22);
}

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

h1,
h2,
.num,
.price {
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h1 em,
h2 em {
  color: var(--oat);
  font-style: italic;
  font-weight: 500;
}

h2 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.28;
}

.lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 18px;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--terracotta);
  border-radius: 14px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(198, 107, 61, 0.26);
}

.btn-primary:hover {
  background: var(--ochre);
  border-color: var(--ochre);
}

.btn-secondary {
  border-color: rgba(198, 107, 61, 0.42);
  background: var(--white);
  color: var(--terracotta);
}

.btn-secondary:hover {
  border-color: var(--terracotta);
  background: rgba(198, 107, 61, 0.1);
}

.micro-note {
  color: rgba(255, 253, 248, 0.54);
  font-size: 13px;
}

.deal-chip {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  max-width: 660px;
  margin: 18px 0 30px;
  padding: 16px;
  border: 1px solid rgba(139, 157, 131, 0.48);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(139, 157, 131, 0.18), rgba(198, 107, 61, 0.12));
  color: rgba(255, 253, 248, 0.84);
  text-decoration: none;
}

.chip-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(139, 157, 131, 0.28);
  color: var(--sand);
  font-weight: 900;
}

.deal-chip strong,
.deal-chip small {
  display: block;
}

.deal-chip small {
  margin-top: 4px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 13px;
}

.hero-proof {
  gap: 0;
  max-width: 680px;
  border-top: 1px solid var(--line-dark);
}

.hero-proof div {
  flex: 1;
  padding: 18px 18px 0 0;
}

.hero-proof span {
  display: block;
  margin-bottom: 4px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
}

.hero-proof strong {
  display: block;
  color: rgba(255, 253, 248, 0.9);
  line-height: 1.25;
}

.photo-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 140px;
  gap: 12px;
  min-height: 588px;
}

.tile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.tile-a {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.tile-b {
  grid-column: 3;
  grid-row: 1 / 2;
}

.tile-c {
  grid-column: 3;
  grid-row: 2 / 4;
}

.tile-d {
  grid-column: 1;
  grid-row: 3 / 5;
}

.tile-e {
  grid-column: 2;
  grid-row: 3 / 5;
}

.decision-card {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: min(360px, calc(100% - 32px));
  padding: 18px;
  border: 1px solid rgba(232, 220, 199, 0.22);
  border-radius: 16px;
  background: rgba(29, 36, 28, 0.9);
  color: var(--soft);
  backdrop-filter: blur(12px);
}

.decision-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
}

.decision-card strong {
  display: block;
  color: var(--white);
  font-size: 22px;
}

.decision-card p {
  margin: 8px 0 0;
  color: rgba(255, 253, 248, 0.66);
}

.numbers,
.journey,
.seller-block,
.checks,
.strengths,
.packages,
.testimonials,
.cta,
.faq {
  padding: 88px 0;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-lead,
.body-copy {
  max-width: 730px;
  color: var(--muted);
  font-size: 18px;
}

.number-grid,
.check-grid,
.package-grid {
  display: grid;
  gap: 18px;
}

.number-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
}

.number-grid article,
.check-grid article,
.package-grid article,
.journey-card,
.quote-box,
.lead-form,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.54);
}

.number-grid article,
.check-grid article,
.package-grid article {
  padding: 24px;
}

.package-card {
  cursor: pointer;
  transition: border-color .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease);
}

.package-card:hover {
  border-color: rgba(198, 107, 61, 0.72);
  box-shadow: 0 16px 34px rgba(35, 26, 19, 0.08);
}

.package-action {
  width: 100%;
  min-height: 46px;
  margin-top: 22px;
  border: 1px solid rgba(198, 107, 61, 0.42);
  border-radius: 12px;
  background: var(--terracotta);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.package-action:hover {
  background: var(--ochre);
}

.number-grid article.highlight,
.package-grid article.featured {
  border-color: rgba(198, 107, 61, 0.56);
  background: linear-gradient(180deg, rgba(198, 107, 61, 0.12), rgba(255, 253, 248, 0.62));
}

.num {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.04;
}

.number-grid p,
.check-grid p,
.package-grid p,
.package-grid li,
details p {
  color: var(--muted);
}

.journey {
  background: rgba(255, 253, 248, 0.28);
  border-top: 1px solid rgba(176, 139, 110, 0.24);
  border-bottom: 1px solid rgba(176, 139, 110, 0.24);
}

.journey-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 34px 0 14px;
}

.journey-tab {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.45);
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.journey-tab span {
  margin-right: 8px;
  color: var(--terracotta);
}

.journey-tab.active {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: var(--white);
}

.journey-tab.active span {
  color: var(--white);
}

.journey-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
}

.journey-image {
  min-height: 510px;
  background: #efe2cf;
}

.journey-image img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
}

.journey-image > img[hidden],
.listing-mock[hidden] {
  display: none;
}

.listing-mock {
  display: grid;
  align-content: center;
  min-height: 510px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(38, 48, 37, 0.08), transparent 42%),
    #efe2cf;
}

.listing-browser {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(176, 139, 110, 0.34);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  background: rgba(255, 253, 248, 0.78);
  color: var(--muted);
  font-size: 13px;
}

.listing-browser span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clay);
  opacity: .7;
}

.listing-browser strong {
  margin-left: 8px;
}

.listing-content,
.listing-risk {
  border: 1px solid rgba(176, 139, 110, 0.34);
  background: var(--white);
}

.listing-content {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
  padding: 18px;
}

.listing-photo {
  overflow: hidden;
  border-radius: 12px;
  background: var(--sand);
}

.listing-photo img {
  min-height: 232px;
}

.listing-details {
  align-self: center;
}

.listing-source {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
}

.listing-details h4 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.15;
}

.listing-price {
  display: block;
  margin-bottom: 8px;
  color: var(--moss);
  font-family: "Fraunces", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.listing-details p {
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 700;
}

.listing-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.listing-checks span {
  padding: 7px 9px;
  border: 1px solid rgba(198, 107, 61, 0.28);
  border-radius: 10px;
  background: rgba(198, 107, 61, 0.08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.listing-risk {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-top: 0;
  border-radius: 0 0 16px 16px;
}

.listing-risk strong {
  color: var(--text);
}

.listing-risk span {
  color: var(--muted);
}

.journey-copy {
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
}

.journey-count {
  margin-bottom: 16px;
  color: var(--terracotta);
  font-family: "Fraunces", Georgia, serif;
  font-size: 62px;
  font-weight: 600;
  line-height: 1;
}

.pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(198, 107, 61, 0.28);
  border-radius: 999px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
}

.journey-copy p,
.journey-copy li {
  color: var(--muted);
}

.journey-copy ul,
.package-grid ul {
  margin: 20px 0 0;
  padding-left: 20px;
}

.journey-copy li,
.package-grid li {
  margin-bottom: 8px;
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 56px;
  align-items: center;
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.quote-box {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 22px;
  background: var(--moss);
  color: var(--soft);
}

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

.dark-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(198, 107, 61, 0.22), transparent 36%),
    var(--moss-2);
  color: var(--soft);
}

.dark-section h2 {
  color: var(--white);
}

.report-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  margin-top: 34px;
}

.report-card {
  border: 1px solid rgba(232, 220, 199, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.06);
  overflow: hidden;
}

.report-head,
.report-row,
.report-result {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(232, 220, 199, 0.12);
}

.report-head {
  background: rgba(255, 253, 248, 0.07);
}

.report-head span,
.report-row span,
.report-result span {
  color: rgba(255, 253, 248, 0.58);
}

.report-head strong {
  color: var(--oat);
}

.report-row.good strong {
  color: #9cc58b;
}

.report-row.warn strong {
  color: var(--oat);
}

.report-row.stop strong {
  color: #e99a70;
}

.report-result {
  display: grid;
  border-bottom: 0;
  background: rgba(139, 157, 131, 0.12);
}

.report-result strong {
  color: var(--white);
  font-size: 20px;
}

.report-copy h3 {
  color: var(--white);
  font-size: 28px;
}

.report-copy p {
  color: rgba(255, 253, 248, 0.68);
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mini-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
}

.mini-list span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--terracotta);
}

.check-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
}

.guarantee-block {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 72px;
  padding: 30px;
  border: 1px solid rgba(198, 107, 61, 0.38);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 8%, rgba(198, 107, 61, 0.16), transparent 34%),
    rgba(255, 253, 248, 0.62);
}

.guarantee-copy h2 {
  margin-bottom: 14px;
}

.guarantee-copy p:not(.section-kicker),
.guarantee-note {
  color: var(--muted);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.guarantee-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.guarantee-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 900;
}

.guarantee-grid strong {
  display: block;
  font-size: 19px;
  line-height: 1.24;
}

.guarantee-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.check-grid article span {
  color: var(--terracotta);
  font-weight: 900;
}

.strengths {
  background:
    radial-gradient(circle at 82% 14%, rgba(198, 107, 61, 0.2), transparent 36%),
    var(--moss-2);
  color: var(--soft);
}

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

.strengths .section-lead {
  color: rgba(255, 253, 248, 0.68);
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.strength-grid article {
  min-height: 244px;
  padding: 24px;
  border: 1px solid rgba(232, 220, 199, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.055);
}

.strength-grid span {
  display: block;
  margin-bottom: 32px;
  color: var(--oat);
  font-weight: 900;
}

.strength-grid h3 {
  color: var(--white);
}

.strength-grid p {
  color: rgba(255, 253, 248, 0.64);
}

.strength-note {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  padding: 22px;
  border: 1px solid rgba(139, 157, 131, 0.36);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(139, 157, 131, 0.16), rgba(198, 107, 61, 0.11));
}

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

.strength-note span {
  color: rgba(255, 253, 248, 0.66);
}

.packages {
  background: rgba(255, 253, 248, 0.28);
  border-top: 1px solid rgba(176, 139, 110, 0.24);
  border-bottom: 1px solid rgba(176, 139, 110, 0.24);
}

.package-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.price {
  margin-bottom: 12px;
  color: var(--terracotta);
  font-size: 34px;
  font-weight: 600;
}

.testimonials {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.34), rgba(232, 220, 199, 0.58));
  border-bottom: 1px solid rgba(176, 139, 110, 0.24);
}

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

.testimonial-intro p:not(.section-kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.review-score {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.review-score strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 44px;
  line-height: 1;
}

.review-score span,
.stars {
  color: var(--ochre);
  letter-spacing: .06em;
}

.review-score em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.review-stack {
  display: grid;
  gap: 14px;
}

.review-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.featured-review {
  border-color: rgba(198, 107, 61, 0.52);
  background:
    radial-gradient(circle at 88% 16%, rgba(198, 107, 61, 0.13), transparent 36%),
    var(--white);
}

.review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.review-head strong,
.review-head span {
  display: block;
}

.review-head div span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.cta {
  background:
    linear-gradient(90deg, rgba(38, 48, 37, 0.05), transparent),
    var(--sand);
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
  background: var(--white);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(176, 139, 110, 0.48);
  border-radius: 12px;
  background: rgba(232, 220, 199, 0.38);
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(198, 107, 61, 0.34);
  border-color: var(--terracotta);
}

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

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--terracotta);
  font-weight: 800;
}

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

.success-note {
  color: #3f6b3b;
}

.error-note {
  color: #9b3322;
}

.lead-form button[disabled] {
  cursor: progress;
  opacity: 0.72;
}

.faq-wrap {
  max-width: 900px;
}

details {
  margin-top: 12px;
  background: var(--white);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--terracotta);
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

footer {
  padding: 28px 0 44px;
}

.footer-inner {
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted);
  font-weight: 700;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1100px) {
  .topbar {
    position: static;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 16px 14px;
  }

  .nav {
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .brand {
    gap: 10px;
    font-size: 15px;
    color: var(--text);
  }

  .nav a {
    flex: 0 0 auto;
    font-size: 13px;
  }

  .topbar-cta {
    display: none;
  }

  .hero-grid,
  .split,
  .report-grid,
  .testimonial-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .photo-wall {
    max-width: 720px;
  }

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

  .guarantee-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  body {
    padding-bottom: 78px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero {
    padding: 26px 0 44px;
  }

  .hero-grid {
    gap: 24px;
  }

  .photo-wall {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 112px;
    gap: 8px;
    min-height: 0;
  }

  .tile-a,
  .tile-b,
  .tile-c,
  .tile-d,
  .tile-e {
    grid-column: auto;
    grid-row: auto;
  }

  .tile-c {
    display: none;
  }

  .tile {
    border-radius: 10px;
    box-shadow: none;
  }

  .decision-card {
    position: relative;
    right: auto;
    bottom: auto;
    grid-column: 1 / -1;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
  }

  .numbers,
  .journey,
  .seller-block,
  .checks,
  .strengths,
  .packages,
  .testimonials,
  .cta,
  .faq,
  .dark-section {
    padding: 46px 0;
  }

  .package-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

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

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

  .number-grid,
  .check-grid,
  .strength-grid,
  .package-grid {
    gap: 10px;
    margin-top: 22px;
  }

  .number-grid article,
  .check-grid article,
  .package-grid article,
  .strength-grid article,
  .quote-box,
  .lead-form,
  details {
    padding: 18px;
    border-radius: 12px;
  }

  .cta-grid {
    gap: 26px;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .guarantee-block {
    margin-bottom: 34px;
    padding: 18px;
    border-radius: 12px;
  }

  .guarantee-grid {
    gap: 10px;
  }

  .guarantee-grid article {
    padding: 14px;
    border-radius: 12px;
  }

  .strength-grid article {
    min-height: auto;
  }

  .strength-grid span {
    margin-bottom: 16px;
  }

  .review-card {
    padding: 18px;
    border-radius: 12px;
  }

  .journey-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin: 24px 0 12px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .journey-tabs::-webkit-scrollbar {
    display: none;
  }

  .journey-tab {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 13px;
  }

  .journey-tab span {
    margin-right: 5px;
  }

  .journey-card {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }

  .journey-image,
  .journey-image img {
    min-height: 260px;
  }

  .listing-mock {
    min-height: 260px;
    padding: 12px;
  }

  .listing-content {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .listing-photo img {
    min-height: 126px;
  }

  .listing-details h4 {
    font-size: 19px;
  }

  .listing-price {
    font-size: 26px;
  }

  .listing-risk {
    padding: 12px;
  }

  .journey-copy {
    padding: 22px;
  }

  .journey-count {
    margin-bottom: 10px;
    font-size: 42px;
  }

  .report-head,
  .report-row {
    display: grid;
    gap: 4px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-proof div {
    padding: 12px 8px 0 0;
  }

  .footer-inner {
    display: grid;
    justify-content: stretch;
  }

  .footer-contact {
    display: grid;
    justify-content: stretch;
    gap: 8px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(176, 139, 110, 0.28);
    background: rgba(255, 253, 248, 0.94);
    box-shadow: 0 -16px 36px rgba(35, 26, 19, 0.14);
    backdrop-filter: blur(14px);
  }

  .mobile-sticky-cta .btn {
    min-height: 46px;
    padding: 0 12px;
    border-radius: 10px;
    white-space: nowrap;
  }
}

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

  h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  h2 {
    font-size: 29px;
  }

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

  .hero-actions {
    display: grid;
  }

  .sale-badge {
    margin-bottom: 18px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .lead {
    margin-bottom: 22px;
  }

  .deal-chip {
    grid-template-columns: 36px 1fr;
    gap: 12px;
    margin: 14px 0 22px;
    padding: 12px;
    border-radius: 12px;
  }

  .chip-icon {
    width: 34px;
    height: 34px;
  }

  .photo-wall {
    grid-auto-rows: 96px;
  }

  .number-grid article,
  .check-grid article,
  .package-grid article,
  .strength-grid article,
  .review-card,
  .lead-form {
    padding: 14px;
  }

  .num {
    margin-bottom: 8px;
    font-size: 27px;
  }

  .number-grid article strong,
  .check-grid article h3,
  .package-grid article h3 {
    font-size: 16px;
    line-height: 1.25;
  }

  .number-grid p,
  .check-grid p,
  .package-grid p,
  .package-grid li {
    font-size: 14px;
    line-height: 1.45;
  }

  .package-grid ul,
  .journey-copy ul {
    margin-top: 12px;
  }

  .price {
    font-size: 29px;
  }

  .package-action {
    min-height: 42px;
    margin-top: 16px;
  }

  .report-head,
  .report-row,
  .report-result {
    padding: 13px 14px;
  }

  .guarantee-grid strong {
    font-size: 16px;
  }

  .guarantee-note {
    padding-top: 12px;
    font-size: 14px;
  }

  .review-card p {
    font-size: 15px;
  }

  .btn {
    width: 100%;
  }
}
