:root {
  --blue-950: #06142f;
  --blue-900: #081b45;
  --blue-800: #0b2b68;
  --blue-600: #155cff;
  --blue-400: #2fb7ff;
  --green: #19d68b;
  --purple: #7a4dff;
  --violet: #9b5cff;
  --cyan: #42e8ff;
  --ink: #0b1730;
  --muted: #64718a;
  --line: rgba(19, 55, 112, .12);
  --soft: #f5f8ff;
  --white: #fff;
  --shadow: 0 24px 70px rgba(7, 26, 69, .14);
  --premium-shadow: 0 32px 110px rgba(2, 11, 36, .24);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
  position: relative;
}

.section.soft {
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}

.section.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(66, 232, 255, .24), transparent 30%),
    radial-gradient(circle at 82% 4%, rgba(155, 92, 255, .32), transparent 36%),
    radial-gradient(circle at 70% 96%, rgba(25, 214, 139, .18), transparent 28%),
    linear-gradient(135deg, #040b24 0%, #08245d 47%, #170b46 100%);
  overflow: hidden;
}

.section.dark::before,
.hero::before,
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 78%);
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(47, 183, 255, .25);
  border-radius: 999px;
  color: var(--blue-600);
  background: rgba(47, 183, 255, .08);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.dark .eyebrow,
.hero .eyebrow {
  color: #b7efff;
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .1);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  margin-top: 22px;
  color: var(--white);
  font-size: clamp(38px, 5.2vw, 68px);
}

h2 {
  margin-top: 14px;
  color: var(--blue-950);
  font-size: clamp(30px, 4vw, 50px);
}

.dark h2 {
  color: var(--white);
}

h3 {
  font-size: 22px;
}

.lead {
  max-width: 760px;
  margin-top: 18px;
  color: #d9e8ff;
  font-size: 17px;
}

.section .intro {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  text-align: center;
}

.section-head {
  margin-bottom: 42px;
  text-align: center;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-600), var(--purple) 55%, #bb63ff);
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(21, 92, 255, .3);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 10%, rgba(255, 255, 255, .34), transparent 42%);
  transform: translateX(-120%);
  transition: transform .6s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(25, 214, 139, .25);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn.alt {
  color: var(--blue-950);
  background: linear-gradient(135deg, #dff9ff, #fff);
}

.btn.green {
  color: #02251a;
  background: linear-gradient(135deg, var(--green), #b5ffe1);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(47, 183, 255, .18);
  background: rgba(6, 20, 47, .72);
  backdrop-filter: blur(20px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
  background: rgba(6, 20, 47, .92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  flex-direction: column;
  color: var(--white);
  line-height: 1.1;
}

.brand strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
}

.brand span {
  max-width: 250px;
  color: #9dc3ff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #dbeaff;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  transition: color .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

.nav-call {
  color: var(--white);
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.hero {
  min-height: 100vh;
  padding: 126px 0 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 24%, rgba(66, 232, 255, .28), transparent 28%),
    radial-gradient(circle at 58% 82%, rgba(25, 214, 139, .16), transparent 34%),
    linear-gradient(112deg, rgba(4, 11, 36, .98) 0%, rgba(8, 36, 93, .9) 42%, rgba(122, 77, 255, .62) 100%),
    url("https://images.unsplash.com/photo-1563013544-824ae1b704d3?auto=format&fit=crop&w=2200&q=80") center / cover;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.page-hero {
  min-height: 56vh;
  display: flex;
  align-items: center;
  padding: 140px 0 70px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(6, 20, 47, .92), rgba(8, 36, 93, .84), rgba(122, 77, 255, .5)),
    var(--page-image) center / cover;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 54px;
  align-items: center;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  color: #dceaff;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 900;
}

.trust-row i {
  color: var(--green);
}

.hero-stage {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 18px 0 0 40px;
  z-index: -1;
  border-radius: 54px;
  background: linear-gradient(135deg, rgba(66, 232, 255, .16), rgba(155, 92, 255, .22));
  filter: blur(12px);
  transform: skewY(-4deg);
}

.phone {
  position: absolute;
  right: 36px;
  top: 18px;
  width: 286px;
  min-height: 520px;
  padding: 18px;
  border: 9px solid #071126;
  border-radius: 42px;
  background: linear-gradient(180deg, #f8fbff, #e9f4ff);
  box-shadow: var(--premium-shadow);
  animation: float 5.5s ease-in-out infinite;
}

.phone::before {
  content: "";
  display: block;
  width: 84px;
  height: 7px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #111b32;
}

.app-card {
  padding: 16px;
  border-radius: 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, .38), transparent 20%),
    linear-gradient(135deg, var(--blue-600), var(--purple));
  box-shadow: 0 18px 44px rgba(21, 92, 255, .25);
}

.balance {
  margin: 16px 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
}

.quick-pay {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.quick-pay span,
.mini-row {
  border-radius: 14px;
  padding: 12px;
  color: var(--blue-950);
  background: var(--white);
  font-weight: 900;
  font-size: 12px;
}

.mini-row {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  box-shadow: 0 10px 26px rgba(8, 27, 69, .08);
}

.phone-secondary {
  left: 0;
  top: 104px;
  right: auto;
  z-index: -1;
  width: 210px;
  min-height: 390px;
  padding: 14px;
  border-width: 7px;
  border-radius: 34px;
  opacity: .94;
  transform: rotate(-8deg);
  animation: floatTilt 6s ease-in-out infinite;
}

.phone-secondary::before {
  width: 58px;
  height: 5px;
  margin-bottom: 14px;
}

.merchant-screen {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 20px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(25, 214, 139, .44), transparent 28%),
    linear-gradient(135deg, #081b45, #155cff 52%, #19d68b);
}

.merchant-screen strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
}

.qr-float,
.coin,
.shield {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
}

.qr-float {
  left: 8px;
  bottom: 66px;
  width: 154px;
  height: 154px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(66, 232, 255, .18), transparent 48%),
    rgba(255, 255, 255, .12);
  animation: qrPulse 2.6s ease-in-out infinite;
}

.qr-float i {
  font-size: 76px;
}

.qr-float::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--green);
  box-shadow: 0 0 22px var(--green);
  animation: scan 2.1s ease-in-out infinite;
}

.qr-float::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(66, 232, 255, .4);
  border-radius: 18px;
  animation: qrFrame 2.6s ease-in-out infinite;
}

.coin {
  right: 0;
  bottom: 84px;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  color: #092317;
  background: linear-gradient(135deg, #fff4a6, var(--green));
  animation: float 4.6s ease-in-out infinite;
}

.shield {
  left: 90px;
  top: 64px;
  width: 82px;
  height: 82px;
  border-radius: 22px;
  color: var(--green);
  font-size: 34px;
  animation: glow 2.4s ease-in-out infinite;
}

.orbit-ring {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(66, 232, 255, .16);
  border-radius: 999px;
  animation: orbit 14s linear infinite;
}

.ring-one {
  right: -22px;
  top: 38px;
  width: 410px;
  height: 410px;
}

.ring-two {
  right: 46px;
  top: 110px;
  width: 280px;
  height: 280px;
  border-color: rgba(25, 214, 139, .18);
  animation-duration: 18s;
  animation-direction: reverse;
}

.payment-alert {
  position: absolute;
  right: 12px;
  top: 150px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 2px 10px;
  align-items: center;
  min-width: 210px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 20px;
  color: var(--white);
  background: rgba(4, 11, 36, .62);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .26);
  animation: slidePay 4s ease-in-out infinite;
}

.payment-alert i {
  grid-row: 1 / 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: #062718;
  background: var(--green);
}

.payment-alert span {
  color: #cfe1ff;
  font-size: 12px;
  font-weight: 800;
}

.payment-alert strong {
  font-family: "Space Grotesk", sans-serif;
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(47, 183, 255, .6) 1px, transparent 1px),
    radial-gradient(circle, rgba(25, 214, 139, .55) 1px, transparent 1px);
  background-position: 0 0, 34px 52px;
  background-size: 92px 92px, 120px 120px;
  opacity: .28;
  animation: drift 18s linear infinite;
}

.image-card,
.feature-card,
.service-card,
.why-card,
.testimonial,
.contact-card,
.step-card,
.benefit-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.image-card:hover,
.feature-card:hover,
.service-card:hover,
.why-card:hover,
.contact-card:hover,
.step-card:hover,
.benefit-tile:hover {
  transform: translateY(-7px);
  border-color: rgba(25, 214, 139, .35);
  box-shadow: 0 28px 80px rgba(21, 92, 255, .18);
}

.strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.image-card img {
  width: 100%;
  height: 156px;
  object-fit: cover;
  transition: transform .4s ease;
}

.image-card:hover img,
.benefit-tile:hover img,
.why-card:hover img {
  transform: scale(1.06);
}

.image-card .pad,
.why-card .pad {
  padding: 18px;
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--green));
  box-shadow: 0 14px 26px rgba(21, 92, 255, .25);
}

.about-img {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.about-img img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  list-style: none;
  color: #273955;
  font-weight: 800;
}

.check-list i {
  margin-top: 5px;
  color: var(--green);
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.feature-card,
.service-card,
.contact-card,
.step-card,
.testimonial {
  padding: 24px;
}

.feature-card p,
.service-card p,
.why-card p,
.step-card p,
.testimonial p,
.contact-card p {
  margin-top: 10px;
  color: var(--muted);
}

.service-card {
  position: relative;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  color: var(--white);
  border-color: rgba(255, 255, 255, .16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .055)),
    radial-gradient(circle at 100% 0%, rgba(66, 232, 255, .16), transparent 30%);
  backdrop-filter: blur(14px);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, .24), transparent 28%, rgba(25, 214, 139, .14));
  opacity: 0;
  transition: opacity .25s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.service-top span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #b7efff;
  background: rgba(255, 255, 255, .08);
  font-size: 12px;
  font-weight: 900;
}

.service-card p {
  color: #cfe1ff;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.service-meta b {
  padding: 6px 9px;
  border-radius: 999px;
  color: #062718;
  background: rgba(25, 214, 139, .88);
  font-size: 11px;
}

.service-card .mini-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--green);
  font-weight: 900;
}

.benefit-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-tile img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .4s ease;
}

.benefit-tile span {
  display: block;
  padding: 14px;
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  position: relative;
}

.step-card b {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-600);
  font-family: "Space Grotesk", sans-serif;
  font-size: 38px;
  line-height: 1;
}

.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.counter {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  text-align: center;
}

.counter strong {
  display: block;
  color: var(--green);
  font-family: "Space Grotesk", sans-serif;
  font-size: 42px;
}

.stars {
  color: #ffd35a;
}

.why-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .4s ease;
}

.cta {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgba(25, 214, 139, .22), transparent 28%),
    radial-gradient(circle at 52% 100%, rgba(66, 232, 255, .18), transparent 34%),
    linear-gradient(110deg, rgba(4, 11, 36, .95), rgba(21, 92, 255, .76), rgba(122, 77, 255, .68)),
    url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1800&q=80") center / cover;
  overflow: hidden;
}

.cta h2 {
  color: var(--white);
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 54px;
  align-items: center;
}

.cta-device {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
  box-shadow: var(--premium-shadow);
}

.cta-device::before {
  content: "";
  position: absolute;
  inset: -34px -18px auto auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  filter: blur(8px);
  opacity: .5;
}

.app-download-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, .32), transparent 24%),
    linear-gradient(135deg, #155cff, #7a4dff 64%, #19d68b);
}

.app-download-card i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  color: #062718;
  background: var(--green);
  font-size: 22px;
}

.app-download-card span {
  font-weight: 900;
}

.app-download-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  line-height: 1.12;
}

.cta-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.cta-mini-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px;
  border-radius: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  font-weight: 900;
}

.contact-card a {
  color: var(--blue-600);
  font-weight: 900;
}

.form-wrap {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(19, 55, 112, .15);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #f8fbff;
  font: inherit;
  outline: none;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.footer {
  padding: 70px 0 26px;
  color: #c9d9f2;
  background: #040b1c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}

.footer h3 {
  color: var(--white);
  font-size: 18px;
}

.footer a,
.footer p {
  display: block;
  margin-top: 10px;
  color: #b8cae7;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a,
.float-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--purple));
}

.copyright {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
}

.float-btn {
  position: fixed;
  z-index: 60;
  bottom: 22px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .25);
  animation: pulse 1.9s ease-in-out infinite;
}

.float-btn.call {
  left: 22px;
}

.float-btn.whatsapp {
  right: 22px;
  background: linear-gradient(135deg, #00b66c, var(--green));
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes floatTilt {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-16px) rotate(-5deg); }
}

@keyframes scan {
  0%, 100% { top: 22px; opacity: .4; }
  50% { top: 126px; opacity: 1; }
}

@keyframes qrPulse {
  0%, 100% { box-shadow: 0 20px 60px rgba(0, 0, 0, .22), 0 0 0 rgba(66, 232, 255, 0); }
  50% { box-shadow: 0 24px 70px rgba(0, 0, 0, .28), 0 0 42px rgba(66, 232, 255, .34); }
}

@keyframes qrFrame {
  0%, 100% { transform: scale(.96); opacity: .45; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 0 rgba(25, 214, 139, 0); }
  50% { box-shadow: 0 0 42px rgba(25, 214, 139, .45); }
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-90px, 80px, 0); }
}

@keyframes orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes slidePay {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .88; }
  50% { transform: translate3d(-12px, -10px, 0); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@media (max-width: 1020px) {
  .nav-links,
  .nav-call {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links.open {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: rgba(6, 20, 47, .98);
    box-shadow: var(--shadow);
  }

  .nav-links.open a {
    padding: 14px;
  }

  .hero-grid,
  .split,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 480px;
  }

  .phone {
    right: max(16px, 15vw);
  }

  .phone-secondary {
    left: max(0px, 8vw);
  }

  .strip,
  .grid-4,
  .benefit-gallery,
  .steps,
  .counters {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

  .brand strong {
    font-size: 24px;
  }

  .brand span {
    max-width: 190px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 58px;
  }

  .hero-stage {
    min-height: 440px;
    margin-top: 12px;
  }

  .phone {
    width: 224px;
    min-height: 410px;
    right: 16px;
    border-radius: 34px;
  }

  .phone-secondary {
    top: 72px;
    width: 168px;
    min-height: 320px;
    opacity: .82;
  }

  .payment-alert {
    right: 0;
    top: 22px;
    min-width: 180px;
    transform: scale(.92);
    transform-origin: top right;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .balance {
    font-size: 26px;
  }

  .qr-float {
    width: 112px;
    height: 112px;
    left: 0;
  }

  .qr-float i {
    font-size: 54px;
  }

  .coin,
  .shield {
    display: none;
  }

  .ring-one,
  .ring-two {
    right: -80px;
  }

  .strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .benefit-gallery,
  .steps,
  .counters,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-device {
    padding: 16px;
    border-radius: 20px;
  }

  .cta-mini-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }
}
