:root {
  --green: #00711f;
  --green-2: #008d34;
  --green-3: #00b34f;
  --green-deep: #00160a;
  --green-deeper: #000d06;
  --green-soft: #eaf6ee;
  --yellow: #ffd700;
  --yellow-2: #ffe76a;
  --ink: #0b1510;
  --text: #203029;
  --muted: #6f7e75;
  --line: rgba(8, 52, 27, 0.12);
  --white: #ffffff;
  --card: #ffffff;
  --shadow: 0 24px 70px rgba(0, 39, 15, 0.12);
  --shadow-strong: 0 30px 90px rgba(0, 0, 0, 0.34);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --container: 1200px;
  --header-h: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #f7faf8;
  line-height: 1.55;
  overflow-x: hidden;
}
body::selection { background: var(--yellow); color: var(--green-deep); }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font: inherit; }

.page-shell { min-height: 100vh; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; position: relative; z-index: 2; }
.section { padding: 118px 0; position: relative; overflow: hidden; }
.section-light { background: #fbfdfb; }
.section-soft { background: linear-gradient(180deg, #eff8f2 0%, #f9fcfa 100%); }
.section-dark { color: var(--white); background: var(--green-deeper); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(0, 18, 8, 0.74);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.site-header.is-scrolled {
  height: 74px;
  background: rgba(0, 15, 7, 0.92);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--white); }
.brand-logo { width: 54px; height: 54px; border-radius: 50%; box-shadow: 0 8px 24px rgba(0, 113, 31, .28); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.08; }
.brand-copy strong { font-size: 15px; letter-spacing: -.02em; }
.brand-copy small { margin-top: 6px; color: rgba(255,255,255,.56); font-size: 11px; }

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.02em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.btn::after {
  content: "";
  position: absolute;
  top: -80%; left: -30%;
  width: 30%; height: 260%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.58), transparent);
  transform: rotate(22deg) translateX(-220%);
  transition: transform .65s cubic-bezier(.2,.8,.2,1);
}
.btn:hover::after { transform: rotate(22deg) translateX(520%); }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: #07230f; box-shadow: 0 12px 30px rgba(255, 215, 0, .18); }
.btn-primary:hover { background: #ffe24a; box-shadow: 0 16px 34px rgba(255, 215, 0, .28); }
.btn-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,.11); }
.btn-lg { min-height: 56px; padding-inline: 26px; border-radius: 16px; }
.btn-header { min-height: 44px; padding-inline: 18px; font-size: 14px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 999px; background: currentColor; }
.eyebrow-dark { color: var(--green); }

.hero {
  min-height: 820px;
  padding: calc(var(--header-h) + 98px) 0 90px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 74% 38%, rgba(0, 179, 79, .16), transparent 28%),
    linear-gradient(135deg, #000c05 0%, #001b0d 48%, #003014 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent 4%, black 40%, transparent 95%);
  opacity: .5;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 64px; align-items: center; }
.hero-copy { max-width: 650px; }
.hero h1 {
  margin: 0;
  max-width: 690px;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 800;
}
.hero-lead { max-width: 650px; margin: 30px 0 0; font-size: clamp(18px, 1.8vw, 22px); color: rgba(255,255,255,.74); }
.hero-highlight { margin: 12px 0 0; color: var(--yellow); font-size: 18px; font-weight: 800; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.microcopy { margin: 22px 0 0; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.8); }
.microcopy span { color: rgba(255,255,255,.48); font-weight: 500; }

.hero-aurora, .pricing-orb { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.hero-aurora-a { width: 520px; height: 520px; right: -180px; top: 80px; background: radial-gradient(circle, rgba(0,179,79,.22), transparent 68%); }
.hero-aurora-b { width: 420px; height: 420px; left: 18%; bottom: -260px; background: radial-gradient(circle, rgba(255,215,0,.10), transparent 68%); }
.grid-orbit { position: absolute; border: 1px solid rgba(0,179,79,.15); border-radius: 50%; pointer-events: none; }
.grid-orbit-a { width: 760px; height: 760px; right: -450px; top: -170px; box-shadow: 0 0 80px rgba(0,179,79,.05) inset; }

.journey-wrap { position: relative; }
.journey-glow { position: absolute; inset: 10% 4%; background: radial-gradient(circle, rgba(0, 208, 90, .18), transparent 64%); filter: blur(28px); }
.glass-card { background: linear-gradient(180deg, rgba(10, 40, 23, .82), rgba(1, 22, 10, .88)); border: 1px solid rgba(255,255,255,.10); backdrop-filter: blur(18px); box-shadow: var(--shadow-strong); }
.journey-card { position: relative; border-radius: 28px; padding: 26px; overflow: hidden; }
.journey-card::before { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; top: -120px; right: -70px; background: radial-gradient(circle, rgba(255,215,0,.13), transparent 70%); }
.journey-head { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; padding-bottom: 19px; border-bottom: 1px solid rgba(255,255,255,.08); }
.journey-head .mini-label { display: block; font-size: 14px; font-weight: 800; line-height: 1.35; max-width: 390px; }
.journey-head p { margin: 5px 0 0; color: rgba(255,255,255,.45); font-size: 11px; }
.live-dot { width: 9px; height: 9px; flex: 0 0 9px; margin-top: 6px; border-radius: 50%; background: var(--green-3); box-shadow: 0 0 0 7px rgba(0,179,79,.10), 0 0 18px rgba(0,179,79,.8); animation: pulse 1.8s infinite; }
.status-pill { margin: 18px 0 14px; padding: 10px 13px; border-radius: 12px; color: #ffe861; background: rgba(255,215,0,.08); border: 1px solid rgba(255,215,0,.22); font-size: 12px; font-weight: 800; text-transform: lowercase; transition: opacity .2s ease, transform .2s ease; }
.journey-levels { position: relative; }
.journey-levels::before { content: ""; position: absolute; top: 28px; bottom: 28px; left: 23px; width: 1px; background: linear-gradient(var(--yellow), rgba(255,255,255,.08)); opacity: .35; }
.journey-level { display: grid; grid-template-columns: 47px 1fr 12px; gap: 14px; align-items: start; padding: 15px 0; position: relative; opacity: .45; transition: opacity .35s ease, transform .35s ease; }
.level-index { width: 47px; height: 47px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.55); font-size: 11px; font-weight: 800; transition: all .35s ease; }
.level-copy { padding-top: 1px; }
.level-kicker { color: rgba(255,255,255,.42); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.level-copy h3 { margin: 2px 0 3px; color: var(--white); font-size: 15px; line-height: 1.2; }
.level-copy p { margin: 0; color: rgba(255,255,255,.50); font-size: 11px; line-height: 1.45; }
.level-node { width: 9px; height: 9px; margin-top: 18px; border-radius: 50%; background: rgba(255,255,255,.16); border: 2px solid rgba(255,255,255,.18); }
.journey-level.is-active { opacity: 1; transform: translateX(4px); }
.journey-level.is-active .level-index { background: var(--yellow); color: #08250f; border-color: var(--yellow); box-shadow: 0 8px 24px rgba(255,215,0,.18); }
.journey-level.is-active .level-node { background: var(--yellow); border-color: var(--yellow); box-shadow: 0 0 16px rgba(255,215,0,.75); }
.journey-footer { margin-top: 12px; padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,.04); color: rgba(255,255,255,.58); font-size: 11px; }

.stats-strip { background: #003116; color: var(--white); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { min-height: 152px; padding: 30px 30px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(255,255,255,.08); }
.stat-item:last-child { border-right: 1px solid rgba(255,255,255,.08); }
.stat-value { color: var(--yellow); font-size: clamp(30px, 3.3vw, 46px); line-height: 1; letter-spacing: -.055em; }
.stat-item span { margin-top: 10px; max-width: 190px; color: rgba(255,255,255,.61); font-size: 12px; }

.section-heading { max-width: 780px; margin-bottom: 54px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading h2, .pricing-copy h2, .form-intro h2 { margin: 0; color: var(--ink); font-size: clamp(38px, 4.2vw, 60px); line-height: 1.03; letter-spacing: -.048em; }
.section-heading p { margin: 20px 0 0; max-width: 680px; color: var(--muted); font-size: 17px; }
.section-heading.center p { margin-inline: auto; }

.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px; min-height: 260px; box-shadow: 0 18px 55px rgba(0,39,15,.055); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(0,113,31,.22); }
.icon-box { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: var(--green-soft); color: var(--green); margin-bottom: 34px; }
.icon-box svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { margin: 0; color: var(--ink); font-size: 22px; letter-spacing: -.03em; }
.feature-card p { margin: 12px 0 0; color: var(--muted); }

.ambient-line { position: absolute; width: 800px; height: 800px; border: 1px solid rgba(0,113,31,.08); border-radius: 50%; pointer-events: none; }
.ambient-line-a { top: -510px; left: -300px; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; position: relative; }
.steps-grid::before { content: ""; position: absolute; left: 8%; right: 8%; top: 43px; height: 2px; background: linear-gradient(90deg, var(--green), var(--yellow)); opacity: .16; }
.step-card { position: relative; z-index: 1; padding: 22px 20px 26px; border-radius: 22px; border: 1px solid rgba(0,113,31,.10); background: rgba(255,255,255,.78); backdrop-filter: blur(10px); min-height: 245px; transition: transform .3s ease, background .3s ease; }
.step-card:hover { transform: translateY(-5px); background: #fff; }
.step-number { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; color: var(--green-deep); background: var(--yellow); font-weight: 800; font-size: 12px; box-shadow: 0 10px 26px rgba(255,215,0,.18); }
.step-card h3 { margin: 42px 0 10px; color: var(--ink); font-size: 20px; letter-spacing: -.03em; }
.step-card p { margin: 0; color: var(--muted); font-size: 14px; }

.section-pricing { background: linear-gradient(130deg, #001106 0%, #003116 52%, #006725 100%); }
.pricing-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.pricing-copy h2 { color: var(--white); }
.price-display { margin-top: 36px; color: rgba(255,255,255,.62); font-size: 18px; }
.price-display strong { display: block; margin-top: 4px; color: var(--yellow); font-size: clamp(46px, 6vw, 78px); line-height: 1; letter-spacing: -.06em; }
.pricing-copy > p { margin: 26px 0 0; max-width: 580px; color: rgba(255,255,255,.66); font-size: 16px; }
.billing-card { border-radius: 28px; padding: 16px; }
.billing-head, .billing-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: center; }
.billing-head { padding: 12px 18px 18px; color: rgba(255,255,255,.42); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.billing-row { min-height: 88px; padding: 18px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.82); }
.billing-row strong { font-size: 15px; }
.billing-row span { justify-self: start; padding: 8px 11px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); font-size: 10px; font-weight: 800; letter-spacing: .04em; }
.billing-row-featured { border-radius: 18px; background: rgba(255,215,0,.08); border: 1px solid rgba(255,215,0,.20); }
.billing-row-featured + .billing-row { border-top-color: transparent; }
.billing-row-featured span { color: #06230e; background: var(--yellow); border-color: var(--yellow); }
.pricing-orb-a { width: 520px; height: 520px; right: -260px; bottom: -260px; background: radial-gradient(circle, rgba(255,215,0,.12), transparent 68%); }
.pricing-orb-b { width: 440px; height: 440px; left: -180px; top: -200px; background: radial-gradient(circle, rgba(0,179,79,.18), transparent 68%); }

.comparison-table { border-radius: 28px; overflow: hidden; border: 1px solid var(--line); background: var(--white); box-shadow: 0 20px 60px rgba(0,39,15,.05); }
.comparison-row { display: grid; grid-template-columns: 1fr 1fr; }
.comparison-row > div { padding: 24px 28px; min-height: 76px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
.comparison-row > div:first-child { color: #65736b; background: #f8faf9; border-right: 1px solid var(--line); }
.comparison-row > div:last-child { color: var(--ink); font-weight: 700; }
.comparison-head > div { min-height: 62px; padding-block: 18px; font-size: 12px; text-transform: uppercase; letter-spacing: .09em; font-weight: 800 !important; }
.comparison-head > div:first-child { color: #7b8780; }
.comparison-head > div:last-child { color: var(--green); background: #eff8f2; }
.comparison-row:last-child > div { border-bottom: 0; }

.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.case-card { position: relative; min-height: 310px; padding: 28px; border-radius: 26px; background: #06160d; color: var(--white); overflow: hidden; box-shadow: 0 22px 60px rgba(0,39,15,.12); transition: transform .3s ease, box-shadow .3s ease; }
.case-card::before { content: ""; position: absolute; inset: auto -80px -100px auto; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(0,179,79,.32), transparent 66%); }
.case-card:hover { transform: translateY(-6px); box-shadow: 0 28px 72px rgba(0,39,15,.18); }
.case-meta { display: block; position: relative; z-index: 2; color: rgba(255,255,255,.52); font-size: 12px; line-height: 1.5; min-height: 52px; }
.case-card strong { display: block; position: relative; z-index: 2; margin-top: 28px; color: var(--yellow); font-size: 29px; line-height: 1.1; letter-spacing: -.045em; }
.case-chart { position: absolute; left: 28px; right: 28px; bottom: 28px; height: 68px; display: flex; gap: 8px; align-items: end; opacity: .82; }
.case-chart::before { content: ""; position: absolute; left: 0; right: 0; top: 14px; height: 2px; background: linear-gradient(90deg, rgba(255,215,0,.1), rgba(255,215,0,.8), rgba(0,179,79,.4)); transform: rotate(-8deg); transform-origin: left; box-shadow: 0 0 10px rgba(255,215,0,.2); }
.case-chart span { width: 14%; background: linear-gradient(180deg, rgba(0,179,79,.9), rgba(0,113,31,.2)); border-radius: 5px 5px 2px 2px; }
.case-chart span:nth-child(1){height:24%}.case-chart span:nth-child(2){height:36%}.case-chart span:nth-child(3){height:46%}.case-chart span:nth-child(4){height:68%}.case-chart span:nth-child(5){height:94%}

.personas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.persona-card { padding: 36px; border-radius: 28px; background: #eff8f2; border: 1px solid rgba(0,113,31,.12); min-height: 430px; position: relative; overflow: hidden; }
.persona-card::after { content: ""; position: absolute; width: 250px; height: 250px; border-radius: 50%; right: -120px; bottom: -120px; background: radial-gradient(circle, rgba(0,113,31,.12), transparent 68%); }
.persona-card-dark { background: linear-gradient(135deg, #00140a, #003116); color: var(--white); }
.persona-tag { display: inline-flex; padding: 8px 11px; border-radius: 999px; background: var(--yellow); color: #06230e; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.persona-card h3 { margin: 34px 0 26px; max-width: 460px; color: var(--ink); font-size: clamp(30px, 3vw, 42px); line-height: 1.05; letter-spacing: -.045em; }
.persona-card-dark h3 { color: var(--white); }
.persona-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.persona-card li { position: relative; padding: 15px 16px 15px 46px; border-radius: 16px; background: rgba(255,255,255,.62); color: #324039; }
.persona-card li::before { content: "✓"; position: absolute; left: 17px; top: 15px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); font-size: 11px; font-weight: 800; }
.persona-card-dark li { color: rgba(255,255,255,.72); background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.06); }
.persona-card-dark li::before { color: var(--green-deep); background: var(--yellow); }

.form-section { background: linear-gradient(135deg, #000d06 0%, #002512 55%, #00461c 100%); }
.form-grid-bg { position: absolute; inset: 0; opacity: .24; background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px); background-size: 28px 28px; mask-image: radial-gradient(circle at center, black, transparent 76%); }
.form-container { display: grid; grid-template-columns: .78fr 1.22fr; gap: 72px; align-items: start; }
.form-intro { position: sticky; top: 128px; }
.form-intro h2 { color: var(--white); }
.form-intro p { margin: 24px 0 0; color: rgba(255,255,255,.58); max-width: 470px; font-size: 17px; }
.lead-form { background: rgba(255,255,255,.98); color: var(--ink); border-radius: 30px; padding: 34px; box-shadow: 0 34px 90px rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.24); }
.form-row.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 9px; margin-bottom: 18px; }
.field > span { font-size: 12px; line-height: 1.4; font-weight: 800; color: #294036; }
.field input, .field select { width: 100%; min-height: 52px; border: 1px solid rgba(0,56,24,.13); border-radius: 14px; background: #f6faf7; color: var(--ink); padding: 0 14px; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field input:focus, .field select:focus { background: #fff; border-color: rgba(0,113,31,.55); box-shadow: 0 0 0 4px rgba(0,113,31,.08); }
.field input.is-invalid, .field select.is-invalid { border-color: #b42318; box-shadow: 0 0 0 4px rgba(180,35,24,.07); }
.form-error { color: #b42318; font-size: 13px; line-height: 1.4; margin: 12px 0 0; }
.form-error[hidden] { display: none; }
.btn-submit:disabled { opacity: .7; cursor: wait; }
.btn-submit { width: 100%; min-height: 58px; margin-top: 6px; border-radius: 16px; }
.trust-copy { margin: 14px 0 0; text-align: center; color: #77827c; font-size: 11px; }

.site-footer { background: #000b05; color: var(--white); border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { min-height: 170px; display: flex; align-items: center; justify-content: space-between; gap: 42px; }
.brand-footer .brand-logo { width: 46px; height: 46px; }
.footer-inner p { max-width: 600px; margin: 0; color: rgba(255,255,255,.46); font-size: 13px; text-align: right; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .10s; }
.reveal-delay-2 { transition-delay: .18s; }
.reveal-delay-3 { transition-delay: .26s; }

@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.78); opacity: .58; } }

@media (max-width: 1024px) {
  :root { --header-h: 78px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 92px 0; }
  .hero { padding-top: calc(var(--header-h) + 72px); min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-copy { max-width: 760px; }
  .journey-wrap { max-width: 760px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.08); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; gap: 48px; }
  .cases-grid { grid-template-columns: 1fr; }
  .case-card { min-height: 250px; }
  .personas-grid { grid-template-columns: 1fr; }
  .persona-card { min-height: auto; }
  .form-container { grid-template-columns: 1fr; gap: 42px; }
  .form-intro { position: static; max-width: 760px; }
}

@media (max-width: 720px) {
  :root { --header-h: 70px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .brand-copy { display: none; }
  .brand-logo { width: 44px; height: 44px; }
  .btn-header { min-height: 42px; padding-inline: 15px; font-size: 12px; }
  .hero { padding: calc(var(--header-h) + 58px) 0 70px; }
  .hero h1 { font-size: clamp(43px, 13vw, 61px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .journey-card { padding: 18px; border-radius: 22px; }
  .journey-head { gap: 10px; }
  .journey-level { grid-template-columns: 42px 1fr 10px; gap: 10px; }
  .level-index { width: 42px; height: 42px; }
  .journey-levels::before { left: 20px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { min-height: 124px; padding: 24px 10px; border-left: 0; border-right: 0 !important; border-top: 1px solid rgba(255,255,255,.08); }
  .stat-item:first-child { border-top: 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .pricing-copy h2, .form-intro h2 { font-size: 38px; }
  .problem-grid, .steps-grid, .form-row.two-cols { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .step-card { min-height: auto; }
  .step-card h3 { margin-top: 28px; }
  .billing-card { padding: 10px; }
  .billing-head, .billing-row { grid-template-columns: 1fr; gap: 8px; }
  .billing-head span:last-child { display: none; }
  .billing-row { align-items: start; }
  .comparison-table { background: transparent; border: 0; box-shadow: none; display: grid; gap: 12px; overflow: visible; }
  .comparison-row { grid-template-columns: 1fr; border: 1px solid var(--line); background: var(--white); border-radius: 18px; overflow: hidden; }
  .comparison-head { display: none; }
  .comparison-row > div { min-height: auto; padding: 18px; border-bottom: 1px solid var(--line); border-right: 0 !important; }
  .comparison-row > div:first-child { font-size: 13px; }
  .comparison-row > div:last-child { border-bottom: 0; }
  .comparison-row > div:first-child::before { content: "Antes"; display: block; min-width: 60px; margin-right: 10px; color: #849087; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
  .comparison-row > div:last-child::before { content: "Depois com a Bem Dita Entrega"; display: block; min-width: 86px; margin-right: 10px; color: var(--green); font-size: 9px; text-transform: uppercase; letter-spacing: .06em; font-weight: 800; }
  .persona-card { padding: 26px; border-radius: 24px; }
  .persona-card h3 { font-size: 34px; }
  .persona-card li { padding-left: 44px; }
  .lead-form { padding: 24px 18px; border-radius: 24px; }
  .footer-inner { padding: 34px 0; min-height: 0; align-items: flex-start; flex-direction: column; }
  .brand-footer .brand-copy { display: flex; }
  .footer-inner p { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Estado de sucesso — versão standalone */
.success-panel{padding:64px 20px 96px;background:#00160a;}
.success-card{width:min(720px,100%);margin:0 auto;padding:48px 34px;text-align:center;border:1px solid rgba(255,255,255,.10);border-radius:28px;background:linear-gradient(145deg,rgba(255,255,255,.10),rgba(255,255,255,.04));box-shadow:0 30px 90px rgba(0,0,0,.28);backdrop-filter:blur(18px);}
.success-icon{width:76px;height:76px;margin:0 auto 22px;display:grid;place-items:center;border-radius:50%;background:#ffd700;color:#06230e;font-size:38px;font-weight:900;box-shadow:0 0 0 10px rgba(255,215,0,.08),0 18px 40px rgba(255,215,0,.20);}
.success-card h2{margin:0 0 14px;color:#fff;font-size:clamp(32px,5vw,54px);letter-spacing:-.05em;}
.success-card p{margin:0 auto;max-width:560px;color:rgba(255,255,255,.70);font-size:17px;line-height:1.65;}
.thank-you-page{min-height:100vh;background:linear-gradient(135deg,#000d06,#002512 55%,#00461c);}
.thank-you-main{min-height:100vh;display:grid;place-items:center;padding:40px 20px;}
.thank-you-logo{width:64px;height:64px;margin:0 auto 30px;object-fit:contain;}
.thank-you-page .success-card{padding:clamp(28px,6vw,52px) 24px;}
.thank-you-page .success-card h1{margin:0 0 14px;color:#fff;font-size:clamp(32px,5vw,54px);line-height:1.12;letter-spacing:-.05em;}
.thank-you-page .success-card .btn{margin-top:30px;}


/* =========================================================
   INTERAÇÕES PREMIUM — versão com cards mais vivos
   ========================================================= */
.fx-card {
  isolation: isolate;
  --spot-x: 50%;
  --spot-y: 50%;
  --tilt-shadow-x: 0px;
  --tilt-shadow-y: 18px;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.fx-card > *:not(.card-spotlight):not(.card-ripple) { position: relative; z-index: 2; }
.card-spotlight {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s ease;
  background: radial-gradient(360px circle at var(--spot-x) var(--spot-y), rgba(255,255,255,.18), rgba(255,215,0,.075) 26%, transparent 66%);
  mix-blend-mode: screen;
}
.feature-card .card-spotlight,
.step-card .card-spotlight,
.persona-card:not(.persona-card-dark) .card-spotlight,
.comparison-row .card-spotlight {
  background: radial-gradient(330px circle at var(--spot-x) var(--spot-y), rgba(0,179,79,.13), rgba(255,215,0,.07) 28%, transparent 68%);
  mix-blend-mode: normal;
}
.fx-card:hover .card-spotlight { opacity: 1; }
.fx-card.is-tilting { transition: box-shadow .2s ease, border-color .2s ease !important; }
.fx-card:hover { border-color: rgba(0,179,79,.28); }

.card-ripple {
  position: absolute;
  z-index: 5;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255,215,0,.34);
  transform: translate(-50%, -50%) scale(0);
  animation: cardRipple .72s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes cardRipple {
  0% { transform: translate(-50%, -50%) scale(0); opacity: .7; }
  100% { transform: translate(-50%, -50%) scale(34); opacity: 0; }
}

/* Dores — entrada do ícone + brilho + microdeslocamento do conteúdo */
.feature-card { overflow: hidden; }
.feature-card .icon-box { transition: transform .38s cubic-bezier(.2,.85,.2,1.25), box-shadow .3s ease, background .3s ease; }
.feature-card:hover .icon-box {
  transform: translateY(-5px) rotate(-4deg) scale(1.08);
  background: #e3f7e9;
  box-shadow: 0 14px 34px rgba(0,113,31,.15);
}
.feature-card h3, .feature-card p { transition: transform .32s ease; }
.feature-card:hover h3 { transform: translateX(4px); }
.feature-card:hover p { transform: translateX(2px); }
.feature-card.is-visible .icon-box { animation: iconEntrance .68s cubic-bezier(.2,.9,.2,1.25) both; }
@keyframes iconEntrance {
  0% { opacity: 0; transform: translateY(18px) scale(.78) rotate(-8deg); }
  100% { opacity: 1; transform: none; }
}

/* Como funciona — números vivos e trilha com progresso */
.steps-grid { --step-progress: 0%; }
.steps-grid::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 8%;
  top: 43px;
  width: var(--step-progress);
  max-width: 84%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-3), var(--yellow));
  box-shadow: 0 0 18px rgba(255,215,0,.38);
  transition: width .6s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.step-card { overflow: hidden; cursor: default; }
.step-number { transition: transform .36s cubic-bezier(.2,.85,.2,1.25), box-shadow .3s ease; }
.step-card:hover .step-number,
.step-card.is-step-active .step-number {
  transform: scale(1.13) rotate(7deg);
  box-shadow: 0 0 0 8px rgba(255,215,0,.09), 0 15px 32px rgba(255,215,0,.27);
}
.step-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--green-3), var(--yellow));
  transition: transform .42s cubic-bezier(.2,.8,.2,1);
}
.step-card:hover::after, .step-card.is-step-active::after { transform: scaleX(1); }
.step-card.is-visible .step-number { animation: stepPop .58s cubic-bezier(.2,.9,.2,1.25) both; }
@keyframes stepPop { from { transform: scale(.4) rotate(-20deg); opacity: 0; } to { transform: none; opacity: 1; } }

/* Precificação — linhas respondem ao hover */
.billing-card { overflow: hidden; }
.billing-row { position: relative; overflow: hidden; transition: transform .28s ease, background .28s ease, border-color .28s ease; }
.billing-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--yellow);
  transform: scaleY(0);
  transition: transform .3s ease;
}
.billing-row:hover { transform: translateX(7px); background: rgba(255,255,255,.055); }
.billing-row:hover::before { transform: scaleY(1); }
.billing-row-featured { animation: featuredGlow 3.4s ease-in-out infinite; }
@keyframes featuredGlow {
  0%,100% { box-shadow: 0 0 0 rgba(255,215,0,0); }
  50% { box-shadow: 0 0 34px rgba(255,215,0,.12); }
}

/* Antes x Depois — leitura guiada linha a linha */
.comparison-row:not(.comparison-head) { position: relative; overflow: hidden; transition: transform .28s ease, box-shadow .28s ease; }
.comparison-row:not(.comparison-head):hover { z-index: 2; transform: scale(1.012); box-shadow: 0 15px 38px rgba(0,39,15,.08); }
.comparison-row:not(.comparison-head) > div { transition: background .28s ease, color .28s ease, transform .28s ease; }
.comparison-row:not(.comparison-head):hover > div:first-child { background: #fff7f2; color: #755b50; }
.comparison-row:not(.comparison-head):hover > div:last-child { background: #eaf8ef; color: #006c27; transform: translateX(4px); }

/* Cases — gráfico realmente cresce ao entrar na tela */
.case-card { cursor: default; }
.case-card .case-chart span { transform-origin: bottom; transform: scaleY(0); }
.case-card.is-visible .case-chart span { animation: barRise .72s cubic-bezier(.2,.85,.2,1) forwards; }
.case-card.is-visible .case-chart span:nth-child(1){animation-delay:.10s}
.case-card.is-visible .case-chart span:nth-child(2){animation-delay:.18s}
.case-card.is-visible .case-chart span:nth-child(3){animation-delay:.26s}
.case-card.is-visible .case-chart span:nth-child(4){animation-delay:.34s}
.case-card.is-visible .case-chart span:nth-child(5){animation-delay:.42s}
@keyframes barRise { from { transform: scaleY(0); opacity: .1; } to { transform: scaleY(1); opacity: 1; } }
.case-card strong { transition: transform .35s ease, text-shadow .35s ease; }
.case-card:hover strong { transform: translateY(-3px); text-shadow: 0 0 24px rgba(255,215,0,.18); }
.case-card .case-chart { transition: transform .42s cubic-bezier(.2,.8,.2,1); }
.case-card:hover .case-chart { transform: translateY(-6px) scaleY(1.06); }

/* Personas — checklist entra em cascata e responde ao ponteiro */
.persona-card { transition: border-color .3s ease, box-shadow .3s ease; }
.persona-card ul li { transition: transform .28s ease, background .28s ease, box-shadow .28s ease; }
.persona-card ul li:hover { transform: translateX(8px); box-shadow: 0 10px 26px rgba(0,39,15,.07); }
.persona-card-dark ul li:hover { background: rgba(255,255,255,.09); box-shadow: 0 12px 30px rgba(0,0,0,.13); }
.persona-card.reveal:not(.is-visible) li { opacity: 0; transform: translateY(14px); }
.persona-card.is-visible li { animation: personaItemIn .5s ease both; }
.persona-card.is-visible li:nth-child(1){animation-delay:.15s}
.persona-card.is-visible li:nth-child(2){animation-delay:.26s}
.persona-card.is-visible li:nth-child(3){animation-delay:.37s}
@keyframes personaItemIn { to { opacity: 1; transform: none; } }

/* Números — highlight interativo */
.stat-item { position: relative; overflow: hidden; transition: background .3s ease, transform .3s ease; }
.stat-item::after {
  content: "";
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  right: -100px; bottom: -110px;
  background: radial-gradient(circle, rgba(255,215,0,.18), transparent 68%);
  transform: scale(.5);
  opacity: 0;
  transition: transform .42s ease, opacity .42s ease;
}
.stat-item:hover { background: rgba(255,255,255,.035); transform: translateY(-4px); }
.stat-item:hover::after { transform: scale(1); opacity: 1; }
.stat-value { transition: transform .35s cubic-bezier(.2,.85,.2,1.2), text-shadow .3s ease; }
.stat-item:hover .stat-value { transform: scale(1.045); text-shadow: 0 0 22px rgba(255,215,0,.24); }

/* Jornada — níveis agora podem ser clicados */
.journey-level { border-radius: 14px; cursor: pointer; padding-inline: 7px; margin-inline: -7px; }
.journey-level:hover { opacity: .78; background: rgba(255,255,255,.025); }
.journey-level:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }
.journey-level.is-active { background: linear-gradient(90deg, rgba(255,215,0,.065), transparent 74%); }
.journey-level.is-active .level-copy h3 { color: #fff6b9; }

/* Botões magnéticos + clique */
.btn { will-change: transform; }
.btn.btn-pressed { animation: buttonPress .24s ease; }
@keyframes buttonPress { 50% { transform: scale(.965); } }

/* Pequeno movimento de profundidade nos fundos do hero */
.hero { --hero-x: 0px; --hero-y: 0px; }
.hero-aurora-a { transform: translate3d(calc(var(--hero-x) * .45), calc(var(--hero-y) * .45), 0); transition: transform .25s ease-out; }
.grid-orbit-a { transform: translate3d(calc(var(--hero-x) * -.22), calc(var(--hero-y) * -.22), 0); transition: transform .28s ease-out; }

@media (hover: none), (pointer: coarse) {
  .card-spotlight { display: none; }
  .fx-card, .stat-item { transform: none !important; }
  .billing-row:hover, .persona-card ul li:hover, .comparison-row:not(.comparison-head):hover { transform: none; }
}

@media (max-width: 1024px) {
  .steps-grid::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .case-card .case-chart span,
  .persona-card.reveal:not(.is-visible) li { opacity: 1 !important; transform: none !important; }
  .billing-row-featured { animation: none !important; }
  .hero-aurora-a, .grid-orbit-a { transform: none !important; }
}

/* =========================================================
   CORREÇÃO MOBILE — largura real da viewport
   Impede elementos decorativos absolutos de criarem overflow
   horizontal e garante que todas as seções ocupem 100% da tela.
   ========================================================= */
@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow-x: clip;
  }

  .page-shell,
  main {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
  }

  .site-header,
  .hero,
  .stats-strip,
  .section,
  .pricing-section,
  .form-section,
  footer {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-inline: 0;
    padding-inline: 14px;
  }

  .hero {
    min-height: 100svh;
    display: block;
  }

  .hero-grid,
  .hero-copy,
  .journey-wrap,
  .journey-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

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

  /* No mobile, os círculos/orbes gigantes não podem ampliar a área rolável.
     O gradiente da própria seção mantém o efeito visual sem overflow. */
  .grid-orbit,
  .ambient-line,
  .pricing-orb,
  .hero-aurora {
    display: none !important;
  }

  /* Evita que transformações/hover de cards criem largura extra em browsers mobile. */
  .feature-card,
  .step-card,
  .case-card,
  .persona-card,
  .billing-card,
  .comparison-table,
  .lead-form {
    max-width: 100%;
    min-width: 0;
  }
}


/* =========================================================
   MOBILE — conteúdo centralizado + tipografia fluida
   Ajuste exclusivo para telas de até 720px.
   ========================================================= */
@media (max-width: 720px) {
  /* Segurança contra qualquer conteúdo que tente ultrapassar a viewport */
  html, body, .page-shell, main, section, .site-header, footer {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: clamp(16px, 4.8vw, 22px);
  }

  /* Header: mantém tudo dentro da tela, sem cortes */
  .header-inner {
    width: 100%;
    gap: 10px;
  }
  .brand-logo {
    width: clamp(40px, 11vw, 46px);
    height: clamp(40px, 11vw, 46px);
    flex: 0 0 auto;
  }
  .btn-header {
    min-width: 0;
    max-width: calc(100vw - 96px);
    min-height: 42px;
    padding-inline: clamp(11px, 3vw, 15px);
    font-size: clamp(10px, 2.9vw, 12px);
    white-space: nowrap;
    transform: none !important;
  }

  /* HERO — todo o conteúdo centralizado no mobile */
  .hero {
    padding-top: calc(var(--header-h) + clamp(48px, 12vw, 66px));
    padding-bottom: 64px;
  }
  .hero-grid {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 44px;
  }
  .hero-copy {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
    text-align: center;
  }
  .hero .eyebrow {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-inline: auto;
    font-size: clamp(9px, 2.65vw, 12px);
    line-height: 1.45;
    letter-spacing: .095em;
    flex-wrap: wrap;
  }
  .hero .eyebrow::before {
    width: clamp(20px, 6vw, 26px);
    flex: 0 0 auto;
  }
  .hero h1 {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(34px, 10.2vw, 49px);
    line-height: 1.02;
    letter-spacing: -.045em;
    text-align: center;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  .hero-lead {
    width: 100%;
    max-width: 520px;
    margin: 24px auto 0;
    font-size: clamp(15px, 4.15vw, 17px);
    line-height: 1.65;
    text-align: center;
    text-wrap: pretty;
  }
  .hero-highlight {
    margin: 14px auto 0;
    font-size: clamp(16px, 4.8vw, 19px);
    text-align: center;
  }
  .hero-actions {
    width: 100%;
    max-width: 520px;
    margin: 30px auto 0;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    transform: none !important;
  }
  .microcopy {
    width: 100%;
    max-width: 520px;
    margin: 22px auto 0;
    text-align: center;
    font-size: clamp(11px, 3.1vw, 13px);
  }

  /* Card da jornada: centraliza cabeçalho e mantém passos legíveis */
  .journey-wrap {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }
  .journey-card {
    width: 100%;
    padding: clamp(16px, 4.5vw, 20px);
  }
  .journey-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .journey-head .mini-label,
  .journey-head p,
  .journey-footer,
  .status-pill {
    text-align: center;
    margin-inline: auto;
  }
  .live-dot { margin-top: 0; }

  /* Títulos e introduções das demais seções */
  .section-heading,
  .pricing-copy,
  .form-intro {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .section-heading .eyebrow,
  .pricing-copy .eyebrow,
  .form-intro .eyebrow {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .section-heading h2,
  .pricing-copy h2,
  .form-intro h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(30px, 8.8vw, 40px);
    line-height: 1.06;
    text-align: center;
    text-wrap: balance;
  }
  .section-heading p,
  .pricing-copy > p,
  .form-intro p {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(14px, 4vw, 16px);
    text-align: center;
  }

  /* Estatísticas */
  .stat-item {
    align-items: center;
    text-align: center;
  }
  .stat-value {
    font-size: clamp(30px, 10vw, 42px);
  }
  .stat-item span { margin-inline: auto; }

  /* Cards de conteúdo */
  .feature-card,
  .step-card,
  .case-card,
  .persona-card {
    text-align: center;
  }
  .icon-box,
  .step-number {
    margin-left: auto;
    margin-right: auto;
  }
  .feature-card h3,
  .step-card h3,
  .persona-card h3 {
    text-wrap: balance;
  }
  .feature-card h3 { font-size: clamp(20px, 5.8vw, 23px); }
  .step-card h3 { font-size: clamp(19px, 5.5vw, 22px); }
  .persona-card h3 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(28px, 8vw, 36px);
  }
  .persona-tag { justify-content: center; }

  /* Precificação */
  .price-display {
    text-align: center;
    font-size: clamp(16px, 4.3vw, 18px);
  }
  .price-display strong {
    font-size: clamp(42px, 13vw, 64px);
    text-wrap: balance;
  }
  .billing-head,
  .billing-row {
    text-align: center;
    justify-items: center;
  }
  .billing-row span { justify-self: center; }

  /* Comparativo: rótulos e conteúdo centralizados */
  .comparison-row > div {
    text-align: center;
    justify-content: center;
  }
  .comparison-row > div::before {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Cases */
  .case-meta,
  .case-card strong { text-align: center; }

  /* Personas: mantém checklist organizado, mas o bloco fica centralizado */
  .persona-card ul {
    max-width: 520px;
    margin-inline: auto;
  }
  .persona-card li {
    text-align: left;
  }

  /* Formulário: introdução centralizada; campos preservam legibilidade */
  .lead-form {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }
  .btn-submit { transform: none !important; }

  /* Footer central no mobile */
  .footer-inner {
    align-items: center;
    text-align: center;
  }
  .brand-footer { margin-inline: auto; }
  .footer-inner p {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
    text-align: center;
  }

  /* Em touch, remove deslocamentos magnéticos que podem empurrar elementos para fora */
  .btn,
  .fx-card,
  .stat-item {
    transform: none !important;
  }
}

/* Ajuste extra para celulares bem estreitos */
@media (max-width: 380px) {
  .container { padding-inline: 15px; }
  .hero h1 { font-size: clamp(32px, 10vw, 38px); }
  .section-heading h2,
  .pricing-copy h2,
  .form-intro h2 { font-size: clamp(28px, 8.8vw, 34px); }
  .journey-level {
    grid-template-columns: 38px minmax(0,1fr) 8px;
    gap: 8px;
  }
  .level-index { width: 38px; height: 38px; }
  .journey-levels::before { left: 18px; }
  .level-copy h3 { font-size: 14px; }
  .level-copy p { font-size: 10px; }
}
