/* =========================================================
   TOKENS
   ========================================================= */
:root {
  --navy: #0F1A33;
  --navy-2: #17264A;
  --paper: #F4F6F1;
  --paper-2: #E9ECE4;
  --gold: #C89B3C;
  --gold-dark: #9C7526;
  --teal: #1F5C55;
  --teal-light: #2D7A70;
  --coral: #B8503F;
  --slate: #6B7684;
  --ink: #202634;
  --ink-soft: #565F6E;
  --white: #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --radius: 10px;
  --radius-sm: 6px;
  --wrap: 1160px;
  --shadow-card: 0 1px 2px rgba(15,26,51,0.06), 0 8px 24px rgba(15,26,51,0.06);
  --shadow-card-hover: 0 4px 8px rgba(15,26,51,0.08), 0 16px 32px rgba(15,26,51,0.10);
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); color: var(--navy); margin: 0; line-height: 1.15; font-weight: 600; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }
svg { display: block; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible {
  outline: 2px solid var(--teal-light);
  outline-offset: 3px;
}

/* =========================================================
   SHARED TYPE
   ========================================================= */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}
.eyebrow-dark { color: var(--teal); }

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}
.proof-disclaimer {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.96rem;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(200,155,60,0.35);
}
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-nav { padding: 10px 20px; font-size: 0.88rem; }

/* =========================================================
   TRUST BAR (main-domain notice)
   ========================================================= */
.trust-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 10px 24px;
  text-align: center;
}
.trust-bar-text {
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}
.trust-bar-text a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.trust-bar-text a:hover { color: var(--white); }
.trust-bar-badge {
  display: inline-flex;
  align-items: center;
  width: 88px;
  flex-shrink: 0;
  opacity: 0.92;
  transition: opacity 0.15s ease;
}
.trust-bar-badge:hover { opacity: 1; }
.trust-bar-badge img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 500px) {
  .trust-bar-inner { padding: 10px 16px; }
  .trust-bar-text { font-size: 0.76rem; }
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,246,241,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--paper-2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-tagline {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.footer-brand .logo-tagline { color: rgba(255,255,255,0.5); }
.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--navy); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at top right, rgba(200,155,60,0.12), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(31,92,85,0.18), transparent 55%);
  color: var(--white);
  padding: 88px 0 100px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero .eyebrow { color: var(--gold); }
.hero-headline {
  color: var(--white);
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  margin-top: 22px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
}
.hero-cta-row { margin-top: 34px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.7);
}
.trust-row li { display: flex; align-items: center; gap: 8px; }
.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* --- hero visual: scorecard + stamp --- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
}
.hero-visual .lottie-ambient {
  inset: auto;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.scorecard {
  background: var(--paper);
  color: var(--ink);
  width: 280px;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  transform: rotate(-3deg);
  position: relative;
  z-index: 1;
}
.scorecard-head {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.scorecard-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}
.scorecard-rows { margin: 0 0 16px; }
.scorecard-rows div {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-top: 1px solid var(--paper-2);
  font-size: 0.85rem;
}
.scorecard-rows dt { color: var(--ink-soft); }
.scorecard-rows dd { margin: 0; font-weight: 600; }
.scorecard-status {
  text-align: center;
  padding: 9px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.status-hot { background: rgba(184,80,63,0.12); color: var(--coral); }
.status-warm { background: rgba(200,155,60,0.14); color: var(--gold-dark); }
.status-cold { background: rgba(107,118,132,0.14); color: var(--slate); }

.stamp {
  position: absolute;
  right: -10px;
  bottom: -18px;
  color: var(--gold);
  opacity: 0.92;
  transform: rotate(8deg);
  z-index: 2;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.35));
  animation: stampFloat 5s ease-in-out infinite;
}
@keyframes stampFloat {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-6px); }
}

/* =========================================================
   PROBLEM
   ========================================================= */
.problem { padding: 96px 0; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--paper-2);
  border-left: 3px solid var(--coral);
  border-radius: var(--radius-sm);
  padding: 24px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 1.02rem;
  color: var(--ink);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.problem-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.problem-mark {
  font-family: var(--font-mono);
  color: var(--coral);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =========================================================
   FEATURES
   ========================================================= */
.features { padding: 96px 0; background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.feature-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.feature-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: visible;
}
.feature-icon svg { position: relative; z-index: 1; }
.feature-card h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how { padding: 96px 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.steps-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .steps-4 { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
}
@media (max-width: 560px) {
  .steps-4 { grid-template-columns: 1fr; }
}
.step {
  position: relative;
  padding-top: 8px;
  border-top: 2px solid var(--paper-2);
}
.step::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.step.visible::before { transform: scaleX(1); }
.step-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 0.96rem; }

/* =========================================================
   SOCIAL PROOF
   ========================================================= */
.proof { padding: 96px 0; background: var(--white); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.proof-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.proof-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.proof-tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--paper-2);
  padding: 4px 9px;
  border-radius: 4px;
}
.proof-quote {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--navy);
  line-height: 1.5;
}
.proof-author {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* =========================================================
   PRICING — two plan cards
   ========================================================= */
.pricing { padding: 96px 0; }
.pricing-lead {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 56ch;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}
.plan-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 24px 60px rgba(15,26,51,0.25);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.plan-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200,155,60,0.22), transparent 70%);
  animation: cardGlow 4s ease-in-out infinite;
}
@keyframes cardGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}
.plan-card-top { margin-bottom: 22px; position: relative; }
.plan-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.plan-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,155,60,0.14);
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.plan-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.currency { font-size: 1.35rem; color: var(--gold); }
.plan-terms {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.plan-sub {
  margin-top: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.plan-pros-cons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
  flex: 1;
}
.plan-pc-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.plan-pros .plan-pc-label { color: var(--gold); }
.plan-cons .plan-pc-label { color: rgba(255,255,255,0.62); }
.plan-pros-cons ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.plan-pros-cons li {
  display: flex;
  gap: 9px;
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
}
.plan-pros li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.plan-cons li::before {
  content: "–";
  color: rgba(255,255,255,0.62);
  font-weight: 700;
  flex-shrink: 0;
}
.plan-cons li { color: rgba(255,255,255,0.62); }
.plan-guarantee {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
#paypal-button-diy, #paypal-button-managed {
  min-height: 55px;
  margin-bottom: 14px;
  position: relative;
}
.paypal-error {
  background: rgba(184,80,63,0.15);
  border: 1px solid rgba(184,80,63,0.4);
  color: #F4B6AB;
  font-size: 0.86rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.plan-note {
  font-size: 0.76rem;
  text-align: center;
  color: rgba(255,255,255,0.62);
}

@media (max-width: 800px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: 96px 0; background: var(--white); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--paper-2);
}
.faq-item { border-bottom: 1px solid var(--paper-2); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  gap: 20px;
}
.faq-icon {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 4px;
}
.faq-answer p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  padding-bottom: 22px;
  max-width: 62ch;
}
.faq-item.open .faq-answer { max-height: 240px; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  background: var(--teal);
  color: var(--white);
  padding: 90px 0;
}
.final-cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.final-cta h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  max-width: 20ch;
}
.final-cta-sub {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 26px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 20px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 8px; }
.footer-brand .logo .logo-mark { background: var(--gold); color: var(--navy); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.footer-badge {
  display: inline-block;
  width: 110px;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0.9;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.footer-badge:hover { opacity: 1; transform: translateY(-1px); }
.footer-badge img {
  display: block;
  width: 100%;
  height: auto;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.88rem;
}
.footer-links a { color: rgba(255,255,255,0.75); transition: color 0.15s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.62);
}

/* =========================================================
   SCROLL FADE-IN
   ========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered reveal for grid/list items so cards rise in sequence rather than all at once */
.problem-grid .fade-in:nth-child(1), .features-grid .fade-in:nth-child(1),
.proof-grid .fade-in:nth-child(1), .steps .fade-in:nth-child(1) { transition-delay: 0s; }
.problem-grid .fade-in:nth-child(2), .features-grid .fade-in:nth-child(2),
.proof-grid .fade-in:nth-child(2), .steps .fade-in:nth-child(2) { transition-delay: 0.09s; }
.problem-grid .fade-in:nth-child(3), .features-grid .fade-in:nth-child(3),
.proof-grid .fade-in:nth-child(3), .steps .fade-in:nth-child(3) { transition-delay: 0.18s; }
.problem-grid .fade-in:nth-child(4), .features-grid .fade-in:nth-child(4), .steps .fade-in:nth-child(4) { transition-delay: 0.27s; }

/* =========================================================
   LOTTIE ACCENTS
   ========================================================= */
.lottie-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.lottie-accent {
  position: absolute;
  inset: -10px;
  pointer-events: none;
  z-index: 0;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 20px; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px 24px 26px;
    gap: 16px;
    border-bottom: 1px solid var(--paper-2);
  }
  .site-header.nav-open .btn-nav {
    display: inline-flex;
    margin: 0 24px 20px;
  }

  .hero { padding: 56px 0 64px; }
  .problem, .features, .how, .proof, .pricing, .faq { padding: 64px 0; }
  .plan-card { padding: 32px 24px; }
  .footer-inner { flex-direction: column; }
}
