/* ============================================================
   1% Budget — Landing (redesign)
   Design system ported from the Claude Design redesign.
   Single font: Nunito. Warm off-white surfaces, bold heads.
   ============================================================ */

:root {
  --bg:#FAF4E4; --surface:#FFFFFF; --surface-2:#FFFFFF;
  --band:#FAF4E4; --band-soft:#F1F5EE;
  --text:#2B312E; --head:#1E2522; --muted:rgba(43,49,46,0.62); --faint:rgba(43,49,46,0.40);
  --line:#E7E2D7; --line-soft:#EFEBE1;
  --green:#21845C; --green-strong:#196B49; --green-soft:rgba(33,132,92,0.10);
  --orange:#F5843D; --orange-dark:#E0732C;
  --lime:#3FBE4C; --lime-soft:rgba(71,208,79,0.16);
  --warm:#F7F4C5; --warm-ink:#6E6217;
  --shadow:rgba(40,52,30,0.16); --shadow-soft:rgba(40,45,30,0.07);

  --maxw:1180px;
}

[data-theme="dark"] {
  --bg:#111815; --surface:#1A211D; --surface-2:#1C231F;
  --band:#111815; --band-soft:#161E1A;
  --text:#E7F1EB; --head:#F2FAF6; --muted:rgba(231,241,235,0.64); --faint:rgba(231,241,235,0.40);
  --line:rgba(231,241,235,0.11); --line-soft:rgba(231,241,235,0.06);
  --green:#46C68C; --green-strong:#37B07A; --green-soft:rgba(70,198,140,0.14);
  --orange:#F5843D; --orange-dark:#E0732C;
  --lime:#5BD863; --lime-soft:rgba(91,216,99,0.16);
  --warm:rgba(247,244,197,0.16); --warm-ink:#ECE2A0;
  --shadow:rgba(0,0,0,0.50); --shadow-soft:rgba(0,0,0,0.36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
#features, #how, #pricing, #download { scroll-margin-top: 96px; }
html, body { margin: 0; }
body {
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

@keyframes faqIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes gpTip { from { opacity: 0; transform: translateX(-50%) translateY(8px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* smooth theme switch */
body, .nav, .trust, .feat-card, .how-card, .price-left, .price-right, .plan, .phone, .phone-screen {
  transition: background-color 240ms ease, border-color 240ms ease, color 240ms ease;
}

/* ---------- shared ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.h2 {
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--head);
  margin: 0;
  text-wrap: balance;
}
.section { padding: clamp(42px, 5.5vw, 72px) 0; }
.section.band { background: var(--band); }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto clamp(26px, 3.5vw, 44px); }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 15px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
.brand-logo { height: 50px; width: auto; display: block; }
[data-theme="dark"] .nav .brand-logo { filter: brightness(0) invert(1); }
.nav-links {
  display: flex;
  gap: 22px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  color: var(--text);
}
.nav-links a:hover { color: var(--green); }
.nav-ctrls { display: inline-flex; align-items: center; gap: 6px; }
.nav-social { display: inline-flex; align-items: center; gap: 3px; margin-right: 2px; }
.nav-social a {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted); border: 1px solid var(--line);
  transition: all 0.16s ease;
}
.nav-social a:hover { color: var(--green); border-color: var(--green); }
.pill-group {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.pill-group.lang { font-weight: 800; font-size: 12.5px; letter-spacing: 0.04em; }
.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 9px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.16s ease;
  background: transparent;
  color: var(--muted);
}
.pill-group.lang .pill-btn { padding: 6px 13px; }
.pill-btn.active { background: var(--green); color: #fff; }

/* ---------- hero ---------- */
.hero { padding: clamp(28px, 4vw, 52px) 0 clamp(32px, 4.5vw, 60px); position: relative; overflow: hidden; }
.hero-glow {
  position: absolute;
  top: 6%;
  right: -6%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-soft) 0%, rgba(0,0,0,0) 68%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(36px, 6vw, 72px);
  position: relative;
}
.hero-text { flex: 1 1 380px; min-width: 300px; }
.hero .eyebrow { margin-bottom: 20px; }
.hero h1 {
  font-weight: 800;
  font-size: clamp(38px, 4.7vw, 62px);
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: var(--head);
  margin: 0;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--head);
  margin: 22px 0 0;
  max-width: 500px;
  font-weight: 500;
}
.hero-badges { margin-top: 34px; display: flex; gap: 13px; flex-wrap: wrap; }
.hero-shot { flex: 1 1 320px; display: flex; justify-content: center; perspective: 1300px; animation: floaty 7s ease-in-out infinite; }

/* ---------- store badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border-radius: 13px;
  padding: 10px 17px;
  text-decoration: none;
}
.badge-ios { background: #000; border: 1.5px solid rgba(127,127,127,0.28); color: #fff; }
.badge-play {
  position: relative;
  background: #8C9490;
  border: 1.5px solid rgba(45,50,47,0.42);
  color: #fff;
  opacity: 0.82;
  cursor: default;
}
.badge-txt { text-align: left; line-height: 1.1; }
.badge svg { width: 22px; height: 22px; flex: none; }
.badge-small { display: block; font-size: 10.5px; letter-spacing: 0.02em; color: rgba(255,255,255,0.8); font-weight: 600; }
.badge-big { display: block; font-size: 18px; font-weight: 700; letter-spacing: 0.01em; }
.gp-tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 11px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 10px 22px -10px rgba(0,0,0,0.45);
  animation: gpTip 0.22s cubic-bezier(.22,1,.36,1) both;
}

/* ---------- phone mockup (hero) ---------- */
.phone {
  position: relative;
  width: min(310px, 76vw);
  aspect-ratio: 1179 / 2556;
  border-radius: 52px;
  background: linear-gradient(150deg, #3a3d40 0%, #141517 42%, #0a0b0c 100%);
  box-shadow: 0 60px 100px -55px var(--shadow), 0 28px 54px -40px var(--shadow-soft), 0 0 0 2px rgba(0,0,0,0.55), inset 0 1px 2px rgba(255,255,255,0.22);
  padding: 11px;
  transform: rotateY(0deg) rotateX(0deg);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.6s ease;
}
.phone-screen {
  height: 100%;
  border-radius: 42px;
  background: var(--band);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-screen::after, .how-screen::after {
  content: "";
  position: absolute;
  top: 1.25%;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  aspect-ratio: 3.3 / 1;
  background: #000;
  border-radius: 999px;
  z-index: 4;
}
.phone-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.phone-notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 33%; height: 24px; background: #0D0D0D; border-radius: 999px; z-index: 2; }
.phone-status { display: flex; align-items: center; justify-content: space-between; padding: 17px 24px 0; font-size: 12px; font-weight: 800; color: var(--muted); }
.phone-batt { width: 17px; height: 10px; border: 1.5px solid var(--muted); border-radius: 3px; }
.phone-body { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 24px; text-align: center; }
.shot-label { border: 1.5px dashed var(--green); color: var(--green); background: var(--surface); border-radius: 13px; padding: 13px 16px; font-weight: 700; font-size: 12.5px; line-height: 1.4; max-width: 88%; }
.shot-dim { font-family: ui-monospace, Menlo, monospace; font-size: 11px; letter-spacing: 0.04em; color: var(--faint); }

/* ---------- trust strip ---------- */
.trust { background: var(--band); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-inner { max-width: var(--maxw); margin: 0 auto; padding: 24px 28px; display: flex; flex-wrap: wrap; gap: 18px 40px; align-items: center; justify-content: center; }
.trust-item { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; font-size: 15px; color: var(--text); }
.trust-item .ic { color: var(--green); display: flex; }
.trust-div { width: 1px; height: 20px; background: var(--line); }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; margin-top: 28px; }
.hero-trust .trust-item { font-size: 14px; gap: 8px; white-space: nowrap; }
.hero-trust .trust-item .ic svg { width: 17px; height: 17px; }

/* ---------- features ---------- */
.feat-grid { display: flex; flex-wrap: wrap; gap: 28px; }
.feat-card { flex: 1 1 230px; background: var(--surface-2); border: 1px solid var(--line-soft); border-radius: 20px; padding: 30px 28px; }
.feat-ic { width: 48px; height: 48px; border-radius: 13px; background: var(--green-soft); color: var(--green); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.feat-card h3 { font-weight: 800; font-size: 19px; color: var(--head); margin: 0 0 9px; letter-spacing: -0.01em; }
.feat-card p { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.55; }
/* ---------- pain points (¿Te suena familiar?) ---------- */
.pain-head { text-align: left; color: var(--green); margin-bottom: clamp(28px, 4vw, 44px); }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pain-card { border-radius: 22px; padding: 30px 26px; display: flex; flex-direction: column; gap: 14px; }
.pain-q { font-weight: 800; font-size: 19px; line-height: 1.3; letter-spacing: -0.01em; color: var(--head); margin: 0; }
.pain-b { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0; }
.pain-card.mint { background: #E7F7EC; }
.pain-card.cream { background: #F4EECC; }
.pain-card.green { background: #D6EED9; }
.pain-card.peach { background: #FBE6DB; }
[data-theme="dark"] .pain-card.mint { background: rgba(61,190,133,0.13); }
[data-theme="dark"] .pain-card.cream { background: rgba(247,244,197,0.11); }
[data-theme="dark"] .pain-card.green { background: #18251F; border: 1px solid rgba(61,190,133,0.14); }
[data-theme="dark"] .pain-card.peach { background: rgba(245,132,61,0.14); }
.pain-foot { text-align: center; margin-top: clamp(34px, 5vw, 54px); }
.pain-foot-1 { font-size: 17px; color: var(--muted); margin: 0 0 8px; }
.pain-foot-2 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 800; color: var(--green); letter-spacing: -0.01em; margin: 0; }
@media (max-width: 900px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pain-grid { grid-template-columns: 1fr; } }

/* ---------- diamond separator ---------- */
.sep { background: var(--bg); padding: clamp(6px, 1.6vw, 18px) 28px; }
.sep.band { background: var(--band); }
.sep-inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; gap: 18px; }
.sep-line-l { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--line)); }
.sep-line-r { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }
.sep-diamond { width: 9px; height: 9px; background: var(--green); transform: rotate(45deg); border-radius: 2px; }

/* ---------- how it works ---------- */
#how { padding-top: clamp(26px, 3.2vw, 44px); padding-bottom: clamp(26px, 3.2vw, 44px); }
#how .sec-head { margin-bottom: clamp(16px, 2vw, 26px); }
.how-shell { display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; margin-top: clamp(20px, 3vw, 44px); }
.how-stage { position: relative; height: clamp(478px, 50vw, 516px); perspective: 1650px; perspective-origin: 50% 50%; display: flex; align-items: center; justify-content: center; }
.how-phone { position: absolute; top: 50%; left: 50%; width: min(206px, 50%); aspect-ratio: 1179 / 2556; margin: calc(-1 * min(206px, 50%) * 2556 / 1179 / 2) 0 0 calc(-1 * min(206px, 50%) / 2); border-radius: 44px; background: linear-gradient(150deg, #3a3d40 0%, #141517 42%, #0a0b0c 100%); box-shadow: 0 44px 72px -42px var(--shadow), 0 18px 34px -28px var(--shadow-soft), 0 0 0 2px rgba(0,0,0,0.55), inset 0 1px 2px rgba(255,255,255,0.22); padding: 9px; transition: transform 920ms cubic-bezier(.72,.02,.18,1), opacity 700ms ease, filter 700ms ease; cursor: pointer; }
.how-screen { height: 100%; border-radius: 39px; background: var(--band); overflow: hidden; position: relative; display: flex; flex-direction: column; }
.how-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.how-ph { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 24px; text-align: center; }
.how-ph-tag { border: 1.5px dashed var(--green); color: var(--green); border-radius: 12px; padding: 11px 14px; font-weight: 700; font-size: 12px; line-height: 1.4; }
.how-ph-dim { font-family: ui-monospace, Menlo, monospace; font-size: 10.5px; letter-spacing: 0.04em; color: var(--faint); }

.how-list { display: flex; flex-direction: column; gap: 12px; }
.how-item { position: relative; overflow: hidden; display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; text-align: left; width: 100%; font: inherit; color: inherit; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 20px 22px; cursor: pointer; transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms cubic-bezier(.3,.7,.2,1), background 300ms ease; }
.how-item::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--green); transform: scaleY(0); transform-origin: top; transition: transform 380ms cubic-bezier(.5,.1,.2,1); }
.how-item:hover { border-color: color-mix(in srgb, var(--green) 45%, var(--line)); transform: translateX(2px); }
.how-item.active { border-color: color-mix(in srgb, var(--green) 68%, var(--line)); background: linear-gradient(180deg, var(--green-soft), transparent 84%); box-shadow: 0 26px 52px -36px var(--shadow); }
.how-item.active::before { transform: scaleY(1); }
.how-num { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 14px; background: var(--green-soft); color: var(--green); font-weight: 800; font-size: 16px; transition: background 300ms ease, color 300ms ease, transform 300ms ease; }
.how-item.active .how-num { background: var(--green); color: #fff; }
.how-text { min-width: 0; }
.how-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: ui-monospace, Menlo, monospace; font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); transition: color 300ms ease; }
.how-eyebrow::after { content: ""; width: 18px; height: 1.5px; background: currentColor; opacity: 0.45; transition: width 320ms ease; }
.how-item.active .how-eyebrow { color: var(--green); }
.how-item.active .how-eyebrow::after { width: 30px; opacity: 0.8; }
.how-item h3 { margin: 5px 0 0; font-weight: 800; font-size: 18.5px; line-height: 1.22; letter-spacing: -0.01em; color: var(--head); }
.how-item p { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.55; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 460ms cubic-bezier(.4,.1,.2,1), opacity 320ms ease, margin 320ms ease; }
.how-item.active p { max-height: 130px; opacity: 1; margin: 8px 0 0; }
.how-arrow { width: 24px; height: 24px; color: var(--green); opacity: 0; transform: translateX(-8px); transition: opacity 320ms ease, transform 320ms ease; }
.how-item.active .how-arrow { opacity: 1; transform: translateX(0); }
.how-star { position: absolute; top: 13px; right: 15px; width: 18px; height: 18px; color: var(--green); opacity: 0; transform: scale(0.5) rotate(-25deg); transition: opacity 320ms ease, transform 380ms cubic-bezier(.34,.8,.3,1.25); pointer-events: none; }
.how-item.active .how-star { opacity: 1; transform: scale(1) rotate(0deg); }
.how-prog { position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--green), var(--lime)); }
.how-item.active .how-prog { animation: howfill 6000ms linear forwards; }
@keyframes howfill { from { width: 0; } to { width: 100%; } }
@media (max-width: 860px) { .how-shell { grid-template-columns: 1fr; gap: 34px; } .how-stage { height: clamp(400px, 92vw, 500px); order: -1; } .how-item p { max-height: 130px; opacity: 1; margin: 8px 0 0; } }

/* ---------- pricing ---------- */
.pricing-wrap { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.coffee-note { margin-top: 22px; display: flex; align-items: center; gap: 14px; padding: 15px 18px; border-radius: 16px; background: rgba(245,132,61,0.09); border: 1px solid rgba(245,132,61,0.3); }
.coffee-ic { flex: none; width: 46px; height: 46px; border-radius: 13px; background: rgba(245,132,61,0.16); color: var(--orange); display: flex; align-items: center; justify-content: center; }
.coffee-txt { margin: 0; font-size: 14.5px; font-weight: 700; line-height: 1.4; color: var(--text); }
.coffee-txt b { color: var(--orange-dark); font-weight: 800; }
.price-card { display: flex; flex-wrap: wrap; border: 1px solid var(--line); border-radius: 28px; overflow: hidden; box-shadow: 0 40px 80px -50px var(--shadow), 0 16px 40px -34px var(--shadow-soft); }
.price-left { flex: 1 1 0; min-width: 300px; background: var(--surface); padding: clamp(22px, 3vw, 34px); display: flex; flex-direction: column; gap: 13px; }
.pick-label { font-weight: 800; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.plan { position: relative; border: 1px solid var(--line); border-radius: 16px; padding: 16px 20px; background: var(--surface); }
.plan.featured { border: 2px solid var(--green); background: var(--green-soft); }
.plan-pill { position: absolute; top: 14px; right: 16px; background: var(--warm); color: var(--warm-ink); font-weight: 800; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.plan-name { font-weight: 800; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.plan.featured .plan-name { color: var(--green); }
.plan-price { font-weight: 800; font-size: clamp(24px, 2.6vw, 32px); letter-spacing: -0.02em; color: var(--head); line-height: 1.05; }
.plan-save { margin-top: 8px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; color: var(--lime); }
.plan-msub { margin-top: 6px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.plan-cta { margin-top: 4px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 14px 24px; border-radius: 13px; background: var(--orange); color: #fff; font-weight: 800; font-size: 15px; text-decoration: none; transition: background-color 0.16s ease; }
.plan-cta:hover { background: var(--orange-dark); }
.plan-foot { font-size: 12.5px; color: var(--faint); line-height: 1.5; text-align: center; }
.price-right { flex: 1 1 0; min-width: 300px; background: var(--band-soft); padding: clamp(22px, 3vw, 34px); border-left: 1px solid var(--line); }
.incl-title { font-weight: 800; font-size: clamp(18px, 1.8vw, 21px); letter-spacing: -0.01em; color: var(--head); margin-bottom: 16px; }
.incl-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.incl-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); line-height: 1.45; font-weight: 600; }
.incl-check { flex-shrink: 0; width: 23px; height: 23px; border-radius: 50%; background: var(--lime-soft); color: var(--lime); display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }

/* ---------- faq ---------- */
.faq-wrap { max-width: 840px; margin: 0 auto; padding: 0 28px; }
.faq-head { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.faq-item { border-top: 1px solid var(--line); }
.faq-item.last { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 4px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-family: inherit; font-weight: 700; font-size: 17px; color: var(--head); }
.faq-chev { flex-shrink: 0; color: var(--green); display: flex; transition: transform 0.2s ease; }
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-a { padding: 0 4px 22px; font-size: 16px; color: var(--muted); line-height: 1.6; max-width: 680px; animation: faqIn 0.24s ease; }

/* ---------- final cta ---------- */
.cta { padding: clamp(72px, 9vw, 116px) 0; background: #2F9268; text-align: center; }
.cta-inner { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.cta .eyebrow { color: rgba(255,255,255,0.7); }
.cta h2 { font-weight: 800; font-size: clamp(34px, 5vw, 56px); line-height: 1.06; letter-spacing: -0.02em; color: #fff; margin: 0; text-wrap: balance; }
.cta-sub { color: rgba(255,255,255,0.9); font-size: 17px; margin: 18px 0 32px; display: flex; align-items: center; gap: 10px; justify-content: center; flex-wrap: wrap; }
.cta-sub .dot { opacity: 0.5; }
.cta-badges { display: flex; gap: 13px; flex-wrap: wrap; justify-content: center; }

/* ---------- footer ---------- */
.footer { background: #102019; color: #EBFFF3; padding: 64px 0 30px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 40px; margin-bottom: 48px; }
.footer-brand { flex: 1 1 280px; display: flex; flex-direction: column; gap: 18px; }
.footer-brand .brand-logo { height: 56px; align-self: flex-start; flex: 0 0 auto; filter: brightness(0) invert(1); }
.footer-tag { font-size: 14px; color: rgba(235,255,243,0.66); max-width: 320px; line-height: 1.6; }
.footer-col { flex: 1 1 150px; }
.footer-col h4 { font-weight: 800; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(235,255,243,0.6); margin: 0 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(235,255,243,0.85); font-size: 15px; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid rgba(235,255,243,0.12); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: rgba(235,255,243,0.66); }
.socials { display: flex; gap: 13px; }
.socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(235,255,243,0.2); display: inline-flex; align-items: center; justify-content: center; color: rgba(235,255,243,0.8); transition: all 0.16s ease; }
.socials a:hover { border-color: var(--lime); color: var(--lime); }

/* ---------- responsive ---------- */
@media (max-width: 760px) {
  .nav-links { display: none; }
  .hero-shot { order: -1; }
  .price-right { border-left: none; border-top: 1px solid var(--line); }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
}
