/* ── RESET & BASE ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
:root {
  --cream: #f2ebe0;
  --sand: #e4d9c8;
  --sand-mid: #c8b896;
  --stone: #6a5c4d;
  --bark: #3a3026;
  --sage: #7a9668;
  --sage-mid: #5c7a4a;
  --sage-deep: #2e4a22;
  --sage-text: #4a663b;
  --sage-pale: #eaf0e6;
  --terracota: #c07a5a;
  --white: #fafaf5;
  --radius: 12px;
}
body {
  background: var(--sand);
  color: var(--bark);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
/* Focus styles for keyboard navigation */
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--sage-deep);
  outline-offset: 2px;
}
body.dark button:focus-visible,
body.dark a:focus-visible,
body.dark input:focus-visible,
body.dark .ml-onclick-form:focus-visible {
  outline: 3px solid #7a9668;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1.5deg);
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes draw {
  from {
    stroke-dashoffset: 800;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes popIn {
  0% {
    transform: translateY(-50%) scale(0);
    opacity: 0;
  }
  70% {
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}
.nav-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(242, 235, 224, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 184, 150, 0.3);
  animation: fadeIn 0.6s ease both;
  position: fixed;
  padding-right: 160px;
}
.theme-toggle {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--sage-deep);
  color: var(--cream);
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
  z-index: 150;
}
.theme-toggle:hover {
  background: var(--sage-mid);
  transform: translateY(-50%) translateY(-1px);
}
.nav-instagram {
  position: absolute;
  top: 50%;
  right: 86px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
  text-decoration: none;
  z-index: 150;
  opacity: 1;
  animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  animation-delay: 0.3s;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}
.nav-instagram:hover {
  transform: translateY(-50%) scale(1.15);
}
@media (max-width: 700px) {
  nav {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding-right: 24px;
  }
  .theme-toggle {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    border-radius: 999px;
    padding: 10px 14px;
  }
  .theme-toggle:hover {
    transform: translateY(-1px);
  }
  .nav-instagram {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    border-radius: 999px;
    padding: 10px 14px;
    opacity: 1;
    animation: none;
  }
  .nav-instagram:hover {
    transform: scale(1.15);
  }
}
body.dark {
  background: #111111;
  color: #ece9e2;
}
body.dark .hero-title,
body.dark .problem-title,
body.dark .solution-title,
body.dark .promise-title,
body.dark .social-title,
body.dark .fcta-title {
  color: #f5f5f5;
}
body.dark strong {
  color: #e8d5c0;
}
body.dark nav {
  background: rgba(12, 12, 12, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
body.dark .hero {
  background: rgba(255, 255, 255, 0.03);
}
body.dark .hero-subtitle,
body.dark .hero-desc,
body.dark .hero-form-note,
body.dark .counter-text,
body.dark .scroll-hint span,
body.dark .scroll-arrow,
body.dark .problem-title,
body.dark .problem-card h3,
body.dark .problem-card p,
body.dark .solution-lead,
body.dark .cat-desc,
body.dark .coming-tag,
body.dark .promise-title,
body.dark .promise-body,
body.dark .ppill-text,
body.dark .social-sub,
body.dark .tcard-quote,
body.dark .tcard-name,
body.dark .tcard-sub,
body.dark .footer-tagline,
body.dark .ftag,
body.dark .footer-copy,
body.dark .fcta-sub,
body.dark .fcta-desc,
body.dark .policies-terms {
  color: #d4d4d4;
}
body.dark .hero-badge,
body.dark .hero-form {
  background: #1d1d1d;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
body.dark #heroFormWrap .ml-onclick-form {
  background: var(--sage-deep);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
body.dark #heroFormWrap .ml-onclick-form:hover {
  background: var(--sage-mid);
}
body.dark .final-form {
  background: transparent;
}
body.dark #finalFormWrap .ml-onclick-form {
  background: var(--sage-deep);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
body.dark #finalFormWrap .ml-onclick-form:hover {
  background: var(--sage-mid);
}
body.dark .success-msg,
body.dark .problem-card,
body.dark .ppill,
body.dark .tcard {
  background: #1d1d1d;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
body.dark .hero-form input,
body.dark .final-form input {
  color: #ece9e2;
}
body.dark .hero-form input::placeholder,
body.dark .final-form input::placeholder {
  color: #b5b5b5;
}
body.dark .hero-badge {
  background: rgba(122, 150, 104, 0.18);
  color: #e9f1df;
  border-color: rgba(122, 150, 104, 0.45);
}
body.dark .solution {
  background: #1d2b21;
}
body.dark .promise {
  background: #171717;
}
body.dark .footer {
  background: #0b0b0b;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
body.dark .footer-logo,
body.dark .footer-tagline,
body.dark .footer-copy,
body.dark .ftag {
  color: #d8d8d8;
}
body.dark .theme-toggle {
  background: #333333;
  color: #f0f0f0;
}
body.dark .nav-instagram {
  color: #f0f0f0;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Amatic SC", cursive;
  font-size: 28px;
  font-weight: 700;
  color: var(--sage-mid);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.nav-logo img,
.footer-logo img {
  width: 30px;
  height: auto;
  display: block;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Amatic SC", cursive;
  font-size: 32px;
  font-weight: 700;
  color: var(--cream);
}
.nav-cta {
  background: var(--sage-deep);
  color: var(--cream);
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
}
.nav-cta:hover {
  background: var(--sage-mid);
  transform: scale(1.03);
}
.nav-cta:focus-visible {
  outline: 3px solid var(--sage-deep);
  outline-offset: 2px;
}
/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
/* organic circles background */
.hero-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hc {
  position: absolute;
  border-radius: 50%;
}
.hc-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(200, 184, 150, 0.25) 0%,
    transparent 70%
  );
  top: -200px;
  left: -200px;
}
.hc-2 {
  width: 500px;
  height: 500px;
  border: 1px solid rgba(122, 150, 104, 0.15);
  top: 50px;
  right: -150px;
  animation: float 9s ease-in-out infinite;
}
.hc-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(122, 150, 104, 0.1) 0%,
    transparent 70%
  );
  bottom: -80px;
  left: 30%;
}
.hc-4 {
  width: 200px;
  height: 200px;
  border: 1px solid rgba(122, 150, 104, 0.1);
  bottom: 100px;
  left: 10%;
  animation: float 12s ease-in-out infinite reverse;
}
/* fern deco hero */
.hero-fern {
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 340px;
  height: 420px;
  opacity: 0.09;
  pointer-events: none;
  animation: float 14s ease-in-out infinite;
}
.hero-fern-left {
  position: absolute;
  top: 80px;
  left: -40px;
  width: 200px;
  height: 280px;
  opacity: 0.06;
  pointer-events: none;
  transform: scaleX(-1);
  animation: float 16s ease-in-out infinite reverse;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage-pale);
  border: 1px solid rgba(122, 150, 104, 0.35);
  color: var(--sage-text);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-badge::before {
  content: "🌿";
  font-size: 12px;
}
.hero-title {
  font-family: "Amatic SC", cursive;
  font-size: clamp(56px, 10vw, 96px);
  font-weight: 700;
  color: var(--sage-deep);
  line-height: 0.95;
  margin-bottom: 12px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-subtitle {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 3vw, 26px);
  font-style: italic;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 20px;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-desc {
  max-width: 520px;
  font-size: 15px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-desc strong {
  color: var(--bark);
  font-weight: 400;
}
/* Hero form */
.hero-form-wrap {
  width: 100%;
  max-width: 480px;
  animation: fadeUp 0.7s 0.5s ease both;
}
#heroFormWrap {
  display: block;
}

#heroFormWrap .ml-onclick-form {
  display: block;
  width: 100%;
  padding: 16px 28px;
  background: var(--sage-deep);
  color: var(--cream);
  border: none;
  border-radius: 50px;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  box-shadow: 0 8px 32px rgba(58, 48, 38, 0.1);
}

#heroFormWrap .ml-onclick-form:hover {
  background: var(--sage-mid);
  transform: scale(1.02);
}
.hero-form-note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.05em;
}
.hero-form-note strong {
  color: var(--sage-text);
  font-weight: 500;
}
/* counter */
.counter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  animation: fadeUp 0.7s 0.6s ease both;
}
.counter-avatars {
  display: flex;
}
.avatar-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  margin-left: -8px;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: white;
}
.avatar-dot:first-child {
  margin-left: 0;
}
.avatar-dot:nth-child(2) {
  background: var(--sand-mid);
}
.avatar-dot:nth-child(3) {
  background: var(--terracota);
  opacity: 0.8;
}
.counter-text {
  font-size: 12px;
  color: var(--stone);
  font-weight: 300;
}
.counter-text strong {
  color: var(--sage-text);
  font-weight: 500;
}
/* scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeIn 1s 1.2s ease both;
}
.scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid var(--stone);
  border-bottom: 1.5px solid var(--stone);
  transform: rotate(45deg);
  animation: float 2s ease-in-out infinite;
}
/* ── PROBLEM SECTION ── */
.problem {
  padding: 100px 24px;
  max-width: 900px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sage-text);
  margin-bottom: 16px;
  display: block;
}
.problem-title {
  font-family: "Amatic SC", cursive;
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 700;
  color: var(--bark);
  line-height: 1.1;
  margin-bottom: 24px;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(58, 48, 38, 0.08);
}
.problem-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.problem-card h3 {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.problem-card p {
  font-size: 12px;
  color: var(--bark);
  line-height: 1.55;
}
/* ── SOLUTION / WHAT IS SINQUIA ── */
.solution {
  background: var(--sage-deep);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.solution::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}
.solution-blob {
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 360px;
  height: 360px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  background: rgba(122, 150, 104, 0.15);
  pointer-events: none;
}
.solution-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.solution .section-eyebrow {
  color: var(--sage);
}
.solution-title {
  font-family: "Amatic SC", cursive;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 20px;
}
.solution-lead {
  font-size: 16px;
  font-weight: 300;
  color: rgba(242, 235, 224, 0.75);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.solution-lead strong {
  color: var(--cream);
  font-weight: 400;
}
/* category cards */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.cat-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-3px);
}
.cat-icon {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
}
.cat-title {
  font-family: "Amatic SC", cursive;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}
.cat-desc {
  font-size: 11.5px;
  color: var(--sage-pale);
  line-height: 1.55;
}
.coming-tag {
  display: inline-block;
  background: rgba(122, 150, 104, 0.3);
  color: var(--white);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 8px;
}
/* ── PROMISE STRIP ── */
.promise {
  background: var(--sand);
  padding: 56px 24px;
  overflow: hidden;
  position: relative;
}
.promise-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.promise-text-block {
  flex: 1;
}
.promise-title {
  font-family: "Amatic SC", cursive;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--sage-deep);
  line-height: 1.1;
  margin-bottom: 16px;
}
.promise-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
  max-width: 380px;
}
.promise-body strong {
  color: var(--bark);
  font-weight: 400;
}
.promise-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.ppill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(122, 150, 104, 0.25);
  border-radius: 40px;
  padding: 10px 18px 10px 12px;
  white-space: nowrap;
}
.ppill-icon {
  font-size: 16px;
}
.ppill-text {
  font-size: 12px;
  font-weight: 400;
  color: var(--bark);
  letter-spacing: 0.02em;
}
/* ── SOCIAL PROOF / TESTIMONIALS ── */
.social {
  padding: 100px 24px;
  max-width: 900px;
  margin: 0 auto;
}
.social-title {
  font-family: "Amatic SC", cursive;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--bark);
  margin-bottom: 10px;
}
.social-sub {
  font-size: 14px;
  color: var(--stone);
  font-weight: 300;
  margin-bottom: 48px;
  font-style: italic;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tcard {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.tcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(58, 48, 38, 0.09);
}
.tcard-quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--bark);
  line-height: 1.6;
  flex: 1;
}
.tcard-quote::before {
  content: '"';
  color: var(--sage);
  font-size: 24px;
  line-height: 0;
  vertical-align: -8px;
  margin-right: 3px;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tcard-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.tcard-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--bark);
}
.tcard-sub {
  font-size: 10px;
  color: var(--stone);
  font-weight: 300;
}
/* ── FINAL CTA ── */
.final-cta {
  padding: 80px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fcta-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.fcta-c1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(122, 150, 104, 0.1) 0%,
    transparent 70%
  );
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}
.fcta-c2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(122, 150, 104, 0.12);
  border-radius: 50%;
  bottom: -80px;
  right: 10%;
  animation: float 10s ease-in-out infinite;
}
.fcta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(122, 150, 104, 0.12);
  border: 1px solid rgba(122, 150, 104, 0.3);
  color: var(--sage-mid);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 28px;
}
.fcta-title {
  font-family: "Amatic SC", cursive;
  font-size: clamp(44px, 8vw, 80px);
  font-weight: 700;
  color: var(--sage-deep);
  line-height: 1;
  margin-bottom: 16px;
}
.fcta-sub {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--bark);
  margin-bottom: 12px;
}
.fcta-desc {
  max-width: 460px;
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 40px;
}
.fcta-desc p {
  margin-bottom: 12px;
}
.fcta-desc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.fcta-desc li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.6;
}
.fcta-desc li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sage);
  font-size: 11px;
}
.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage-deep);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.discount-badge span {
  font-size: 18px;
  font-weight: 700;
}
/* final form — same style, bigger */
.final-form-wrap {
  width: 100%;
  max-width: 500px;
}
#finalFormWrap {
  display: block;
}

#finalFormWrap .ml-onclick-form {
  display: block;
  width: 100%;
  padding: 18px 30px;
  background: var(--sage-deep);
  color: var(--cream);
  border: none;
  border-radius: 50px;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  box-shadow: 0 12px 40px rgba(58, 48, 38, 0.12);
}

#finalFormWrap .ml-onclick-form:hover {
  background: var(--sage-mid);
  transform: scale(1.02);
}
.policies-terms {
  margin-top: 14px;
  font-size: 11px;
  color: var(--stone);
  line-height: 1.6;
}
.policies-terms a {
  color: var(--sand-mid);
  text-decoration: none;
}
/* ── SUCCESS STATE ── */
.success-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  background: var(--sage-pale);
  border: 1px solid rgba(122, 150, 104, 0.4);
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
}
.success-msg.show {
  display: flex;
}
.success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
}
.success-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--sage);
  animation: pulse-ring 1.5s ease-out infinite;
}
.success-title {
  font-family: "Amatic SC", cursive;
  font-size: 30px;
  font-weight: 700;
  color: var(--sage-deep);
}
.success-body {
  font-size: 13px;
  color: var(--stone);
  text-align: center;
  line-height: 1.6;
}
.success-body strong {
  color: var(--sage-text);
  font-weight: 500;
}
/* ── FOOTER ── */
footer {
  background: var(--bark);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo {
  font-family: "Amatic SC", cursive;
  font-size: 32px;
  font-weight: 700;
  color: var(--cream);
}
.footer-tagline {
  font-size: 12px;
  font-weight: 300;
  color: rgba(242, 235, 224, 0.45);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.ftag {
  font-size: 10px;
  color: rgba(242, 235, 224, 0.35);
  border: 1px solid rgba(242, 235, 224, 0.12);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.1em;
}
.footer-copy {
  font-size: 10px;
  color: rgba(242, 235, 224, 0.25);
  font-weight: 300;
  margin-top: 8px;
}
/* ── CONTENT PAGES (legal/privacy/cookies) ── */
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-content {
  flex: 1;
  max-width: 800px;
  margin: 100px auto 60px;
  padding: 0 24px;
  width: 100%;
}
.page-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 48px;
}
.page-content h1 {
  font-family: "Amatic SC", cursive;
  font-size: clamp(38px, 6vw, 56px);
  font-weight: 700;
  color: var(--sage-deep);
  line-height: 1.1;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--sage);
}
.page-content h2 {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--bark);
  margin-top: 36px;
  margin-bottom: 12px;
}
.page-content p,
.page-content li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--stone);
}
.page-content p {
  margin-bottom: 14px;
}
.page-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.page-content li {
  margin-bottom: 8px;
}
.page-content strong {
  color: var(--bark);
  font-weight: 500;
}
.page-content a {
  color: var(--sage-text);
  text-decoration: none;
}
.page-content a:hover {
  text-decoration: underline;
}
.page-content .box {
  background: var(--sage-pale);
  border: 1px solid rgba(122, 150, 104, 0.35);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--bark);
}
/* back button in nav */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--bark);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition:
    background 0.2s,
    color 0.2s;
  margin-left: auto;
  margin-right: 60px;
}
.back-link:hover {
  background: rgba(122, 150, 104, 0.12);
  color: var(--sage-deep);
}
body.dark .back-link {
  color: #d4d4d4;
}
body.dark .back-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #f5f5f5;
}
body.dark .page-card {
  background: #1d1d1d;
  border-color: rgba(255, 255, 255, 0.15);
}
body.dark .page-content h1 {
  color: #f5f5f5;
  border-bottom-color: var(--sage);
}
body.dark .page-content h2 {
  color: #f5f5f5;
}
body.dark .page-content p,
body.dark .page-content li {
  color: #d4d4d4;
}
body.dark .page-content strong {
  color: #ece9e2;
}
body.dark .page-content .box {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(122, 150, 104, 0.3);
  color: #d4d4d4;
}
/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .promise-inner {
    flex-direction: column;
    gap: 32px;
  }
  .hero-form {
    flex-direction: column;
    border-radius: 16px;
  }
  .hero-form input[type="email"] {
    border-bottom: 1px solid var(--sand);
  }
  #heroFormWrap .ml-onclick-form {
    border-radius: 16px;
    text-align: center;
  }
  .back-link {
    margin-right: 0;
    margin-left: 0;
    font-size: 12px;
    padding: 6px 10px;
  }
  .page-card {
    padding: 28px 20px;
  }
  .page-content {
    margin-top: 80px;
  }
}
