/* ============================================================
   Home237 — Premium landing design system
   Inspired by Hostinger's typography, spacing & section rhythm
   Palette: deep blue #001A9E · ink · white · soft grey
   ============================================================ */

:root {
  --blue:        #001A9E;
  --blue-deep:   #000F5C;
  --blue-mid:    #1A2FB8;
  --blue-light:  #3D52D4;
  --blue-soft:   #EEF0FF;
  --blue-mist:   #F5F6FF;
  --green:       #0F9F6E;
  --green-soft:  #E6F7EF;
  --amber:       #D4920A;
  --amber-soft:  #FDF3E3;
  --black:       #07070C;
  --ink:         #0B0D17;
  --muted:       #5B6475;
  --muted-2:     #8B93A7;
  --line:        #E8EAF0;
  --line-2:      #D8DCE6;
  --grey:        #F7F8FB;
  --grey-2:      #F0F2F7;
  --white:       #FFFFFF;

  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --shadow-xs:   0 1px 2px rgba(11, 13, 23, 0.04);
  --shadow-sm:   0 4px 16px rgba(11, 13, 23, 0.05);
  --shadow-md:   0 12px 40px rgba(11, 13, 23, 0.08);
  --shadow-lg:   0 28px 64px rgba(11, 13, 23, 0.12);
  --shadow-blue: 0 16px 40px rgba(0, 26, 158, 0.28);

  --font:        "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --maxw:        1160px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h:       72px;
  --topbar-h:    40px;
}

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

html {
  scroll-behavior: smooth;
  /* Only sticky nav overlaps anchors; topbar scrolls away */
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* clip avoids horizontal scroll without breaking position:sticky (hidden does) */
  overflow-x: clip;
}
body.nav-open {
  overflow: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }
em { font-style: italic; font-weight: inherit; }
ul { list-style: none; }

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ─── Eyebrow / section head ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.eyebrow--light { color: #9FB0FF; }

.section-head {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head--left {
  margin: 0 0 48px;
  text-align: left;
  max-width: 620px;
}
.section-head h2,
.features__title,
.how__title {
  font-size: clamp(32px, 4.2vw, 46px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--ink);
}
.section-head h2 em { font-style: italic; font-weight: 700; color: var(--blue); }
.section-head__sub {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-top: 16px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  font-family: inherit;
  padding: 14px 26px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0, 26, 158, 0.34);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-2);
}
.btn--ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}
.btn--lg { padding: 16px 30px; font-size: 15.5px; }
.btn--sm { padding: 10px 18px; font-size: 13.5px; border-radius: 9px; }

/* ─── Text link ─── */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.2s var(--ease), opacity 0.2s;
}
.text-link:hover { gap: 10px; }
.showcase--dark .text-link { color: #A9B7FF; }

/* ─── Check list ─── */
.check-list {
  margin: 28px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.45;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23001A9E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.showcase--dark .check-list li { color: rgba(255, 255, 255, 0.88); }
.showcase--dark .check-list li::before {
  background-color: rgba(255, 255, 255, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A9B7FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════
   TOPBAR
   ═══════════════════════════════════════════ */
.topbar {
  height: var(--topbar-h);
  background: var(--ink);
  color: var(--white);
}
.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}
.topbar__inner a {
  font-weight: 700;
  color: #9FB0FF;
  flex-shrink: 0;
  transition: color 0.2s;
}
.topbar__inner a:hover { color: var(--white); }
.topbar__inner span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 24px rgba(11, 13, 23, 0.04);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 2;
}
.brand__logo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  flex-shrink: 0;
  display: block;
}
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand__name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.brand__237 { color: var(--blue); }
.brand--light .brand__name { color: var(--white); }
.brand--light .brand__237 { color: #9FB0FF; }
.brand--light .brand__mark { background: var(--white); color: var(--ink); }
.brand--light .brand__logo {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
  min-width: 0;
}
.nav__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav__links a:hover { opacity: 1; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  z-index: 2;
}
.nav__link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav__link:hover { opacity: 1; }

.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
  z-index: 2;
  padding: 0;
}
.nav__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 2px;
  transition: 0.25s var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-actions { display: none; }

/* ═══════════════════════════════════════════
   HERO — brand-first, full-bleed visual
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 72px 0 0;
  background: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__wash {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 70%;
  background:
    radial-gradient(ellipse 50% 55% at 40% 20%, rgba(0, 26, 158, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 65% 15%, rgba(212, 146, 10, 0.07) 0%, transparent 55%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 13, 23, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 13, 23, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 65% 50% at 50% 0%, #000 20%, transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
}

.hero__brand {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.02;
  color: var(--ink);
  max-width: 860px;
}
.hero__title em {
  font-style: italic;
  font-weight: 700;
  color: var(--blue);
}

.hero__sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--muted);
  max-width: 540px;
  line-height: 1.65;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}
.store-row--hero {
  margin-top: 0;
}
.hero__web-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}
.hero__web-link:hover { color: var(--blue); }

/* Full-bleed product stage */
.hero__stage {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 64px;
  background:
    radial-gradient(ellipse 55% 50% at 70% 20%, rgba(61, 82, 212, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 15% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    linear-gradient(165deg, var(--blue) 0%, var(--blue-deep) 55%, #00082E 100%);
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}
.hero__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 20% 30%, rgba(61, 82, 212, 0.4) 0%, transparent 40%);
  pointer-events: none;
}
.hero__stage-inner {
  position: relative;
  width: min(980px, 100%);
  padding: 48px 24px 0;
  animation: heroFloat 6s var(--ease) infinite alternate;
}
.hero__shot {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.35));
}

@keyframes heroFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}

/* ═══════════════════════════════════════════
   TRUST
   ═══════════════════════════════════════════ */
.trust {
  padding: 28px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  text-align: center;
}
.trust__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--muted);
}
.trust__rating strong { color: var(--ink); font-weight: 700; }
.stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
}
.trust__divider {
  width: 1px;
  height: 22px;
  background: var(--line-2);
}
.trust__copy {
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 500;
  max-width: 520px;
}

/* ═══════════════════════════════════════════
   STATS — Hostinger-style cards on dark
   ═══════════════════════════════════════════ */
.stats {
  background: var(--black);
  padding: 56px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 26, 158, 0.45);
}
.stat-card strong {
  display: block;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1.1;
}
.stat-card span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

/* ═══════════════════════════════════════════
   CATEGORIES
   ═══════════════════════════════════════════ */
.categories {
  padding: 36px 0 0;
  background: var(--white);
}
.categories__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.categories__track::-webkit-scrollbar { display: none; }

.chip {
  flex-shrink: 0;
  border: 1.5px solid var(--line-2);
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  padding: 11px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.chip:hover {
  background: var(--grey);
  transform: translateY(-1px);
}
.chip.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* ═══════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════ */
.features {
  padding: 112px 0 80px;
  background:
    linear-gradient(180deg, var(--white) 0%, var(--blue-mist) 48%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.feature-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.feature-banner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  min-height: 220px;
  padding: 36px 32px;
  border-radius: var(--radius-xl);
  color: var(--white);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.feature-banner:hover {
  transform: translateY(-4px);
}
.feature-banner--primary {
  background: linear-gradient(145deg, var(--blue-mid) 0%, var(--blue) 50%, var(--blue-deep) 100%);
  box-shadow: var(--shadow-blue);
}
.feature-banner--primary:hover {
  box-shadow: 0 24px 56px rgba(0, 26, 158, 0.38);
}
.feature-banner--dark {
  background: var(--ink);
}
.feature-banner--dark:hover {
  box-shadow: var(--shadow-lg);
}
.feature-banner h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.feature-banner p {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 360px;
}
.feature-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--white);
}

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

.feature-item {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--grey);
  transition: background 0.25s, transform 0.25s var(--ease);
}
.feature-item:hover {
  background: var(--blue-mist);
  transform: translateY(-3px);
}
.feature-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  color: var(--blue);
  margin-bottom: 18px;
  box-shadow: var(--shadow-xs);
}
.feature-item h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.how {
  padding: 112px 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 26, 158, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #F3F5FA 0%, var(--grey) 45%, #EEF1F8 100%);
  position: relative;
  overflow: hidden;
}

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

.step__card {
  position: relative;
  border-radius: var(--radius-xl);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
  transition: transform 0.25s var(--ease);
}
.step__card:hover { transform: translateY(-4px); }
.step__card--blue {
  background: linear-gradient(155deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.step__card--light {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.step__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  align-self: flex-start;
}
.step__num--dark { color: var(--muted-2); }

.step__word {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  align-self: flex-start;
}

.step__caption {
  margin-top: 18px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  padding: 0 4px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   SHOWCASE SECTIONS
   ═══════════════════════════════════════════ */
.showcase {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.showcase--list,
.showcase--earn {
  background:
    radial-gradient(ellipse 55% 45% at 15% 30%, rgba(0, 26, 158, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 70%, rgba(212, 146, 10, 0.04) 0%, transparent 55%),
    var(--white);
}
.showcase--dark {
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0, 26, 158, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 10% 80%, rgba(26, 47, 184, 0.28) 0%, transparent 50%),
    linear-gradient(165deg, #05060C 0%, #0A0C18 40%, #070812 100%);
  color: var(--white);
}

.showcase__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.showcase__frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 600px;
}
.showcase__frame--grey {
  background: var(--grey);
  border: 1px solid var(--line);
}
.showcase__frame--blue {
  background: linear-gradient(155deg, var(--blue) 0%, var(--blue-deep) 100%);
}

.showcase__dotgrid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(11, 13, 23, 0.07) 1.2px, transparent 1.2px);
  background-size: 18px 18px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, #000 40%, transparent 80%);
}
.showcase__glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 70%);
}

.showcase__visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.showcase__visual--xl {
  min-height: 560px;
}
.showcase__shot {
  width: min(680px, 118%);
  max-width: none;
  height: auto;
  display: block;
  border-radius: 24px;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.22));
}

.phone-slot {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 560px;
  padding: 32px 16px 0;
  width: 100%;
}
.phone-slot--wide { min-height: 520px; }

.phone-img {
  width: min(400px, 90%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.2));
  position: relative;
  z-index: 2;
}
.phone-img--wide {
  width: min(620px, 104%);
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.14));
}

.phone-slot.is-empty::before {
  content: "";
  width: min(240px, 68%);
  aspect-ratio: 9 / 19.5;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%),
    #111827;
  border: 3px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  display: block;
}
.phone-slot.is-empty::after {
  content: "Phone screenshot";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  pointer-events: none;
  z-index: 1;
}
.showcase__frame--grey .phone-slot.is-empty::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.02) 100%),
    #fff;
  border-color: #d1d5db;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.showcase__frame--grey .phone-slot.is-empty::after {
  color: rgba(0, 0, 0, 0.35);
}

.showcase__copy h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.showcase__copy h2 em {
  font-style: italic;
  font-weight: 700;
  color: var(--blue);
}
.showcase--dark .showcase__copy h2 em { color: #9FB0FF; }
.showcase__copy > p {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 420px;
  font-weight: 500;
}
.showcase--dark .showcase__copy > p {
  color: rgba(255, 255, 255, 0.62);
}

.pay-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
}
.pay-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.pay-list li:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateX(4px);
}
.pay-list__logo {
  width: 96px;
  height: 58px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
  background: #0a0a0a;
}
.pay-list strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.pay-list span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials {
  padding: 112px 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 100%, rgba(0, 26, 158, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #F0F2F8 0%, var(--grey) 50%, #F5F6FA 100%);
  position: relative;
  overflow: hidden;
}

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

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s;
}
.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.testimonial__stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 1px;
}
.testimonial p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
  font-weight: 500;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
  padding-top: 18px;
}
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial__avatar--green { background: var(--green); }
.testimonial__avatar--amber { background: var(--amber); }
.testimonial__author strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
}
.testimonial__author small {
  font-size: 13px;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq {
  padding: 112px 0;
  background:
    radial-gradient(ellipse 50% 40% at 0% 50%, rgba(0, 26, 158, 0.05) 0%, transparent 55%),
    linear-gradient(180deg, var(--white) 0%, var(--blue-mist) 100%);
  position: relative;
  overflow: hidden;
}
.faq__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.faq__intro h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.faq__intro .section-head__sub { margin: 0 0 24px; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--grey);
  border: 1px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
.faq-item.is-open {
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 15.5px;
  font-weight: 700;
  font-family: inherit;
  color: var(--ink);
  cursor: pointer;
  letter-spacing: -0.01em;
}
.faq-item__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue-soft);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--blue);
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
.faq-item__icon::before {
  width: 10px;
  height: 1.8px;
  transform: translate(-50%, -50%);
}
.faq-item__icon::after {
  width: 1.8px;
  height: 10px;
  transform: translate(-50%, -50%);
}
.faq-item.is-open .faq-item__icon {
  background: var(--blue);
}
.faq-item.is-open .faq-item__icon::before,
.faq-item.is-open .faq-item__icon::after {
  background: var(--white);
}
.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-item__a p {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   CTA — full-bleed brand block
   ═══════════════════════════════════════════ */
.cta {
  position: relative;
  padding: 108px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 45% 55% at 15% 85%, rgba(255, 255, 255, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 90% 15%, rgba(61, 82, 212, 0.55) 0%, transparent 50%),
    linear-gradient(160deg, var(--blue-mid) 0%, var(--blue) 42%, var(--blue-deep) 100%);
  overflow: hidden;
}
.cta::before {
  content: none;
}

.cta__inner { position: relative; z-index: 1; }
.cta__inner h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--white);
}
.cta__inner > p {
  font-size: 17.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
  font-weight: 500;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 10px;
  min-width: 168px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.store-badge:hover {
  background: rgba(0, 0, 0, 0.45);
  transform: translateY(-2px);
}
.store-badge--dark {
  background: #0B0D17;
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}
.store-badge--dark:hover {
  background: #000;
  box-shadow: var(--shadow-md);
}
.store-badge__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}
.store-badge__text small {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: 0.02em;
}
.store-badge__text strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════
   SECTION ATMOSPHERE / FX
   ═══════════════════════════════════════════ */
.has-fx {
  isolation: isolate;
}
.has-fx > .container,
.has-fx > .showcase__inner,
.has-fx > .faq__inner,
.has-fx > .cta__inner {
  position: relative;
  z-index: 1;
}

.section-fx {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.section-fx__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  will-change: transform, opacity;
}
.section-fx__orb--a {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: -12%;
  right: -8%;
  background: rgba(0, 26, 158, 0.16);
}
.section-fx__orb--b {
  width: min(360px, 48vw);
  height: min(360px, 48vw);
  bottom: -18%;
  left: -10%;
  background: rgba(26, 47, 184, 0.12);
}
.section-fx__orb--c {
  width: min(280px, 40vw);
  height: min(280px, 40vw);
  top: 40%;
  left: 45%;
  background: rgba(61, 82, 212, 0.14);
}

.section-fx__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 13, 23, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 13, 23, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 15%, transparent 75%);
  opacity: 0.9;
}

.section-fx__beam {
  position: absolute;
  width: 140%;
  height: 2px;
  top: 42%;
  left: -20%;
  background: linear-gradient(90deg, transparent, rgba(169, 183, 255, 0.35), transparent);
  transform: rotate(-8deg);
  opacity: 0.55;
  filter: blur(0.5px);
}

/* Soft (white / light) sections */
.has-fx--soft .section-fx__orb--a { background: rgba(0, 26, 158, 0.1); }
.has-fx--soft .section-fx__orb--b { background: rgba(212, 146, 10, 0.07); }

.has-fx--mist .section-fx__orb--a { background: rgba(0, 26, 158, 0.09); }
.has-fx--mist .section-fx__orb--b { background: rgba(61, 82, 212, 0.08); }

/* Dark payments */
.has-fx--dark .section-fx__orb--a {
  background: rgba(61, 82, 212, 0.35);
  filter: blur(50px);
}
.has-fx--dark .section-fx__orb--b {
  background: rgba(0, 26, 158, 0.4);
  filter: blur(55px);
}
.has-fx--dark .section-fx__orb--c {
  background: rgba(169, 183, 255, 0.12);
}
.has-fx--dark .section-fx__grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse 75% 65% at 60% 50%, #000 10%, transparent 70%);
}

/* Brand blue CTA */
.has-fx--brand .section-fx__orb--a {
  background: rgba(255, 255, 255, 0.18);
  filter: blur(48px);
}
.has-fx--brand .section-fx__orb--b {
  background: rgba(0, 8, 46, 0.35);
  filter: blur(52px);
}
.has-fx--brand .section-fx__orb--c {
  background: rgba(169, 183, 255, 0.22);
}
.has-fx--brand .section-fx__grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
}
.has-fx--brand .section-fx__beam {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  opacity: 0.7;
}

@media (prefers-reduced-motion: reduce) {
  .section-fx__orb,
  .section-fx__beam {
    animation: none !important;
    transform: none !important;
  }
}
.footer {
  background:
    radial-gradient(ellipse 50% 40% at 20% 0%, rgba(0, 26, 158, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 90% 40%, rgba(26, 47, 184, 0.2) 0%, transparent 50%),
    #05060C;
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.15fr 2fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand p {
  margin-top: 18px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.65;
  max-width: 300px;
  font-weight: 500;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer__social a:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer__col h4 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 20px;
}
.footer__col a {
  display: block;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }

.footer__newsletter h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer__newsletter p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 16px;
  line-height: 1.55;
  font-weight: 500;
}
.footer__form {
  display: flex;
  gap: 8px;
}
.footer__form input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
}
.footer__form input::placeholder { color: rgba(255, 255, 255, 0.32); }
.footer__form input:focus {
  outline: none;
  border-color: var(--blue-light);
  background: rgba(255, 255, 255, 0.08);
}
.footer__form button {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: none;
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.footer__form button:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}
.footer__form-msg {
  margin-top: 10px;
  font-size: 13px;
  color: #7DE0B0;
  min-height: 16px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px 28px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 500;
}
.footer__whisper {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.08);
  user-select: none;
  transition: color 0.2s;
}
.footer__whisper:hover {
  color: rgba(255, 255, 255, 0.22);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__cols { grid-template-columns: repeat(4, 1fr); }
  .footer__newsletter { max-width: 420px; }

  /* Collapse nav before links + CTAs overflow */
  .nav__links,
  .nav__actions { display: none; }
  .nav__burger { display: block; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    transform: none;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 20px 28px 28px;
    gap: 4px;
    align-items: stretch;
    box-shadow: 0 16px 40px rgba(11, 13, 23, 0.08);
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
    z-index: 50;
  }
  .nav__links.open > a {
    opacity: 1;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
  }
  .nav__links.open > a:last-of-type { border-bottom: none; }
  .nav__links.open .nav__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
  .nav__links.open .nav__mobile-actions .nav__link {
    opacity: 1;
    font-weight: 600;
    font-size: 15px;
  }
  .nav__links.open .nav__mobile-actions .btn {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-highlights { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .steps {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .step__card { min-height: 160px; }
  .showcase__inner { grid-template-columns: 1fr; gap: 40px; }
  .showcase--dark .showcase__inner { display: flex; flex-direction: column; }
  .showcase--dark .showcase__copy { order: 1; }
  .showcase--dark .showcase__media { order: 2; }
  .showcase__frame { min-height: 480px; }
  .phone-slot { min-height: 440px; }
  .phone-img { width: min(340px, 88%); }
  .phone-img--wide { width: min(520px, 100%); }
  .showcase__visual--xl { min-height: 0; }
  .showcase__shot { width: min(560px, 100%); border-radius: 18px; }
  .faq__inner { grid-template-columns: 1fr; gap: 36px; }
  .trust__divider { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; --topbar-h: 0px; }
  .topbar { display: none; }
  .container { padding: 0 20px; }

  .nav__links.open { padding-left: 20px; padding-right: 20px; }

  .hero { padding-top: 48px; }
  .hero__title { font-size: clamp(36px, 10vw, 48px); }
  .hero__stage { min-height: 280px; margin-top: 48px; }
  .hero__stage-inner { padding: 32px 12px 0; }

  .features { padding: 72px 0 48px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-banner { min-height: 180px; padding: 28px 24px; }

  .how { padding: 72px 0; }
  .showcase { padding: 72px 0; }
  .testimonials { padding: 72px 0; }
  .faq { padding: 72px 0; }
  .cta { padding: 80px 0; }
  .stats { padding: 40px 0; }

  .section-head { margin-bottom: 40px; }

  .footer { padding-top: 56px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; padding: 22px 20px; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 24px 16px; }
  .stat-card strong { font-size: 28px; }
  .store-badge { width: 100%; max-width: 220px; justify-content: center; }
  .hero__actions { width: 100%; }
  .store-row--hero { width: 100%; flex-direction: column; align-items: center; }
  .cta__actions { flex-direction: column; align-items: center; }
  .cta__actions .btn { width: 100%; max-width: 280px; }
  .footer__cols { grid-template-columns: 1fr; }
}
