/* ==========================================================================
   JVR700 — Mobile Recharge Simplified
   Main stylesheet
   1.  Design tokens
   2.  Reset & base
   3.  Typography & helpers
   4.  Buttons
   5.  Preloader
   6.  Header & navigation
   7.  Hero
   8.  Recharge widget
   9.  Operator marquee
   10. Stats
   11. Services cards
   12. Why us
   13. How it works
   14. Partner plans
   15. App section
   16. Testimonials
   17. FAQ accordion
   18. Contact CTA
   19. Footer & back-to-top
   20. Responsive
   ========================================================================== */

/* ============ 1. DESIGN TOKENS ============ */
:root {
  /* Brand palette sampled from the logo */
  --navy-900: #061630;
  --navy-800: #0a2148;
  --navy-700: #10305f;
  --blue-600: #1560d4;
  --blue-500: #2f7ce8;
  --red-500:  #e8232a;
  --orange-500: #f7881f;

  --ink:      #0d1b33;
  --ink-soft: #33456b;
  --muted:    #62739a;
  --line:     #e5eaf5;
  --bg:       #ffffff;
  --bg-tint:  #f4f7ff;

  --grad-brand: linear-gradient(120deg, var(--red-500) 0%, var(--orange-500) 100%);
  --grad-blue:  linear-gradient(135deg, var(--navy-800) 0%, var(--blue-600) 100%);
  --grad-hero:  linear-gradient(160deg, #061630 0%, #0a2148 45%, #123a75 100%);
  --grad-text:  linear-gradient(100deg, #ff5a3c 0%, #f7881f 55%, #ffb340 100%);

  --ff-head: "Outfit", "Segoe UI", sans-serif;
  --ff-body: "Inter", "Segoe UI", sans-serif;

  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;

  --sh-sm: 0 2px 10px rgba(13, 27, 51, .06);
  --sh-md: 0 12px 30px rgba(13, 27, 51, .09);
  --sh-lg: 0 26px 60px rgba(10, 33, 72, .16);
  --sh-brand: 0 14px 30px rgba(232, 35, 42, .28);

  --wrap: 1200px;
  --ease: cubic-bezier(.22, .68, 0, 1);
  --header-h: 82px;
}

/* ============ 2. RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

::selection { background: var(--orange-500); color: #fff; }

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--navy-800);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: top .25s;
}
.skip-link:focus { top: 0; }

/* ============ 3. TYPOGRAPHY & HELPERS ============ */
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  color: var(--ink);
  margin: 0 0 .5em;
  line-height: 1.14;
  letter-spacing: -.02em;
  font-weight: 800;
}
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { position: relative; padding: 108px 0; }
.section--tint { background: var(--bg-tint); }
.section--dark {
  background: var(--grad-hero);
  color: rgba(255, 255, 255, .78);
  overflow: hidden;
}

.section__orb {
  position: absolute;
  width: 620px;
  height: 620px;
  right: -180px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 35, 42, .32), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

.section__head {
  max-width: 720px;
  margin: 0 auto 62px;
  text-align: center;
}

.section__title {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 900;
}
.section__title--left { text-align: left; }
.section__title--light { color: #fff; }

.section__lead {
  font-size: 1.06rem;
  color: var(--muted);
  margin: 0;
}
.section__lead--left { text-align: left; }
.section__lead--light { color: rgba(255, 255, 255, .72); }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red-500);
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(232, 35, 42, .08);
}
.eyebrow--light {
  color: #ffb340;
  background: rgba(247, 136, 31, .14);
}

.text-grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, .88);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.pill__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #37d67a;
  box-shadow: 0 0 0 4px rgba(55, 214, 122, .22);
}

/* ============ 4. BUTTONS ============ */
.btn {
  --btn-py: 13px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-py) 26px;
  border-radius: 100px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .97rem;
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn__icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
  transition: transform .3s var(--ease);
}
.btn:hover .btn__icon { transform: translateX(4px); }

.btn--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--sh-brand);
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, .38) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
}
.btn--primary:hover::after { transform: translateX(120%); }
.btn--primary:hover { box-shadow: 0 18px 38px rgba(232, 35, 42, .36); }

.btn--outline {
  color: #fff;
  border: 1.6px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .05);
}
.btn--outline:hover {
  background: #fff;
  color: var(--navy-800);
  border-color: #fff;
}

.btn--ghost { color: #fff; }
.btn--ghost:hover { color: #ffb340; }

.btn--sm { --btn-py: 10px; padding-inline: 20px; font-size: .9rem; }
.btn--lg { --btn-py: 17px; padding-inline: 34px; font-size: 1.03rem; }
.btn--block { width: 100%; }

/* Light-background variants */
.section:not(.section--dark) .btn--outline,
.footer .btn--outline {
  color: var(--navy-700);
  border-color: var(--line);
  background: #fff;
}
.section:not(.section--dark) .btn--outline:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
}
.section--dark .plan:not(.plan--featured) .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .06);
}

/* ============ 5. PRELOADER ============ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--grad-hero);
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
}
.preloader__inner { text-align: center; }
.preloader__logo {
  width: 210px;
  margin: 0 auto 18px;
  filter: brightness(0) invert(1);
  opacity: .96;
}
.preloader__text {
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: .86rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.preloader__ring {
  position: relative;
  width: 74px;
  height: 74px;
  margin: 0 auto 26px;
}
.preloader__ring span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px solid transparent;
}
.preloader__ring span:nth-child(1) { border-top-color: var(--red-500); }
.preloader__ring span:nth-child(2) { border-right-color: var(--orange-500); inset: 9px; }
.preloader__ring span:nth-child(3) { border-bottom-color: var(--blue-500); inset: 18px; }

/* ============ 6. HEADER & NAVIGATION ============ */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  transition: background-color .35s, box-shadow .35s, padding .35s;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  height: var(--header-h);
  transition: height .35s;
}
.header.is-stuck {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 26px rgba(10, 33, 72, .1);
}
.header.is-stuck .header__inner { height: 70px; }

.brand { flex-shrink: 0; }
.brand__logo {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter .35s, height .35s;
}
.header.is-stuck .brand__logo {
  filter: none;
  height: 38px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}
.nav__list { display: flex; align-items: center; gap: 6px; }

.nav__link {
  position: relative;
  display: block;
  padding: 8px 14px;
  border-radius: 100px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .95rem;
  color: rgba(255, 255, 255, .82);
  transition: color .25s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link:hover { color: #fff; }

.header.is-stuck .nav__link { color: var(--ink-soft); }
.header.is-stuck .nav__link:hover,
.header.is-stuck .nav__link.is-active { color: var(--navy-800); }
.header.is-stuck .btn--ghost { color: var(--navy-800); }
.header.is-stuck .btn--ghost:hover { color: var(--red-500); }

.nav__cta { display: flex; align-items: center; gap: 10px; }

.header__progress {
  height: 3px;
  width: 0;
  background: var(--grad-brand);
  transition: width .12s linear;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
}
.burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .35s var(--ease), opacity .2s, background-color .3s;
}
.burger span + span { margin-top: 5px; }
.header.is-stuck .burger {
  background: rgba(13, 27, 51, .06);
  border-color: var(--line);
}
.header.is-stuck .burger span { background: var(--navy-800); }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ 7. HERO ============ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 0;
  background: var(--grad-hero);
  color: rgba(255, 255, 255, .76);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 30%, #000 20%, transparent 75%);
}
.hero__glow {
  position: absolute;
  left: 50%;
  bottom: -320px;
  transform: translateX(-50%);
  width: 1000px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 124, 232, .28), transparent 62%);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
}
.blob--1 {
  width: 460px; height: 460px;
  top: -120px; left: -140px;
  background: radial-gradient(circle, rgba(232, 35, 42, .55), transparent 68%);
}
.blob--2 {
  width: 520px; height: 520px;
  top: 40px; right: -180px;
  background: radial-gradient(circle, rgba(247, 136, 31, .45), transparent 68%);
}
.blob--3 {
  width: 420px; height: 420px;
  bottom: -160px; left: 34%;
  background: radial-gradient(circle, rgba(21, 96, 212, .6), transparent 68%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 40px;
}

.hero__title {
  font-size: clamp(2.4rem, 5.4vw, 4.25rem);
  font-weight: 900;
  color: #fff;
  margin: 22px 0 20px;
  letter-spacing: -.03em;
}
.hero__count { white-space: nowrap; }
.hero__count-num {
  display: inline-block;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  max-width: 560px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .68);
}
.hero__trust svg {
  width: 19px;
  height: 19px;
  color: #ffb340;
  flex-shrink: 0;
}

/* --- Hero visual: phone mockup --- */
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}
.pulse-ring {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
  z-index: 0;
}

.phone {
  position: relative;
  z-index: 2;
  width: 302px;
  padding: 12px;
  border-radius: 46px;
  background: linear-gradient(160deg, #16305f, #061630 70%);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, .1),
    0 40px 80px rgba(3, 12, 30, .6);
}
.phone__notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 20px;
  border-radius: 100px;
  background: #04101f;
  z-index: 3;
}
.phone__screen {
  position: relative;
  border-radius: 36px;
  background: linear-gradient(180deg, #f7f9ff, #eaf0ff);
  overflow: hidden;
  aspect-ratio: 278 / 570;
}

.pscreen {
  padding: 46px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  height: 100%;
}
.pscreen__top { line-height: 1.35; }
.pscreen__hi {
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .04em;
}
.pscreen__user {
  display: block;
  font-family: var(--ff-head);
  font-size: .95rem;
  color: var(--ink);
}
.pscreen__balance {
  position: relative;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: var(--grad-blue);
  color: rgba(255, 255, 255, .74);
  overflow: hidden;
}
.pscreen__balance::after {
  content: "";
  position: absolute;
  width: 120px; height: 120px;
  right: -40px; top: -60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
}
.pscreen__balance span { font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; }
.pscreen__balance strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.2;
}
.pscreen__chip {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 9px;
  border-radius: 100px;
  font-size: .6rem;
  font-style: normal;
  background: rgba(55, 214, 122, .22);
  color: #8affc0;
}

.pscreen__ops { display: flex; gap: 6px; }
.op {
  flex: 1;
  text-align: center;
  padding: 8px 2px;
  border-radius: 12px;
  font-size: .64rem;
  font-weight: 600;
  background: #fff;
  color: var(--ink-soft);
  box-shadow: var(--sh-sm);
}
.op--1 { color: #1560d4; }
.op--2 { color: #e8232a; }
.op--3 { color: #b3306b; }
.op--4 { color: #0f7a5a; }

.pscreen__plans { display: grid; gap: 7px; }
.plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1.4px solid transparent;
  font-size: .68rem;
  color: var(--muted);
  box-shadow: var(--sh-sm);
}
.plan-row b { color: var(--ink); font-size: .68rem; }
.plan-row.is-active {
  border-color: var(--orange-500);
  background: linear-gradient(90deg, rgba(247, 136, 31, .12), rgba(232, 35, 42, .06));
}

.pscreen__btn {
  margin-top: auto;
  padding: 13px;
  border-radius: 100px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .85rem;
  color: #fff;
  background: var(--grad-brand);
  box-shadow: 0 10px 22px rgba(232, 35, 42, .3);
}

.pscreen__toast {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(6px);
  box-shadow: var(--sh-md);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .82rem;
  color: var(--ink);
}
.pscreen__toast .tick {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #16b364;
  color: #fff;
  flex-shrink: 0;
}
.pscreen__toast svg { width: 15px; height: 15px; stroke-width: 3; }

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(3, 12, 30, .35);
}
.float-card__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--grad-brand);
  font-size: .9rem;
  color: #fff;
}
.float-card strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.02rem;
  color: #fff;
  line-height: 1.2;
}
.float-card small { font-size: .7rem; color: rgba(255, 255, 255, .6); }
.float-card--speed { top: 12%; left: -13%; }
.float-card--rate { bottom: 15%; right: -11%; }

/* ============ 8. RECHARGE WIDGET ============ */
.recharge {
  position: relative;
  z-index: 6;
  margin-bottom: -72px;
  padding: 30px 32px 24px;
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--sh-lg);
}
.recharge__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.recharge__head h2 {
  margin: 0;
  font-size: 1.32rem;
}
.tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 100px;
  background: var(--bg-tint);
}
.tab {
  padding: 8px 18px;
  border-radius: 100px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .88rem;
  color: var(--muted);
  transition: color .25s, background-color .25s, box-shadow .25s;
}
.tab.is-active {
  background: #fff;
  color: var(--navy-800);
  box-shadow: var(--sh-sm);
}

.recharge__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select {
  height: 52px;
  padding: 0 16px;
  border-radius: var(--r-sm);
  border: 1.6px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2362739a' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px;
  padding-right: 40px;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(47, 124, 232, .14);
}
.field input.has-error,
.field select.has-error {
  border-color: var(--red-500);
  box-shadow: 0 0 0 4px rgba(232, 35, 42, .12);
}
.field input::placeholder { color: #a6b2ca; }

.recharge__grid .btn { height: 52px; }

.recharge__note,
.cta__note {
  margin: 16px 0 0;
  font-size: .82rem;
  color: var(--muted);
}
.recharge__note.is-ok,
.cta__note.is-ok {
  color: #0f7a5a;
  font-weight: 600;
}
.recharge__note.is-err,
.cta__note.is-err {
  color: var(--red-500);
  font-weight: 600;
}

/* ============ 9. OPERATOR MARQUEE ============ */
.marquee-wrap {
  padding: 128px 0 40px;
  background: var(--bg);
  overflow: hidden;
}
.marquee {
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
/* Spacing uses margin (not gap) so the duplicated half loops seamlessly */
.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
}
.marquee__track > * { margin-right: 30px; }
.marquee__track span {
  font-family: var(--ff-head);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 700;
  color: #c3cee3;
  letter-spacing: -.01em;
  transition: color .3s;
}
.marquee__track span:hover { color: var(--navy-700); }
.marquee__track i {
  font-size: .6rem;
  color: var(--orange-500);
  font-style: normal;
}

/* ============ 10. STATS ============ */
.stats { padding: 40px 0 90px; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--r-md);
  background: var(--bg-tint);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}
.stat::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--grad-brand);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .45s var(--ease);
}
.stat:hover::before { transform: scaleY(1); }
.stat strong {
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 900;
  color: var(--navy-800);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.stat strong i { font-style: normal; }
.stat span {
  font-size: .9rem;
  color: var(--muted);
}

/* ============ 11. SERVICES CARDS ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  padding: 30px 26px 26px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(232, 35, 42, .06), rgba(21, 96, 212, .06));
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--sh-lg);
}
.card:hover::after { opacity: 1; }

.card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: var(--grad-blue);
  color: #fff;
  transition: transform .45s var(--ease), background-image .4s;
}
.card__icon svg { width: 26px; height: 26px; }
.card:hover .card__icon {
  transform: rotate(-8deg) scale(1.06);
  background: var(--grad-brand);
}

.card h3 {
  font-size: 1.14rem;
  margin-bottom: .45em;
}
.card p {
  font-size: .93rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.card__tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: rgba(21, 96, 212, .09);
}
.card--accent {
  background: var(--grad-hero);
  border-color: transparent;
}
.card--accent h3 { color: #fff; }
.card--accent p { color: rgba(255, 255, 255, .7); }
.card--accent .card__icon { background: var(--grad-brand); }
.card--accent .card__tag {
  color: #ffb340;
  background: rgba(247, 136, 31, .16);
}

/* ============ 12. WHY US ============ */
.why {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.why__media { position: relative; }
.why__card {
  position: relative;
  padding: 28px;
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--sh-lg);
}
.why__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--ff-head);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 22px;
}
.why__card-head .up {
  padding: 4px 11px;
  border-radius: 100px;
  font-size: .8rem;
  color: #0f7a5a;
  background: rgba(22, 179, 100, .12);
}
.bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 170px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
}
.bars span {
  flex: 1;
  height: var(--h);
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--blue-500), rgba(21, 96, 212, .25));
  transform-origin: bottom;
}
.bars span:nth-child(6) { background: var(--grad-brand); }
.why__card-foot {
  display: flex;
  gap: 30px;
  margin-top: 22px;
}
.why__card-foot strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.35rem;
  color: var(--navy-800);
  line-height: 1.2;
}
.why__card-foot strong i { font-style: normal; }
.why__card-foot small { font-size: .8rem; color: var(--muted); }

.why__badge {
  position: absolute;
  right: -18px;
  bottom: 40px;
  padding: 11px 20px;
  border-radius: 100px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .86rem;
  color: #fff;
  background: var(--grad-blue);
  box-shadow: 0 16px 34px rgba(10, 33, 72, .3);
}

.feature-list { margin-top: 34px; display: grid; gap: 24px; }
.feature-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-list__num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: .92rem;
  color: var(--red-500);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform .35s var(--ease), color .3s, background-image .3s;
}
.feature-list li:hover .feature-list__num {
  transform: translateY(-3px) scale(1.05);
  color: #fff;
  background-image: var(--grad-brand);
  border-color: transparent;
}
.feature-list h3 {
  font-size: 1.08rem;
  margin-bottom: .3em;
}
.feature-list p {
  margin: 0;
  font-size: .94rem;
  color: var(--muted);
}

/* ============ 13. HOW IT WORKS ============ */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.steps__line {
  position: absolute;
  top: 32px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: var(--line);
  overflow: hidden;
}
.steps__line i {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
}
.steps__line.is-in i { animation: lineGrow 1.6s var(--ease) forwards; }

.step {
  position: relative;
  text-align: center;
  padding: 0 14px;
}
.step__num {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  border-radius: 50%;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  background: var(--grad-blue);
  box-shadow: 0 0 0 8px #fff, 0 14px 30px rgba(10, 33, 72, .18);
  transition: transform .4s var(--ease), background-image .4s;
}
.step:hover .step__num {
  transform: translateY(-6px);
  background-image: var(--grad-brand);
}
.step h3 { font-size: 1.16rem; }
.step p {
  margin: 0;
  font-size: .95rem;
  color: var(--muted);
}

/* ============ 14. PARTNER PLANS ============ */
.plans {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.plan {
  position: relative;
  padding: 34px 30px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(8px);
  transition: transform .4s var(--ease), background-color .35s, border-color .35s;
}
.plan:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, .3);
}
.plan__name {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: .2em;
}
.plan__for {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 22px;
}
.plan__price {
  font-family: var(--ff-head);
  font-size: 2.7rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.plan__price span { font-size: 1.4rem; vertical-align: super; }
.plan__price small {
  display: block;
  margin-top: 8px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255, 255, 255, .55);
}
.plan__list {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}
.plan__list li {
  position: relative;
  padding-left: 30px;
  font-size: .93rem;
  color: rgba(255, 255, 255, .74);
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffb340' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.plan--featured {
  background: #fff;
  border-color: transparent;
  box-shadow: 0 34px 70px rgba(0, 0, 0, .35);
  transform: translateY(-14px);
}
.plan--featured:hover { transform: translateY(-22px); }
.plan--featured .plan__name { color: var(--ink); }
.plan--featured .plan__for { color: var(--muted); }
.plan--featured .plan__price {
  color: var(--navy-800);
  border-bottom-color: var(--line);
}
.plan--featured .plan__price small { color: var(--muted); }
.plan--featured .plan__list li { color: var(--ink-soft); }
.plan--featured .plan__list li::before {
  background-color: rgba(232, 35, 42, .1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8232a' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E");
}
.plan__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 20px;
  border-radius: 100px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  background: var(--grad-brand);
  box-shadow: var(--sh-brand);
}

/* ============ 15. APP SECTION ============ */
.app { overflow: hidden; }
.app__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.app__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  margin: 30px 0 34px;
}
.app__points li {
  position: relative;
  padding-left: 30px;
  font-size: .95rem;
  color: var(--ink-soft);
}
.app__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(21, 96, 212, .1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231560d4' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.app__stores { display: flex; flex-wrap: wrap; gap: 14px; }
.store {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: var(--r-md);
  background: var(--navy-800);
  color: #fff;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.store:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(10, 33, 72, .3);
}
.store svg { width: 24px; height: 24px; fill: currentColor; stroke: none; }
.store small {
  display: block;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}
.store strong {
  font-family: var(--ff-head);
  font-size: 1rem;
}

.app__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 660px;
}
.app__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 96, 212, .16), transparent 65%);
}
.app__phone {
  position: absolute;
  width: 260px;
  padding: 10px;
  border-radius: 40px;
  background: linear-gradient(160deg, #16305f, #061630 70%);
  box-shadow: 0 30px 70px rgba(6, 22, 48, .3);
}
.app__phone--back {
  transform: translate(-32%, -3%) rotate(-11deg) scale(.93);
  opacity: .96;
}
.app__phone--front {
  transform: translate(18%, 5%) rotate(6deg);
  z-index: 2;
}
.app__screen {
  border-radius: 32px;
  background: #fff;
  padding: 34px 16px 16px;
  aspect-ratio: 240 / 500;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.app__hero-card {
  position: relative;
  padding: 16px;
  border-radius: var(--r-md);
  background: var(--grad-brand);
  color: rgba(255, 255, 255, .8);
  overflow: hidden;
}
.app__hero-card small { font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; }
.app__hero-card strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.4rem;
  color: #fff;
}
.app__hero-card strong i { font-style: normal; }
.app__spark {
  display: block;
  height: 34px;
  margin-top: 8px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .35) 2px, transparent 2px) 0 0 / 22px 100%,
    linear-gradient(0deg, rgba(255, 255, 255, .18), transparent);
}
.app__tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.app__tile-grid span {
  padding: 12px 2px;
  border-radius: 12px;
  text-align: center;
  font-size: .6rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-tint);
}
.app__list { display: grid; gap: 7px; }
.app__list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 11px;
  border-radius: 11px;
  border: 1px solid var(--line);
  font-size: .6rem;
}
.app__list b { color: var(--ink); font-weight: 600; }
.app__list i { font-style: normal; color: #0f7a5a; font-weight: 700; }

.app__screen--stats { justify-content: flex-start; }
.app__row {
  display: block;
  height: 11px;
  border-radius: 100px;
  background: var(--bg-tint);
}
.app__row--w60 { width: 60%; }
.app__row--w80 { width: 80%; }
.app__row--w40 { width: 40%; }
.app__chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 130px;
  margin: 6px 0;
}
.app__chart i {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--blue-500), rgba(47, 124, 232, .2));
}

/* ============ 16. TESTIMONIALS ============ */
.tmarquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.tmarquee__track {
  display: flex;
  width: max-content;
  padding: 6px 0;
}
.quote {
  width: 366px;
  margin: 0 22px 0 0;
  flex-shrink: 0;
  padding: 28px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.quote:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}
.quote__stars {
  color: var(--orange-500);
  letter-spacing: .18em;
  font-size: .95rem;
  margin-bottom: 12px;
}
.quote blockquote {
  margin: 0 0 20px;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
}
.avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: var(--ff-head);
  font-weight: 800;
  color: #fff;
  background: var(--a, var(--navy-700));
  flex-shrink: 0;
}
.quote figcaption strong {
  display: block;
  font-family: var(--ff-head);
  color: var(--ink);
  line-height: 1.3;
}
.quote figcaption small { font-size: .82rem; color: var(--muted); }

/* ============ 17. FAQ ACCORDION ============ */
.faq {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 66px;
  align-items: start;
}
.faq__head { position: sticky; top: calc(var(--header-h) + 30px); }
.faq__head .btn { margin-top: 10px; }

.accordion { display: grid; gap: 14px; }
.acc {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, background-color .3s;
}
.acc.is-open {
  border-color: transparent;
  box-shadow: var(--sh-md);
}
.acc__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 24px;
  text-align: left;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  transition: color .25s;
}
.acc__q:hover { color: var(--red-500); }
.acc__icon {
  position: relative;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-tint);
  transition: background-image .3s, transform .4s var(--ease);
}
.acc__icon::before,
.acc__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-700);
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease), background-color .3s;
}
.acc__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc.is-open .acc__icon {
  background-image: var(--grad-brand);
  transform: rotate(180deg);
}
.acc.is-open .acc__icon::before,
.acc.is-open .acc__icon::after { background: #fff; }
.acc.is-open .acc__icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.acc__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.acc__a p {
  margin: 0;
  padding: 0 24px 24px;
  font-size: .96rem;
  color: var(--muted);
}

/* ============ 18. CONTACT CTA ============ */
.cta {
  background: var(--grad-hero);
  color: rgba(255, 255, 255, .76);
  overflow: hidden;
}
.cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 60px;
  align-items: center;
}
.cta__content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
}
.cta__content p {
  font-size: 1.06rem;
  color: rgba(255, 255, 255, .72);
  max-width: 480px;
  margin-bottom: 30px;
}
.cta__meta { display: grid; gap: 14px; }
.cta__meta li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  color: rgba(255, 255, 255, .8);
}
.cta__meta svg {
  width: 20px;
  height: 20px;
  color: #ffb340;
  flex-shrink: 0;
}
.cta__meta a { transition: color .25s; }
.cta__meta a:hover { color: #ffb340; }

.cta__form {
  padding: 34px;
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: 0 34px 70px rgba(0, 0, 0, .34);
}
.cta__form h3 {
  font-size: 1.32rem;
  margin-bottom: 22px;
}
.cta__form .field { margin-bottom: 16px; }
.cta__form .btn { margin-top: 6px; }

/* ============ 19. FOOTER & BACK-TO-TOP ============ */
.footer {
  background: #04101f;
  color: rgba(255, 255, 255, .6);
  padding-top: 76px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding-bottom: 54px;
}
.footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.footer__brand p {
  font-size: .94rem;
  max-width: 330px;
  margin-bottom: 22px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .8);
  transition: transform .3s var(--ease), background-image .3s, color .3s;
}
.socials svg { width: 19px; height: 19px; }
.socials a:hover {
  transform: translateY(-4px);
  background-image: var(--grad-brand);
  color: #fff;
}

.footer__col h4 {
  font-size: 1.04rem;
  color: #fff;
  margin-bottom: 20px;
}
.footer__col ul { display: grid; gap: 12px; }
.footer__col a {
  position: relative;
  font-size: .94rem;
  transition: color .25s, padding-left .3s var(--ease);
}
.footer__col a:hover {
  color: #ffb340;
  padding-left: 8px;
}
.footer__contact { margin-bottom: 24px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: .88rem;
}
.footer__bottom p { margin: 0; }
.footer__bottom ul { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__bottom a:hover { color: #ffb340; }

.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 150;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  background: var(--grad-brand);
  box-shadow: var(--sh-brand);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .35s, transform .35s var(--ease), visibility .35s;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.to-top:hover { transform: translateY(-4px); }
.to-top svg { width: 20px; height: 20px; stroke-width: 2.4; }

/* ============ 20. RESPONSIVE ============ */
@media (max-width: 1100px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { max-width: 720px; margin-inline: auto; }
  .hero__sub { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__visual { min-height: 520px; margin-top: 20px; }
  .float-card--speed { left: 2%; }
  .float-card--rate { right: 2%; }
  .why, .app__inner, .cta__inner, .faq { grid-template-columns: 1fr; gap: 46px; }
  .why__media { max-width: 460px; }
  .faq__head { position: static; }
  .section__title--left, .section__lead--left { text-align: left; }
  .footer__top { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

@media (max-width: 980px) {
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 84vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 26px;
    padding: 104px 30px 40px;
    background: var(--grad-hero);
    box-shadow: -20px 0 60px rgba(0, 0, 0, .35);
    transform: translateX(105%);
    transition: transform .5s var(--ease);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }
  .nav__link {
    padding: 13px 14px;
    font-size: 1.06rem;
    color: rgba(255, 255, 255, .86);
  }
  .header.is-stuck .nav__link { color: rgba(255, 255, 255, .86); }
  .nav__cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }
  .nav__cta .btn { width: 100%; }
  .header.is-stuck .nav .btn--ghost { color: #fff; }
  .nav .btn--ghost { border: 1.6px solid rgba(255, 255, 255, .26); }
  .burger { display: block; z-index: 210; }

  .recharge__grid { grid-template-columns: 1fr 1fr; }
  .recharge__grid .btn { grid-column: 1 / -1; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 40px; max-width: 480px; margin-inline: auto; }
  .steps__line { display: none; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-8px); }
  .app__visual { min-height: 520px; }
}

@media (max-width: 640px) {
  :root { --header-h: 72px; }
  .section { padding: 74px 0; }
  .container { padding-inline: 18px; }
  .hero { padding-top: calc(var(--header-h) + 34px); }
  .hero__title { font-size: clamp(2.05rem, 9vw, 2.9rem); }
  .hero__visual { min-height: 470px; }
  .phone { width: 262px; }
  /* Not enough room beside the phone on phones — keep the mockup clean */
  .float-card { display: none; }
  .pulse-ring { width: 280px; height: 280px; }
  .recharge {
    padding: 24px 20px 20px;
    margin-bottom: -56px;
    border-radius: var(--r-md);
  }
  .recharge__grid { grid-template-columns: 1fr; }
  .marquee-wrap { padding-top: 104px; }
  .section__head { margin-bottom: 44px; }
  .cards, .stats__grid { grid-template-columns: 1fr; }
  .app__points { grid-template-columns: 1fr; }
  .app__phone { width: 216px; }
  .app__phone--back { transform: translate(-26%, -8%) rotate(-10deg) scale(.92); }
  .app__phone--front { transform: translate(16%, 6%) rotate(5deg); }
  .quote { width: 290px; padding: 24px; }
  .cta__form { padding: 24px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .to-top { right: 16px; bottom: 16px; }
}
