/* ============================================================
   Peso Cash Loan — product website
   Palette: primary #06B85C, deep green, warm off-white
   Type: Sora (display) + Manrope (body)
   ============================================================ */

:root {
  --green:        #06B85C;
  --green-600:    #05a350;
  --green-700:    #048043;
  --green-deep:   #053d28;
  --green-ink:    #06291b;
  --mint-50:      #f0fbf5;
  --mint-100:     #e2f6ec;
  --mint-200:     #c7eed9;

  --ink:          #0a1f17;
  --ink-2:        #2e4a3e;
  --muted:        #5c7268;
  --line:         #e4ebe7;
  --line-2:       #d2ded8;

  --bg:           #f7faf8;
  --bg-warm:      #fbfdfc;
  --card:         #ffffff;

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius:    18px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --shadow-sm: 0 1px 2px rgba(6,41,27,.06), 0 1px 3px rgba(6,41,27,.04);
  --shadow:    0 8px 24px -8px rgba(6,41,27,.14), 0 2px 8px -2px rgba(6,41,27,.08);
  --shadow-lg: 0 30px 60px -22px rgba(6,41,27,.30), 0 10px 24px -12px rgba(6,41,27,.16);
  --shadow-green: 0 18px 40px -14px rgba(6,184,92,.45);

  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--green); color: #fff; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-700);
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--green); border-radius: 2px; }

.section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); margin: 16px 0 14px; }
.section-head p { font-size: 18px; color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  padding: 14px 26px; border-radius: 999px; transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: var(--shadow-green); }
.btn-primary:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 22px 46px -14px rgba(6,184,92,.55); }
.btn-ghost { background: #fff; color: var(--green-ink); border: 1.5px solid var(--line-2); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-700); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 17px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,250,248,.82); backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent; transition: border-color .25s, background .25s, box-shadow .25s;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 6px 20px -16px rgba(6,41,27,.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -.02em; color: var(--ink); }
.brand-mark {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  background: #fff; overflow: hidden;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -.02em; color: var(--ink); }
.brand-tag { font-family: var(--font-body); font-weight: 600; font-size: 10.5px; letter-spacing: .02em; color: var(--muted); margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--ink-2); transition: color .15s; }
.nav-links a:hover { color: var(--green-700); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(820px 520px at 82% -8%, rgba(6,184,92,.16), transparent 60%),
    radial-gradient(700px 600px at -5% 30%, rgba(6,184,92,.07), transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-copy { max-width: 580px; }
.hero h1 { font-size: clamp(38px, 5.4vw, 66px); margin: 22px 0 22px; }
.hero h1 .hl { color: var(--green-700); position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 11px; z-index: -1;
  background: var(--mint-200); border-radius: 4px;
}
.hero-sub { font-size: 19px; color: var(--ink-2); max-width: 510px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 32px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--green-ink);
  background: #fff; border: 1px solid var(--line); padding: 9px 15px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.chip svg { width: 16px; height: 16px; color: var(--green); }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-note { font-size: 13.5px; color: var(--muted); margin-top: 16px; display: flex; align-items: center; gap: 7px; }
.hero-note svg { width: 15px; height: 15px; color: var(--green); flex: none; }

/* store badges */
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--green-ink); color: #fff; padding: 11px 18px; border-radius: 14px;
  transition: transform .18s var(--ease), box-shadow .18s; box-shadow: var(--shadow);
}
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge .gp-logo { flex: none; }
.store-badge .sb-text { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge .sb-small { font-size: 10.5px; opacity: .8; font-weight: 500; }
.store-badge .sb-big { font-size: 16px; font-weight: 700; font-family: var(--font-display); }
.store-badge .soon { font-size: 9px; font-weight: 800; letter-spacing: .1em; background: var(--green); color: #fff; padding: 2px 6px; border-radius: 5px; margin-left: 2px; align-self: flex-start; }

/* phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.phone {
  position: relative; width: 300px; height: 612px; border-radius: 46px; z-index: 2;
  background: #0a1f17; padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(6,41,27,.06);
}
.phone::after { /* notch removed */
  content: none;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 35px; overflow: hidden; background: #fff; position: relative;
}
.phone image-slot { width: 100%; height: 100%; }

/* floating badge near phone */
.float-card {
  position: absolute; z-index: 4; background: #fff; border-radius: 16px; padding: 13px 16px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 11px; border: 1px solid var(--line);
}
.float-card .fc-ico { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.float-card .fc-label { font-size: 11px; color: var(--muted); font-weight: 600; }
.float-card .fc-val { font-size: 16px; font-weight: 800; font-family: var(--font-display); color: var(--ink); }
.float-1 { top: 64px; left: -18px; animation: floaty 5s ease-in-out infinite; }
.float-2 { bottom: 96px; right: -30px; animation: floaty 5s ease-in-out infinite .8s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-glow { position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(6,184,92,.30), transparent 65%); filter: blur(10px); z-index: 1; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-warm); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 34px 0; }
.trust-item { display: flex; flex-direction: column; gap: 4px; padding: 0 8px; }
.trust-item .tv { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--green-ink); letter-spacing: -.02em; }
.trust-item .tl { font-size: 14px; color: var(--muted); font-weight: 500; }
.trust-item + .trust-item { border-left: 1px solid var(--line); padding-left: 28px; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--bg); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px;
  box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--mint-200); }
.feat-ico {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px;
  background: var(--mint-100); color: var(--green-700);
}
.feat-ico svg { width: 28px; height: 28px; }
.feat-card h3 { font-size: 21px; margin-bottom: 10px; }
.feat-card p { font-size: 15.5px; color: var(--muted); }
.feat-card.span-2 { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: center; background: linear-gradient(135deg, var(--green-deep), var(--green-ink)); border: none; color: #fff; }
.feat-card.span-2 h3 { color: #fff; font-size: 26px; }
.feat-card.span-2 p { color: rgba(255,255,255,.78); }
.feat-card.span-2 .feat-ico { background: rgba(255,255,255,.12); color: #fff; }
.feat-card.span-2 .big-num { font-family: var(--font-display); font-weight: 800; font-size: 62px; color: var(--green); line-height: 1; letter-spacing: -.03em; }
.feat-card.span-2 .big-sub { color: rgba(255,255,255,.7); font-size: 15px; margin-top: 8px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--bg-warm); position: relative; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 30px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%; background: #fff; border: 2px solid var(--mint-200);
  display: grid; place-items: center; margin: 0 auto 20px; font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--green-700);
  box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), border-color .2s, background .2s, color .2s;
}
.step:hover .step-num { background: var(--green); color: #fff; border-color: var(--green); transform: scale(1.08); }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--muted); padding: 0 6px; }

/* ============================================================
   CALCULATOR
   ============================================================ */
.calc { background: var(--green-ink); color: #fff; position: relative; overflow: hidden; }
.calc::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 500px at 88% 10%, rgba(6,184,92,.22), transparent 60%); }
.calc .section-head h2 { color: #fff; }
.calc .section-head p { color: rgba(255,255,255,.72); }
.calc-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: stretch; position: relative; z-index: 1; }
.calc-controls { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 36px; display: flex; flex-direction: column; }
.calc-foot { margin-top: auto; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.1); }
.calc-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.calc-logo { width: 50px; height: 50px; border-radius: 14px; background: #fff; overflow: hidden; display: grid; place-items: center; flex: none; box-shadow: 0 8px 22px -8px rgba(0,0,0,.5); }
.calc-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.cb-name { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: #fff; letter-spacing: -.01em; }
.cb-sub { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 3px; }
.calc-ticks { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.calc-ticks li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: rgba(255,255,255,.84); font-weight: 500; }
.calc-ticks li .tick { width: 22px; height: 22px; border-radius: 50%; background: rgba(6,184,92,.18); display: grid; place-items: center; flex: none; }
.calc-ticks li .tick svg { width: 13px; height: 13px; color: var(--green); }
.calc-row { margin-bottom: 34px; }
.calc-row:last-child { margin-bottom: 0; }
.calc-row .cr-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.calc-row .cr-label { font-size: 15px; color: rgba(255,255,255,.7); font-weight: 600; }
.calc-row .cr-value { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--green); letter-spacing: -.02em; }

input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: rgba(255,255,255,.16); outline: none; }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--green); cursor: pointer; border: 4px solid #fff; box-shadow: 0 4px 12px rgba(0,0,0,.3); transition: transform .12s;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type="range"]::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: var(--green); cursor: pointer; border: 4px solid #fff; }
.range-scale { display: flex; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,.5); margin-top: 9px; }

.term-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.term-pill {
  flex: 1; min-width: 64px; padding: 12px 8px; border-radius: 12px; text-align: center;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.14); color: rgba(255,255,255,.8);
  font-weight: 700; font-size: 15px; transition: all .15s;
}
.term-pill:hover { border-color: rgba(255,255,255,.4); }
.term-pill.active { background: var(--green); border-color: var(--green); color: #fff; }
.term-pill small { display: block; font-size: 11px; font-weight: 500; opacity: .8; margin-top: 2px; }

.calc-result { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: 38px 36px; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.calc-result .cr-head { font-size: 14px; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.calc-result .monthly { font-family: var(--font-display); font-weight: 800; font-size: 56px; color: var(--green-ink); letter-spacing: -.03em; margin: 8px 0 2px; line-height: 1; }
.calc-result .monthly small { font-size: 18px; color: var(--muted); font-weight: 600; }
.calc-result .breakdown { margin: 26px 0; border-top: 1px solid var(--line); }
.bd-row { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.bd-row span:first-child { color: var(--muted); }
.bd-row span:last-child { font-weight: 700; font-family: var(--font-display); }
.bd-row.total span { color: var(--green-ink); font-size: 16px; }
.calc-result .disclaimer { font-size: 12.5px; color: var(--muted); margin-top: auto; line-height: 1.5; }
.calc-result .btn { margin-top: 22px; width: 100%; }

/* ============================================================
   SECURITY / COMPLIANCE
   ============================================================ */
.security { background: var(--bg); }
.sec-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.sec-shield {
  position: relative; aspect-ratio: 1; border-radius: var(--radius-xl); overflow: hidden;
  background: linear-gradient(150deg, var(--green-deep), var(--green-ink));
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
}
.sec-shield::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(6,184,92,.4), transparent 55%); }
.sec-shield .shield-ico { width: 120px; height: 120px; color: #fff; position: relative; z-index: 1; }
.sec-shield .shield-logo { width: 168px; height: 168px; border-radius: 30px; object-fit: contain; background: #fff; padding: 14px; position: relative; z-index: 1; box-shadow: 0 24px 50px -16px rgba(0,0,0,.5); }
.sec-badge-row { position: absolute; bottom: 26px; left: 26px; right: 26px; z-index: 1; display: flex; gap: 12px; justify-content: center; }
.sec-mini { background: rgba(255,255,255,.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.2); border-radius: 12px; padding: 12px 14px; color: #fff; font-size: 12px; font-weight: 700; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.sec-mini svg { width: 22px; height: 22px; }
.sec-list { display: flex; flex-direction: column; gap: 8px; }
.sec-item { display: flex; gap: 18px; padding: 20px; border-radius: var(--radius); transition: background .18s; }
.sec-item:hover { background: var(--mint-50); }
.sec-item .si-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--mint-100); color: var(--green-700); display: grid; place-items: center; flex: none; }
.sec-item .si-ico svg { width: 24px; height: 24px; }
.sec-item h3 { font-size: 18px; margin-bottom: 5px; }
.sec-item p { font-size: 15px; color: var(--muted); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--bg-warm); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rev-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.rev-stars { display: flex; gap: 3px; color: var(--green); margin-bottom: 16px; }
.rev-stars svg { width: 18px; height: 18px; }
.rev-card p { font-size: 16px; color: var(--ink-2); margin-bottom: 22px; flex: 1; }
.rev-author { display: flex; align-items: center; gap: 12px; }
.rev-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(140deg, var(--green), var(--green-700)); display: grid; place-items: center; color: #fff; font-weight: 800; font-family: var(--font-display); flex: none; }
.rev-author .ra-name { font-weight: 700; font-size: 15px; }
.rev-author .ra-meta { font-size: 13px; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item.open { border-color: var(--mint-200); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--ink); }
.faq-q .faq-plus { width: 26px; height: 26px; flex: none; position: relative; border-radius: 50%; background: var(--mint-100); transition: background .2s; }
.faq-item.open .faq-q .faq-plus { background: var(--green); }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; top: 50%; left: 50%; width: 11px; height: 2px; background: var(--green-700); border-radius: 2px; transform: translate(-50%,-50%); transition: transform .25s var(--ease), background .2s; }
.faq-item.open .faq-plus::before, .faq-item.open .faq-plus::after { background: #fff; }
.faq-plus::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item.open .faq-plus::after { transform: translate(-50%,-50%) rotate(0deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a-inner { padding: 0 24px 24px; font-size: 15.5px; color: var(--muted); }

/* ============================================================
   DOWNLOAD CTA
   ============================================================ */
.cta { padding: 40px 0 100px; }
.cta-card {
  position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: 72px 56px;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-ink) 100%);
  color: #fff; display: flex; justify-content: center; text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(560px 360px at 50% -10%, rgba(6,184,92,.4), transparent 60%); }
.cta-card::after { content: ""; position: absolute; width: 280px; height: 280px; left: 50%; bottom: -140px; transform: translateX(-50%); border-radius: 50%; border: 36px solid rgba(6,184,92,.12); }
.cta-body { position: relative; z-index: 1; max-width: 560px; display: flex; flex-direction: column; align-items: center; }
.cta-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--mint-100); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
.cta-card h2 { color: #fff; font-size: clamp(30px, 4vw, 44px); margin-bottom: 14px; }
.cta-card p { color: rgba(255,255,255,.78); font-size: 18px; margin-bottom: 32px; max-width: 460px; line-height: 1.55; }
.cta-badges { justify-content: center; gap: 14px; }
.cta-card .store-badge-primary {
  background: #fff; color: var(--green-ink);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.cta-card .store-badge-primary:hover { box-shadow: 0 14px 34px rgba(0,0,0,.24); }
.cta-card .store-badge-primary .soon { background: var(--green); color: #fff; }
.cta-card .store-badge-muted {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.18); box-shadow: none; cursor: default;
}
.cta-card .store-badge-muted:hover { transform: none; box-shadow: none; }
.cta-card .store-badge-muted .soon {
  background: rgba(255,255,255,.2); color: #fff;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-ink); color: rgba(255,255,255,.7); padding: 70px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand-name { color: #fff; }
.footer .brand-tag { color: rgba(255,255,255,.5); }
.footer-about { font-size: 14.5px; max-width: 340px; line-height: 1.7; }
.footer-reg { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-col h4 { color: #fff; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; }
.footer-col a, .footer-col li { display: block; font-size: 14.5px; color: rgba(255,255,255,.7); margin-bottom: 11px; transition: color .15s; list-style: none; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 13px; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 12px; }
.footer-bottom .disc { max-width: 720px; line-height: 1.6; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-warm); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; align-items: stretch; }
.contact-card-lg {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 44px 40px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column; align-items: center;
}
.contact-card-lg:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--mint-200); }
.contact-card-lg .cc-ico {
  width: 76px; height: 76px; border-radius: 22px; display: grid; place-items: center; margin-bottom: 24px;
  background: linear-gradient(150deg, var(--mint-100), var(--mint-200)); color: var(--green-700);
}
.contact-card-lg .cc-ico svg { width: 38px; height: 38px; }
.contact-card-lg h3 { font-size: 23px; color: var(--green-ink); margin-bottom: 16px; }
.contact-card-lg .cc-email {
  font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--green-700);
  word-break: break-word; transition: color .15s;
}
.contact-card-lg .cc-email:hover { color: var(--green); text-decoration: underline; }
.cc-hours { list-style: none; display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 360px; }
.cc-hours li { display: flex; flex-direction: column; gap: 3px; padding: 14px 18px; background: var(--mint-50); border: 1px solid var(--mint-100); border-radius: var(--radius-sm); }
.cc-hours li span { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.cc-hours li strong { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--green-ink); letter-spacing: -.01em; }
.contact-card-lg .cc-note { font-size: 13.5px; color: var(--muted); margin-top: 18px; }
.contact-card-lg .cc-address { font-family: var(--font-display); font-weight: 700; font-size: 16px; line-height: 1.5; color: var(--green-ink); max-width: 300px; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; max-width: 460px; }
}

@media (max-width: 680px) {
  .contact-card-lg { padding: 34px 26px; }
  .contact-card-lg .cc-email { font-size: 16px; }
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* language switch (legal pages) */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; background: var(--mint-100); border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang-switch a { display: inline-flex; align-items: center; padding: 6px 15px; border-radius: 999px; font-size: 13.5px; font-weight: 700; color: var(--ink-2); transition: background .15s, color .15s; }
.lang-switch a:hover { color: var(--green-700); }
.lang-switch a.active { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.legal-actions { display: flex; align-items: center; gap: 18px; }
@media (max-width: 560px) { .back-link span, .legal-actions .back-text { display: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-copy { max-width: none; }
  .calc-grid, .sec-grid, .faq-grid { grid-template-columns: 1fr; }
  .feat-grid, .rev-grid, .steps { grid-template-columns: 1fr 1fr; }
  .feat-card.span-2 { grid-column: span 2; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .trust-item:nth-child(3) { border-left: none; padding-left: 8px; }
  .steps::before { display: none; }
  .sec-shield { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .wrap { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: grid; }
  .feat-grid, .rev-grid, .steps, .trust-grid { grid-template-columns: 1fr; }
  .feat-card.span-2 { grid-column: span 1; grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: none; padding-left: 8px; }
  .calc-controls, .calc-result { padding: 26px; }
  .calc-result .monthly { font-size: 46px; }
  .cta-card { padding: 48px 24px; }
  .cta-badges { flex-direction: column; align-items: stretch; width: 100%; max-width: 280px; }
  .cta-card .store-badge { justify-content: center; }
  .hero h1 .hl { white-space: normal; }
}
