/* =========================================================================
   GD Advice Solutions LLP — design system
   EXACT ZenoPay theme: light/white base, lime #cdfc73 accent, Inter Tight,
   near-black #161616 dark sections. Same structure + motion as ZenoPay.
   ========================================================================= */

:root {
  /* surfaces */
  --bg:        #f4f4f2;   /* light-gray page (ZenoPay)       */
  --bg-2:      #ffffff;   /* white panel / card             */
  --bg-3:      #ffffff;   /* white card                     */
  --bg-soft:   #ffffff;   /* white surface                  */
  --dark:      #161616;   /* dark sections / footer / CTA   */
  --dark-2:    #1d1d1d;

  /* accents (ZenoPay) */
  --accent:    #cdfc73;   /* lime — buttons & highlight fill */
  --accent-press: #bff357;
  --green:     #10d284;   /* bright green — icons, dots, fills */
  --green-ink: #0a6b43;   /* dark green — readable green text  */
  --green-dark:#033910;
  --accent-soft: rgba(205,252,115,.40);
  --green-soft:  rgba(16,210,132,.12);

  /* legacy aliases — keep older inline styles resolving to the green palette */
  --gold:      var(--green-ink);
  --gold-2:    var(--green-ink);
  --blue:      var(--green);
  --gold-soft: var(--accent-soft);
  --blue-soft: var(--green-soft);
  --line-gold: rgba(16,210,132,.28);
  --shadow-gold: var(--shadow-accent);

  /* text */
  --text:      #161616;   /* primary text on light          */
  --muted:     #565656;   /* secondary                      */
  --muted-2:   #8a8a8a;   /* faint                          */

  /* lines / glass */
  --line:      #e6e6e6;   /* borders on light               */
  --line-2:    rgba(22,22,22,.08);
  --glass:     #fafafa;
  --glass-2:   #f6f6f6;
  --line-dark: rgba(255,255,255,.12);

  /* metrics */
  --radius:    22px;
  --radius-sm: 14px;
  --radius-lg: 32px;
  --maxw:      1200px;
  --ease:      cubic-bezier(.22,.61,.36,1);

  --shadow:    0 22px 50px -26px rgba(20,22,30,.28);
  --shadow-sm: 0 10px 28px -16px rgba(20,22,30,.18);
  --shadow-accent: 0 14px 34px -16px rgba(16,210,132,.40);

  --ff-display: "Inter Tight", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --ff-body:    "Inter Tight", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lenis,html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img,svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--accent); color: #161616; }

/* subtle ambient tint */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(720px 480px at 84% -6%, rgba(205,252,115,.16), transparent 60%),
    radial-gradient(680px 520px at 6% 14%, rgba(16,210,132,.06), transparent 55%);
}

/* ---------- typography ---------- */
h1,h2,h3,h4 { font-family: var(--ff-display); font-weight: 500; line-height: 1.04; letter-spacing: -.02em; color: var(--text); }
.h-xl { font-size: clamp(2.7rem, 6.4vw, 5.5rem); font-weight: 500; }
.h-lg { font-size: clamp(2.2rem, 5vw, 4.3rem); }
.h-md { font-size: clamp(1.6rem, 2.8vw, 2.3rem); }
.serif-italic { font-style: normal; color: inherit; background: linear-gradient(transparent 60%, var(--accent) 60%); padding: 0 .06em; border-radius: 2px; }
.lead { font-size: clamp(1.05rem,1.4vw,1.22rem); color: var(--muted); max-width: 56ch; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 90px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-body); font-size: .85rem; font-weight: 500;
  letter-spacing: .01em; text-transform: none; color: var(--text);
  padding: 0; border: none; background: none;
}
.eyebrow::before { content: ""; width: 11px; height: 11px; border-radius: 50%; background: transparent; border: 2.5px solid var(--green); flex: none; }
.section-head { max-width: 720px; }
.section-head .lead { margin-top: 18px; }
.center { text-align: center; margin-inline: auto; }
.center .lead { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body); font-weight: 600; font-size: .98rem;
  padding: 14px 24px; border-radius: 100px; position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--gold { background: var(--accent); color: #161616; box-shadow: var(--shadow-accent); }
.btn--gold:hover { transform: translateY(-3px); background: var(--accent-press); box-shadow: 0 20px 44px -16px rgba(16,210,132,.5); }
.btn--ghost { border: 1px solid rgba(22,22,22,.16); color: var(--text); background: transparent; }
.btn--ghost:hover { background: var(--dark); color: #fff; border-color: var(--dark); transform: translateY(-3px); }
.btn--lg { padding: 17px 30px; font-size: 1.05rem; }

/* ---------- nav ---------- */
.nav { position: fixed; inset: 14px 0 auto; z-index: 100; padding-inline: 14px; transition: transform .4s var(--ease); }
.nav__inner {
  max-width: 940px; margin-inline: auto; padding: 9px 10px 9px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: #ffffff; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line); border-radius: 100px; box-shadow: var(--shadow-sm);
  transition: background .4s, border-color .4s, box-shadow .4s, padding .4s;
}
.nav.scrolled .nav__inner { background: #ffffff; border-color: #e3e3e3; box-shadow: 0 14px 30px -18px rgba(20,22,30,.28); }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem; letter-spacing: -.02em; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  display: grid; place-items: center; font-size: .92rem; font-weight: 700;
  color: #161616; background: var(--accent); font-family: var(--ff-body); letter-spacing: -.02em;
}
.brand__txt small { display: block; font-family: var(--ff-body); font-weight: 500; font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); margin-top: 1px; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a { font-size: .94rem; font-weight: 500; color: var(--muted); padding: 9px 15px; border-radius: 100px; transition: color .25s, background .25s; }
.nav__links a:hover { color: var(--text); background: var(--bg-2); }
.nav__links a.active { color: var(--text); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: #fff; }
.nav__burger span { display: block; width: 18px; height: 2px; margin: 3px auto; background: var(--text); border-radius: 2px; transition: .3s; }

.nav__drawer {
  position: fixed; inset: 0; z-index: 99; background: rgba(255,255,255,.98);
  backdrop-filter: blur(14px); display: flex; flex-direction: column;
  justify-content: center; gap: 8px; padding: 40px; text-align: center;
  opacity: 0; visibility: hidden; transition: opacity .4s;
}
.nav__drawer.open { opacity: 1; visibility: visible; }
.nav__drawer a { font-family: var(--ff-display); font-weight: 600; font-size: 1.8rem; color: var(--text); padding: 12px; letter-spacing: -.02em; }
.nav__drawer a:hover { color: var(--green-ink); }

/* ---------- hero ---------- */
.hero { padding-top: 150px; padding-bottom: 40px; position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-block: 22px 24px; }
.hero .lead { font-size: clamp(1.08rem,1.5vw,1.28rem); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero__trust { display: flex; gap: 28px; margin-top: 42px; flex-wrap: wrap; }
.hero__trust .stat strong { font-family: var(--ff-display); font-weight: 600; font-size: 1.9rem; color: var(--text); display: block; letter-spacing: -.03em; }
.hero__trust .stat span { font-size: .82rem; color: var(--muted-2); }

.hero__visual { position: relative; }
.glass-card {
  background: var(--bg-3);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.hero__panel { padding: 26px; }
.hero__panel-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.hero__panel-top .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
.hero__rows { display: grid; gap: 13px; margin-top: 20px; }
.hero__row { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: var(--radius-sm); background: #f4f4f2; border: 1px solid var(--line); }
.hero__row .ic { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--accent-soft); color: var(--green-ink); }
.hero__row .ic.blue { background: var(--green-soft); color: var(--green-ink); }
.hero__row .meta { flex: 1; }
.hero__row .meta b { font-family: var(--ff-body); font-weight: 600; font-size: .94rem; }
.hero__row .meta span { font-size: .78rem; color: var(--muted-2); }
.hero__row .amt { font-weight: 600; font-size: .95rem; color: var(--green-ink); }
.hero__badge {
  position: absolute; left: -16px; bottom: -36px; padding: 12px 16px; border-radius: 14px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px; font-size: .82rem; z-index: 3; max-width: 230px;
}
.hero__badge .ring { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--green); display: grid; place-items: center; color: var(--green-ink); }

/* logo marquee */
.marquee { overflow: hidden; padding-block: 26px; border-block: 1px solid var(--line); -webkit-mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 64px; width: max-content; animation: scroll 32s linear infinite; }
.marquee__track span { font-family: var(--ff-display); font-weight: 500; font-size: 1.05rem; color: var(--muted-2); white-space: nowrap; display: flex; align-items: center; gap: 12px; letter-spacing: -.01em; }
.marquee__track span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--rev .split__media { order: -1; }
.split__media { position: relative; }
.feature-visual { border-radius: var(--radius-lg); padding: 32px; min-height: 360px; display: flex; flex-direction: column; justify-content: center; gap: 16px; background: linear-gradient(160deg, #f3fbef, #ffffff); }
.split ul.ticks { margin-top: 26px; display: grid; gap: 13px; }
.split ul.ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.split ul.ticks li svg { flex: none; width: 22px; height: 22px; color: var(--green-ink); margin-top: 1px; }
.split ul.ticks li b { color: var(--text); font-weight: 600; }

/* mini bar chart visual */
.bars { display: flex; align-items: flex-end; gap: 12px; height: 150px; margin-top: 6px; }
.bars .bar { flex: 1; border-radius: 8px 8px 4px 4px; background: var(--accent); }
.bars .bar.b { background: var(--green); }
.donut { width: 150px; height: 150px; border-radius: 50%; margin: 0 auto;
  background: conic-gradient(var(--green) 0 62%, var(--accent) 62% 84%, #e6e6e6 84% 100%);
  display: grid; place-items: center; position: relative; }
.donut::before { content: ""; position: absolute; inset: 24px; border-radius: 50%; background: #fff; }
.donut span { position: relative; font-family: var(--ff-display); font-weight: 600; font-size: 1.5rem; color: var(--text); }

/* ---------- card grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.card {
  background: var(--bg-3);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); border-color: rgba(16,210,132,.40); box-shadow: var(--shadow); }
.card__ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; background: var(--accent-soft); color: var(--green-ink); border: 1px solid rgba(16,210,132,.25); }
.card__ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; }
.card__num { position: absolute; right: 22px; top: 14px; font-family: var(--ff-display); font-weight: 600; font-size: 2.4rem; color: rgba(22,22,22,.06); }

/* service list card */
.svc { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; }
.svc .card__ic { margin-bottom: 0; }
.svc ul { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
.svc ul li { color: var(--muted); font-size: .9rem; display: flex; gap: 8px; align-items: center; }
.svc ul li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex: none; }
@media (max-width: 560px){ .svc ul { grid-template-columns: 1fr; } }

/* ---------- icon benefits grid ---------- */
.benefits { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.benefit { padding: 24px; border-radius: var(--radius-sm); background: var(--bg-2); border: 1px solid var(--line); text-align: center; transition: .35s var(--ease); }
.benefit:hover { background: var(--accent-soft); border-color: rgba(16,210,132,.35); transform: translateY(-4px); }
.benefit .ic { width: 48px; height: 48px; margin: 0 auto 14px; border-radius: 13px; display: grid; place-items: center; background: #fff; color: var(--green-ink); border: 1px solid var(--line); }
.benefit b { display: block; font-weight: 600; font-size: .98rem; }
.benefit span { font-size: .82rem; color: var(--muted-2); }

/* ---------- stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stats .stat strong { font-family: var(--ff-display); font-weight: 600; font-size: clamp(2.2rem,4vw,3.2rem); color: var(--text); display: block; letter-spacing: -.03em; }
.stats .stat span { color: var(--muted); font-size: .92rem; }

/* ---------- testimonials ---------- */
.tcarousel { position: relative; overflow: hidden; }
.ttrack { display: flex; transition: transform .7s var(--ease); }
.tslide { min-width: 100%; padding: 6px; }
.tcard { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(30px,4vw,52px); }
.tcard .quote { font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.3rem,2.4vw,1.9rem); line-height: 1.42; letter-spacing: -.02em; }
.tcard .stars { color: var(--green); margin-bottom: 22px; letter-spacing: 3px; }
.tcard .who { display: flex; align-items: center; gap: 15px; margin-top: 28px; }
.tcard .av { width: 52px; height: 52px; border-radius: 50%; background: var(--accent-soft); border: 1px solid rgba(16,210,132,.3); display: grid; place-items: center; font-family: var(--ff-display); font-weight: 600; color: var(--green-ink); font-size: 1.2rem; }
.tcard .who b { display: block; }
.tcard .who span { font-size: .85rem; color: var(--muted-2); }
.tcard .ph { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); border: 1px dashed var(--line); border-radius: 100px; padding: 4px 12px; display: inline-block; margin-bottom: 18px; }
.tnav { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }
.tdot { width: 9px; height: 9px; border-radius: 50%; background: #d6d6d6; transition: .3s; cursor: pointer; }
.tdot.active { background: var(--green); width: 28px; border-radius: 100px; }

/* ---------- CTA band (dark) ---------- */
.cta-band {
  border-radius: var(--radius-lg); padding: clamp(40px,6vw,76px); text-align: center; position: relative; overflow: hidden;
  background: var(--dark);
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 320px at 50% -20%, rgba(205,252,115,.20), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { margin-bottom: 18px; color: #fff; }
.cta-band .lead { color: rgba(255,255,255,.66); }
.cta-band .eyebrow { color: var(--green-dark); }
.cta-band .btn { margin-top: 30px; }

/* ---------- pricing ---------- */
.ptable { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; transition: .4s var(--ease); }
.plan:hover { transform: translateY(-6px); border-color: rgba(16,210,132,.4); box-shadow: var(--shadow); }
.plan.feat { border-color: var(--green); box-shadow: var(--shadow); background: linear-gradient(180deg, #f6fef0, #fff); }
.plan .tag { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green-ink); font-weight: 600; }
.plan .badge-pop { position: absolute; top: 18px; right: 18px; font-size: .68rem; background: var(--accent); color: #161616; padding: 5px 12px; border-radius: 100px; font-weight: 700; letter-spacing: .03em; }
.plan h3 { font-size: 1.5rem; margin: 14px 0 4px; }
.plan .price { font-family: var(--ff-display); font-weight: 600; font-size: 2.6rem; color: var(--text); margin: 18px 0 4px; letter-spacing: -.03em; }
.plan .price small { font-size: .9rem; color: var(--muted-2); font-family: var(--ff-body); font-weight: 400; }
.plan .pdesc { color: var(--muted); font-size: .92rem; min-height: 44px; }
.plan ul { margin: 22px 0 28px; display: grid; gap: 12px; }
.plan ul li { display: flex; gap: 11px; color: var(--muted); font-size: .93rem; }
.plan ul li svg { flex: none; width: 19px; height: 19px; color: var(--green-ink); margin-top: 2px; }
.plan .btn { margin-top: auto; justify-content: center; }

/* fee table */
.fee-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.fee-table th,.fee-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--line); font-size: .94rem; }
.fee-table th { background: var(--bg-2); color: var(--text); font-family: var(--ff-body); font-weight: 600; letter-spacing: .01em; }
.fee-table td { color: var(--muted); }
.fee-table td:first-child { color: var(--text); font-weight: 500; }
.fee-table tr:last-child td { border-bottom: none; }
.fee-table .amt { color: var(--green-ink); font-weight: 600; white-space: nowrap; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.info-card { display: flex; gap: 16px; padding: 22px; border-radius: var(--radius-sm); background: var(--bg-2); border: 1px solid var(--line); margin-bottom: 14px; transition: .35s; }
.info-card:hover { border-color: rgba(16,210,132,.4); background: var(--accent-soft); }
.info-card .ic { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: #fff; color: var(--green-ink); border: 1px solid var(--line); }
.info-card b { display: block; margin-bottom: 3px; }
.info-card span,.info-card a { color: var(--muted); font-size: .94rem; }
.info-card a:hover { color: var(--green-ink); }
.form { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px,4vw,40px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.field input,.field select,.field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px; background: #f5f5f3;
  border: 1px solid var(--line); color: var(--text); font: inherit; font-size: .96rem; transition: border-color .25s, box-shadow .25s;
}
.field input:focus,.field select:focus,.field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-soft); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: .82rem; color: var(--muted-2); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 30px; }
.form-success.show { display: block; }
.form-success .ic { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--accent-soft); color: var(--green-ink); display: grid; place-items: center; border: 1px solid rgba(16,210,132,.3); }

/* ---------- FAQ / accordion ---------- */
.faq { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.acc { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-2); overflow: hidden; }
.acc__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 24px; text-align: left; font-family: var(--ff-display); font-weight: 600; font-size: 1.12rem; letter-spacing: -.01em; }
.acc__q .pm { width: 26px; height: 26px; flex: none; border-radius: 8px; border: 1px solid rgba(16,210,132,.4); display: grid; place-items: center; color: var(--green-ink); transition: .3s; }
.acc.open .acc__q .pm { transform: rotate(45deg); background: var(--accent); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc__a p { padding: 0 24px 24px; color: var(--muted); }

/* ---------- page hero ---------- */
.phero { padding-top: 160px; padding-bottom: 30px; text-align: center; }
.phero .crumb { font-size: .82rem; color: var(--muted-2); margin-bottom: 18px; letter-spacing: .04em; }
.phero .crumb a:hover { color: var(--green-ink); }
.phero h1 { margin-bottom: 18px; }
.phero .lead { margin-inline: auto; }

/* ---------- footer (dark) ---------- */
.footer { background: var(--dark); color: rgba(255,255,255,.66); padding-block: 64px 30px; margin-top: 40px; position: relative; border-top-left-radius: 30px; border-top-right-radius: 30px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: #fff; }
.footer__brand .lead { font-size: .95rem; margin-top: 18px; max-width: 34ch; color: rgba(255,255,255,.6); }
.footer__news { display: flex; gap: 8px; margin-top: 22px; max-width: 340px; }
.footer__news input { flex: 1; padding: 12px 16px; border-radius: 100px; background: rgba(255,255,255,.06); border: 1px solid var(--line-dark); color: #fff; font: inherit; font-size: .9rem; }
.footer__news input::placeholder { color: rgba(255,255,255,.45); }
.footer__news input:focus { outline: none; border-color: var(--green); }
.footer__news button { width: 46px; height: 46px; flex: none; border-radius: 50%; background: var(--accent); color: #161616; display: grid; place-items: center; transition: .3s; }
.footer__news button:hover { transform: translateX(2px) scale(1.05); }
.footer__col h5 { font-family: var(--ff-body); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.footer__col a { display: block; color: rgba(255,255,255,.6); padding: 7px 0; font-size: .94rem; transition: color .25s, transform .25s; }
.footer__col a:hover { color: var(--accent); transform: translateX(3px); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line-dark); font-size: .86rem; color: rgba(255,255,255,.45); }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; color: rgba(255,255,255,.7); transition: .3s; }
.footer__social a:hover { border-color: var(--green); color: var(--accent); background: rgba(205,252,115,.08); transform: translateY(-3px); }

/* ---------- reveal animation base ---------- */
html.js [data-reveal] { opacity: 0; transform: translateY(28px); }
html.js [data-reveal="left"] { transform: translateX(-34px); }
html.js [data-reveal="right"] { transform: translateX(34px); }
html.js [data-reveal="scale"] { transform: scale(.94); }
.reveal-ready [data-reveal] { will-change: transform, opacity; }

/* ===== dark feature block (CTA-band / ZenoPay "function card" look) ===== */
.darkblock { background: var(--dark); border-radius: var(--radius-lg); padding: clamp(40px,6vw,80px); position: relative; overflow: hidden; }
.darkblock::before { content:""; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(640px 340px at 50% -12%, rgba(205,252,115,.20), transparent 60%),
              radial-gradient(460px 300px at 88% 116%, rgba(16,210,132,.10), transparent 60%); }
.darkblock > * { position: relative; }
.darkblock h1,.darkblock h2,.darkblock h3 { color:#fff; }
.darkblock .lead { color:#afafaf; }
.darkblock .eyebrow { color: var(--accent); background: none; border: none; }
.darkblock .eyebrow::before { border-color: var(--accent); background: transparent; }
.darkblock .serif-italic,.cta-band .serif-italic { color:#161616; }
.darkblock .btn--ghost { border-color: rgba(255,255,255,.22); color:#fff; }
.darkblock .btn--ghost:hover { background:#fff; color:#161616; border-color:#fff; }

/* function card: dark, green-gradient border, lime top glow */
.fcard { position: relative; overflow: hidden; border: 1px solid transparent; border-radius: var(--radius); padding: 30px;
  background: linear-gradient(#191919,#161616) padding-box, linear-gradient(127deg,#43ae64,rgba(28,72,41,.30) 48%) border-box;
  transition: transform .4s var(--ease); }
.fcard::after { content:""; position:absolute; left:0; right:0; top:0; height:96px; pointer-events:none;
  background: radial-gradient(150px 70px at 28% 0, rgba(205,252,115,.26), transparent 72%); }
.fcard:hover { transform: translateY(-6px); }
.fcard h3 { color:#fff; position: relative; }
.fcard p { color:#afafaf; position: relative; }
.fcard .card__ic { background: rgba(205,252,115,.12); color: var(--accent); border: 1px solid rgba(205,252,115,.25); position: relative; }
.fcard .card__num { color: rgba(255,255,255,.07); }

/* hero as a dark block */
.hero__block { padding: clamp(46px,5.5vw,74px); }
.hero__block .hero__trust .stat strong { color:#fff; }
.hero__block .hero__trust .stat span { color:#8f99a3; }
.hero__block .glass-card { border:1px solid transparent;
  background: linear-gradient(#1a1a1a,#161616) padding-box, linear-gradient(127deg,#43ae64,rgba(28,72,41,.32) 48%) border-box;
  box-shadow: 0 30px 70px -34px rgba(0,0,0,.7); }
.hero__block .hero__panel::after { content:""; position:absolute; left:0; right:0; top:0; height:90px; pointer-events:none;
  background: radial-gradient(160px 70px at 26% 0, rgba(205,252,115,.20), transparent 72%); }
.hero__block .hero__panel-top { border-color: rgba(255,255,255,.10); }
.hero__block .hero__panel-top b { color:#fff; }
.hero__block .hero__row { background:#1d1d1d; border-color: rgba(255,255,255,.08); }
.hero__block .hero__row .meta b { color:#fff; }
.hero__block .hero__row .meta span { color:#8a8a8a; }
.hero__block .hero__row .ic { background: rgba(205,252,115,.12); color: var(--accent); }
.hero__block .hero__row .ic.blue { background: rgba(16,210,132,.14); color: var(--green); }
.hero__block .hero__row .amt { color: var(--accent); }

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__visual { max-width: 480px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--rev .split__media { order: 0; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .ptable { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__cta .btn--ghost { display: none; }
}
@media (max-width: 560px){
  body { font-size: 16px; }
  .grid-3,.grid-2 { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__badge { display: none; }
  .nav { inset: 8px 0 auto; }
  .container { padding-inline: 18px; }
}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html.js [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* keep inline multi-column step grids (repeat(4/5)) responsive on smaller screens */
@media (max-width: 900px){
  [style*="repeat(5"],[style*="repeat(4"] { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 560px){
  [style*="repeat(5"],[style*="repeat(4"] { grid-template-columns: 1fr !important; }
}
