:root {
  --ivory: #f7f2e8;
  --paper: #fffcf4;
  --leaf: #173724;
  --moss: #52633d;
  --teal: #15565a;
  --gold: #bd8730;
  --sand: #e3c37d;
  --ink: #142319;
  --muted: #64705e;
  --line: rgba(23, 55, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.7), rgba(247, 242, 232, 0.94)),
    var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  padding: 24px clamp(18px, 4vw, 54px) 56px;
}

.hero-video {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  z-index: -3;
  opacity: 0.64;
  filter: saturate(0.9) contrast(0.98) brightness(1.02) blur(0.8px);
  transform: scale(1.02);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 252, 244, 0.2), transparent 28%),
    linear-gradient(110deg, rgba(247, 242, 232, 0.72), rgba(227, 195, 125, 0.2) 46%, rgba(21, 86, 90, 0.18)),
    linear-gradient(180deg, rgba(255, 252, 244, 0.1), rgba(255, 252, 244, 0.86) 92%);
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 242, 232, 0.66), rgba(247, 242, 232, 0.12), rgba(247, 242, 232, 0.6)),
    radial-gradient(ellipse at center, transparent 0 42%, rgba(20, 35, 25, 0.14) 100%);
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1160px, 100%);
  margin: 0 auto;
  min-height: 52px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 58px;
  height: 58px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(23, 55, 36, 0.78);
  font-size: 0.85rem;
  font-weight: 600;
}

nav a {
  white-space: nowrap;
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 244, 0.58);
  backdrop-filter: blur(12px);
}

.language-switch button {
  border: 0;
  width: 40px;
  height: 34px;
  background: transparent;
  color: var(--leaf);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.language-switch .active {
  background: var(--leaf);
  color: var(--paper);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 244, 0.72);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--leaf);
  transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle span:first-child {
  top: 15px;
}

.menu-toggle span:last-child {
  top: 24px;
}

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

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

.hero-content {
  width: min(780px, 100%);
  margin: auto;
  text-align: center;
  padding-top: clamp(72px, 12vh, 128px);
  padding-bottom: clamp(34px, 9vh, 90px);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
}

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

h1 {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 18px;
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5.6vw, 4.95rem);
  line-height: 1;
  font-weight: 500;
  text-wrap: balance;
}

.hero-copy {
  max-width: 700px;
  margin: 0 auto 26px;
  color: rgba(20, 35, 25, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(23, 55, 36, 0.2);
  font-size: 0.93rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.primary {
  background: var(--leaf);
  color: var(--paper);
}

.disabled-button {
  cursor: not-allowed;
  opacity: 0.56;
  pointer-events: none;
}

.secondary {
  background: rgba(255, 252, 244, 0.5);
  color: var(--leaf);
  backdrop-filter: blur(12px);
}

.section,
.split-section,
.insight-band,
.final-cta,
.site-footer {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: clamp(64px, 9vw, 116px) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.section-heading span {
  color: var(--gold);
  font-weight: 900;
}

h2 {
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  font-weight: 500;
}

h3 {
  color: var(--leaf);
  font-size: 1.16rem;
  line-height: 1.25;
}

.steps,
.plans,
.faq-grid,
.preview-grid,
.trust-strip,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step,
.plan-card,
details {
  background: rgba(255, 252, 244, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(20, 35, 25, 0.06);
}

.step {
  padding: 28px;
  min-height: 240px;
}

.step strong {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 0.82rem;
}

.step p,
.plan-card p,
.plan-card li,
.insight-band p,
.help-section p,
details p,
.final-cta p {
  color: var(--muted);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 7vw, 84px);
  align-items: start;
  padding: clamp(42px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(227, 195, 125, 0.25), rgba(21, 86, 90, 0.12)),
    rgba(255, 252, 244, 0.72);
  border-block: 1px solid var(--line);
}

.include-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.include-list li {
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 252, 244, 0.62);
  color: var(--leaf);
  font-weight: 700;
}

.section-intro {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.receive-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: start;
}

.receive-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.receive-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--leaf);
  font-weight: 800;
}

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

.preview-grid figure {
  margin: 0;
}

.preview-sheet {
  min-height: 310px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.92), rgba(247, 242, 232, 0.78)),
    repeating-linear-gradient(180deg, transparent 0 34px, rgba(23, 55, 36, 0.08) 35px);
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(20, 35, 25, 0.06);
}

.preview-sheet-alt {
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.92), rgba(227, 195, 125, 0.18)),
    repeating-linear-gradient(180deg, transparent 0 34px, rgba(23, 55, 36, 0.08) 35px);
}

.preview-sheet span,
.preview-sheet strong {
  display: block;
}

.preview-sheet span {
  margin-bottom: 56px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-sheet strong {
  margin-bottom: 14px;
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.preview-sheet p,
.preview-grid figcaption {
  color: var(--muted);
  line-height: 1.55;
}

.preview-grid figcaption {
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 700;
}

.after-payment {
  margin-top: clamp(8px, 2vw, 18px);
}

.after-list {
  display: grid;
  gap: 12px;
}

.after-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: rgba(255, 252, 244, 0.66);
  border: 1px solid var(--line);
}

.after-item strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--leaf);
  color: var(--paper);
  font-size: 0.82rem;
}

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

.plans-section {
  width: min(1220px, calc(100% - 36px));
}

.trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.trust-strip span {
  padding: 13px 14px;
  background: rgba(255, 252, 244, 0.7);
  border: 1px solid var(--line);
  color: var(--leaf);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.plan-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 28px;
  min-height: 570px;
}

.recommended-badge {
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 11px;
  background: var(--sand);
  color: var(--leaf);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.plan-topline strong {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 26px;
  padding-left: 18px;
}

.tax-note {
  margin-top: auto;
  margin-bottom: 16px;
  font-size: 0.82rem;
}

.plan-button {
  background: transparent;
  color: var(--leaf);
}

.plan-card.featured {
  background: var(--leaf);
  transform: translateY(-12px);
}

.plan-card.featured h3,
.plan-card.featured strong,
.plan-card.featured p,
.plan-card.featured li {
  color: var(--paper);
}

.plan-card.featured .plan-button {
  border-color: rgba(255, 252, 244, 0.34);
  background: var(--sand);
  color: var(--leaf);
}

.insight-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 6vw, 74px);
  align-items: center;
  padding: clamp(48px, 7vw, 86px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
}

.founder-photo {
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(23, 55, 36, 0.08), rgba(189, 135, 48, 0.14)),
    rgba(255, 252, 244, 0.72);
  border: 1px solid var(--line);
  color: rgba(20, 35, 25, 0.48);
  font-weight: 800;
}

.founder-copy p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.75;
}

.founder-fields {
  display: grid;
  gap: 8px;
  max-width: 420px;
  margin-top: 24px;
  padding: 18px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 252, 244, 0.66);
}

.founder-fields strong {
  color: var(--leaf);
}

.founder-fields span {
  color: var(--muted);
  line-height: 1.5;
}

.sample-section {
  padding-top: clamp(56px, 8vw, 98px);
}

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

.sample-card {
  min-height: 190px;
  padding: 26px;
  background: rgba(255, 252, 244, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(20, 35, 25, 0.05);
}

.sample-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.sample-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.help-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 24px;
  align-items: stretch;
}

.help-copy,
.care-note {
  padding: clamp(28px, 5vw, 54px);
  background: rgba(255, 252, 244, 0.72);
  border: 1px solid var(--line);
}

.whatsapp-button {
  margin-top: 20px;
  background: #1f8f55;
  color: var(--paper);
  border-color: rgba(31, 143, 85, 0.28);
}

.care-note {
  display: flex;
  align-items: center;
  margin: 0;
  color: var(--leaf);
  font-weight: 700;
}

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

details {
  padding: 22px 24px;
}

summary {
  cursor: pointer;
  color: var(--leaf);
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
}

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

.review-card {
  padding: 24px;
  background: rgba(255, 252, 244, 0.72);
  border: 1px solid var(--line);
}

.final-cta {
  padding: clamp(64px, 9vw, 110px) 18px clamp(76px, 10vw, 130px);
  text-align: center;
}

.final-cta img {
  width: 120px;
  margin: 0 auto 24px;
  mix-blend-mode: multiply;
}

.final-cta h2 {
  max-width: 760px;
  margin-inline: auto;
}

.final-cta p {
  margin-bottom: 28px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: rgba(20, 35, 25, 0.56);
  font-size: 0.86rem;
  font-weight: 700;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  flex-basis: 100%;
}

.site-footer img {
  width: 78px;
  height: auto;
  filter: grayscale(1) opacity(0.36) contrast(0.82);
}

.site-footer p {
  margin: 0;
  color: rgba(20, 35, 25, 0.56);
}

.site-footer a {
  color: rgba(20, 35, 25, 0.68);
  white-space: nowrap;
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 18px;
  background:
    linear-gradient(135deg, rgba(247, 242, 232, 0.86), rgba(227, 195, 125, 0.16), rgba(21, 86, 90, 0.12)),
    var(--paper);
}

.thank-you-card {
  width: min(640px, 100%);
  margin: auto;
  padding: clamp(34px, 7vw, 70px);
  text-align: center;
  background: rgba(255, 252, 244, 0.74);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(20, 35, 25, 0.08);
}

.thank-you-card img {
  width: 150px;
  margin: 0 auto 22px;
}

.thank-you-card h1 {
  font-size: clamp(2.3rem, 7vw, 4.4rem);
}

.thank-you-card p:not(.eyebrow) {
  max-width: 440px;
  margin: 0 auto 24px;
  color: var(--muted);
  line-height: 1.7;
}

.plan-receipt {
  display: block;
  width: fit-content;
  margin: 0 auto 22px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  color: var(--leaf);
  font-size: 0.85rem;
  font-weight: 800;
}

.thank-you-home {
  display: block;
  margin-top: 18px;
  color: rgba(20, 35, 25, 0.62);
  font-size: 0.88rem;
  font-weight: 800;
}

.thank-you-footer {
  width: min(640px, 100%);
  margin-top: 28px;
}

.legal-page {
  min-height: 100vh;
  padding: 28px 18px 40px;
  background:
    linear-gradient(135deg, rgba(247, 242, 232, 0.86), rgba(227, 195, 125, 0.16), rgba(21, 86, 90, 0.12)),
    var(--paper);
}

.legal-shell {
  width: min(860px, 100%);
  margin: 0 auto;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 32px;
}

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

.legal-card {
  padding: clamp(28px, 6vw, 58px);
  background: rgba(255, 252, 244, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(20, 35, 25, 0.07);
}

.legal-card h1 {
  margin-inline: 0;
  text-align: left;
}

.legal-card h2 {
  margin-top: 30px;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-placeholder {
  padding: 14px 16px;
  border: 1px dashed rgba(23, 55, 36, 0.28);
  background: rgba(255, 252, 244, 0.6);
  color: var(--leaf);
  font-weight: 800;
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    padding: 16px 16px 48px;
  }

  .site-header {
    position: relative;
    grid-template-columns: auto auto;
    gap: 12px;
    min-height: 48px;
  }

  .header-actions {
    justify-self: end;
  }

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

  nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    padding: 14px;
    text-align: center;
    background: rgba(255, 252, 244, 0.94);
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(20, 35, 25, 0.08);
    z-index: 5;
  }

  .menu-open nav {
    display: grid;
  }

  nav a {
    padding: 10px 8px;
    border: 1px solid var(--line);
  }

  .hero-content {
    padding-top: 92px;
    padding-bottom: 12px;
  }

  .steps,
  .plans,
  .sample-grid,
  .faq-grid,
  .split-section,
  .insight-band,
  .help-section,
  .receive-layout,
  .founder-section {
    grid-template-columns: 1fr;
  }

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

  .plan-card,
  .plan-card.featured {
    min-height: auto;
    transform: none;
  }

  .include-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-inline: 16px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .language-switch button {
    width: 36px;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.05rem, 13vw, 3rem);
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.7rem);
  }

  .section-heading {
    align-items: start;
    flex-direction: column-reverse;
  }

  .trust-strip,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .step,
  .plan-card,
  details,
  .help-copy,
  .care-note,
  .split-section,
  .preview-sheet {
    padding: 22px;
  }

  .preview-sheet {
    min-height: 240px;
  }

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