/* ==========================================================
   MonetStudio — Salespage AIDA
   Tokens
   ========================================================== */
:root {
  --bg: #F1F3EF;
  --surface: #FFFFFF;
  --ink: #131611;
  --ink-soft: #4B5148;
  --line: #DCE0D6;
  --accent-gold: #E7A73C;
  --accent-gold-dark: #C88822;
  --accent-green: #1F6F5C;
  --accent-green-dark: #164F42;
  --wa-green: #22B573;
  --wa-green-dark: #1B9760;
  --dark: #131611;
  --dark-surface: #1B1F19;

  --font-display: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;

  --shadow-card: 0 1px 2px rgba(19,22,17,0.04), 0 8px 24px -12px rgba(19,22,17,0.18);
  --container: 1080px;
}

/* ==========================================================
   Reset
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
ul, ol { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; line-height: 1.15; }
p { margin: 0; }
.mono { font-family: var(--font-mono); }

:focus-visible {
  outline: 3px solid var(--accent-gold-dark);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ==========================================================
   Layout helpers
   ========================================================== */
.section__inner, .hero__inner, .nav__inner, .footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 64px 0; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0 0 14px;
}
.eyebrow--dark { color: var(--accent-green-dark); }

/* ==========================================================
   Nav
   ========================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(241,243,239,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.nav__brand span { color: var(--accent-green); }
.nav__cta {
  font-size: 14px;
  font-weight: 600;
  background: var(--ink);
  color: #fff;
  padding: 9px 16px;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.nav__cta:hover { background: var(--accent-green-dark); transform: translateY(-1px); }

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  background:
    radial-gradient(120% 140% at 15% -10%, rgba(231,167,60,0.25), transparent 55%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-surface) 100%);
  color: #fff;
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 1; }
.hero__headline {
  font-size: clamp(30px, 6vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  max-width: 16ch;
}
.hero__sub {
  font-size: clamp(16px, 2.4vw, 19px);
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-m);
  overflow: hidden;
  margin: 0;
}
.hero__stat {
  background: rgba(255,255,255,0.04);
  padding: 16px 14px;
}
.hero__stat dt {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.hero__stat dd {
  margin: 0;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: var(--accent-gold);
}

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent-gold);
  color: var(--dark);
}
.btn--primary:hover { background: #f0b658; }

.btn--wa {
  background: var(--wa-green);
  color: #fff;
}
.btn--wa:hover { background: var(--wa-green-dark); }
.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn--outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--outline:hover { border-color: var(--accent-green); color: var(--accent-green-dark); }

/* ==========================================================
   Problem section
   ========================================================== */
.problem { background: var(--bg); }
.problem h2 {
  font-size: clamp(24px, 4.4vw, 34px);
  max-width: 20ch;
  margin-bottom: 18px;
}
.lead {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 62ch;
  margin-bottom: 34px;
}
.lead--light { color: rgba(255,255,255,0.82); }

.problem__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.problem__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px;
}
.problem__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  margin-bottom: 8px;
}

/* ==========================================================
   Value section
   ========================================================== */
.value { background: var(--surface); }
.value h2 { font-size: clamp(24px, 4.4vw, 34px); max-width: 22ch; margin-bottom: 30px; }

.value__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.value__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-m);
}
.value__mark {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.value__item p { font-size: 15px; color: var(--ink); }

/* ==========================================================
   Proof section
   ========================================================== */
.proof { background: var(--bg); }
.proof h2 { font-size: clamp(24px, 4.4vw, 34px); max-width: 22ch; margin-bottom: 30px; }

.proof__stats {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 30px;
}
.proof__statcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 18px 20px;
}
.proof__statcard--accent {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: #fff;
}
.proof__statlabel {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.65;
  margin-bottom: 6px;
}
.proof__statvalue { font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.proof__statdesc { font-size: 13px; opacity: 0.8; }
.proof__arrow {
  align-self: center;
  font-size: 20px;
  color: var(--accent-gold-dark);
  transform: rotate(90deg);
}

.testimonial {
  margin: 0 0 40px;
  padding: 24px;
  background: var(--surface);
  border-left: 4px solid var(--accent-gold);
  border-radius: var(--radius-s);
}
.testimonial p {
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.testimonial cite {
  font-style: normal;
  font-size: 13px;
  color: var(--ink-soft);
}
.testimonial__note { display: block; margin-top: 2px; opacity: 0.7; }

.process__title {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-green-dark);
  margin-bottom: 18px;
}
.process__list {
  display: grid;
  gap: 16px;
}
.process__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.process__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.process__step-title { font-weight: 700; margin-bottom: 4px; }
.process__step p:last-child { color: var(--ink-soft); font-size: 14px; }

/* ==========================================================
   Pricing
   ========================================================== */
.pricing { background: var(--surface); }
.pricing h2 { font-size: clamp(24px, 4.4vw, 34px); max-width: 22ch; margin-bottom: 12px; }

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 20px;
}
.plan {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-card);
}
.plan--featured {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  position: relative;
}
.plan--featured .plan__desc { color: rgba(255,255,255,0.72); }
.plan--featured .plan__list li { color: rgba(255,255,255,0.9); }
.plan--featured .plan__list li::before { color: var(--accent-gold); }

.plan__badge {
  position: absolute;
  top: -12px;
  left: 22px;
  background: var(--accent-gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.plan__name { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.plan__desc { font-size: 14px; color: var(--ink-soft); }
.plan__list { display: flex; flex-direction: column; gap: 10px; margin: 4px 0 8px; }
.plan__list li {
  font-size: 14px;
  padding-left: 22px;
  position: relative;
  color: var(--ink);
}
.plan__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
}
.plan .btn { margin-top: auto; }
.pricing__note { margin-top: 22px; font-size: 13px; color: var(--ink-soft); }

/* ==========================================================
   FAQ
   ========================================================== */
.faq { background: var(--bg); }
.faq h2 { font-size: clamp(24px, 4.4vw, 34px); max-width: 22ch; margin-bottom: 30px; }

.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 4px 20px;
}
.faq__item summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--accent-green);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 18px; color: var(--ink-soft); font-size: 14px; }

/* ==========================================================
   Final CTA
   ========================================================== */
.cta-final {
  background: linear-gradient(180deg, var(--accent-green-dark), var(--dark));
  color: #fff;
  text-align: left;
}
.cta-final__inner { text-align: left; }
.cta-final h2 { font-size: clamp(26px, 5vw, 38px); max-width: 18ch; margin-bottom: 14px; }
.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

/* ==========================================================
   Sticky mobile CTA
   ========================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(19,22,17,0.92);
  backdrop-filter: blur(10px);
  display: flex;
}
.sticky-cta__btn {
  width: 100%;
  text-align: center;
  background: var(--wa-green);
  color: #fff;
  font-weight: 700;
  padding: 14px;
  border-radius: 999px;
}
.sticky-cta__btn:hover { background: var(--wa-green-dark); }

@media (min-width: 860px) {
  .sticky-cta { display: none; }
}

/* ==========================================================
   Footer
   ========================================================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 44px 0 90px;
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}
.footer__brand span { color: var(--accent-gold); }
.footer__desc { font-size: 14px; max-width: 44ch; margin-bottom: 20px; }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  margin-bottom: 26px;
}
.footer__links a { border-bottom: 1px solid transparent; }
.footer__links a:hover { border-color: rgba(255,255,255,0.5); }
.footer__watermark {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
}
.footer__watermark a {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__watermark a:hover { color: var(--accent-gold); }

@media (min-width: 860px) {
  .footer { padding-bottom: 44px; }
}

/* ==========================================================
   Tablet / Desktop refinements
   ========================================================== */
@media (min-width: 640px) {
  .problem__grid { grid-template-columns: repeat(3, 1fr); }
  .value__grid { grid-template-columns: repeat(2, 1fr); }
  .proof__stats { flex-direction: row; align-items: center; }
  .proof__statcard { flex: 1; }
}

@media (min-width: 860px) {
  .section { padding: 96px 0; }
  .hero { padding: 88px 0 72px; }
  .value__grid { grid-template-columns: repeat(3, 1fr); }
  .pricing__grid { grid-template-columns: repeat(3, 1fr); }
  .process__list { grid-template-columns: repeat(3, 1fr); }
  .process__step { flex-direction: column; }
}
