/* ============================================================
   MyNoqta landing — design tokens from the Flutter apps' theme
   ============================================================ */
:root {
  /* brand */
  --teal-50: #E2F6F7;
  --teal-100: #C9EEF0;
  --teal-300: #4FCCD2;
  --teal-500: #1BBBC2;
  --teal-600: #15A3A9;
  --teal-700: #178A90;
  --teal-900: #002C2D;
  --gold-50: #FFF3D6;
  --gold-300: #FFC93C;
  --gold-400: #F4A100;
  --gold-900: #7A5200;
  --orange-500: #FF6B3D;
  --purple-500: #7C5CFC;
  --blue-500: #2F6BFF;
  --pink-500: #FF4D8D;
  --green-500: #1FB573;
  /* neutrals */
  --ink: #16232E;
  --text-2: #5B6B73;
  --text-3: #9AA7AE;
  --bg: #F6F9F9;
  --field: #F0F3F4;
  --border: #E4E8EA;
  --white: #FFFFFF;
  /* radii */
  --r-btn: 14px;
  --r-card: 16px;
  --r-lg: 18px;
  --r-hero: 28px;
  --r-pill: 999px;
  /* shadows */
  --shadow-card: 0 6px 20px rgba(8, 40, 42, 0.08);
  --shadow-lg: 0 20px 44px rgba(8, 40, 42, 0.18);
  --shadow-brand-glow: 0 16px 22px -6px rgba(27, 187, 194, 0.45), 0 4px 10px rgba(27, 187, 194, 0.3);
  --shadow-gold-glow: 0 16px 40px rgba(244, 161, 0, 0.4);
  /* type */
  --font-display: "Archivo", "Cairo", sans-serif;
  --font-body: "Plus Jakarta Sans", "Cairo", sans-serif;
  --nav-h: 72px;
}

/* ============ reset & base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
:lang(ar) body, [lang="ar"] { --font-display: "Cairo", "Archivo", sans-serif; --font-body: "Cairo", "Plus Jakarta Sans", sans-serif; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3 { letter-spacing: 0 !important; }
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure, blockquote { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
.container { width: min(1120px, 100% - 48px); margin-inline: auto; }
.section { padding-block: 88px; }

.skip-link {
  position: absolute; inset-inline-start: 16px; top: -48px; z-index: 200;
  background: var(--teal-900); color: #fff; padding: 10px 18px;
  border-radius: 0 0 12px 12px; font-family: var(--font-display); font-weight: 800; font-size: 14px;
  transition: top 0.2s;
}
.skip-link:focus-visible { top: 0; }
:focus-visible { outline: 2px solid var(--teal-700); outline-offset: 2px; border-radius: 4px; }

/* ============ shared components ============ */
.overline {
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--teal-700);
  margin-bottom: 14px;
}
.overline--gold { color: var(--gold-300); }
.section__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.7rem, 2.6vw + 0.7rem, 2.5rem);
  line-height: 1.15; letter-spacing: -0.5px; max-width: 620px;
}
.section__sub { color: var(--text-2); font-size: 1.05rem; max-width: 560px; margin-top: 16px; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-50); color: var(--teal-700);
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  padding: 8px 18px; border-radius: var(--r-pill);
}
.pill::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal-500); box-shadow: 0 0 0 4px rgba(27, 187, 194, 0.18);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  padding: 14px 26px; border-radius: var(--r-btn);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--teal-500); color: var(--teal-900); box-shadow: var(--shadow-brand-glow); }
.btn--primary:hover { background: var(--teal-300); }
.btn--gold { background: var(--gold-300); color: var(--gold-900); box-shadow: var(--shadow-gold-glow); }
.btn--gold:hover { background: #FFD75E; }
.btn--ghost { border: 1.6px solid rgba(255, 255, 255, 0.3); color: #fff; }
.btn--ghost:hover { border-color: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.06); }
.btn--nav { padding: 11px 20px; font-size: 14px; }

/* the gold "N" stamp — brand mark */
.stamp {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-300); color: var(--gold-900);
  border: 2.5px solid var(--gold-400); border-radius: 50%;
  font-family: var(--font-display); font-weight: 900;
  width: 34px; height: 34px; font-size: 15px; flex: none;
}
.stamp--sm { width: 32px; height: 32px; font-size: 14px; }
.stamp--lg { width: 72px; height: 72px; font-size: 32px; border-width: 5px; }
.stamp--num { width: 52px; height: 52px; font-size: 22px; border-width: 3.5px; box-shadow: var(--shadow-gold-glow); }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__word {
  font-family: var(--font-display); font-weight: 900; font-size: 22px;
  color: var(--teal-700); letter-spacing: -0.5px;
}
.brand__word--light { color: #fff; }

.coin {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold-300); border: 1.5px solid var(--gold-400);
  color: var(--gold-900); font-family: var(--font-display); font-weight: 900; font-size: 10px;
  flex: none;
}
.coin--lg { width: 34px; height: 34px; font-size: 15px; border-width: 2.5px; }

/* ============ nav ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 249, 249, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease;
}
.nav.is-scrolled { box-shadow: 0 4px 24px rgba(8, 40, 42, 0.09); }
.nav__inner { display: flex; align-items: center; gap: 28px; height: var(--nav-h); }
.nav__links { display: flex; gap: 26px; margin-inline-start: auto; }
.nav__links a {
  font-weight: 600; font-size: 15px; color: var(--text-2);
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--ink); }
.nav__actions { display: flex; align-items: center; gap: 14px; }

.lang { position: relative; }
.lang summary {
  list-style: none; display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px; border: 1.4px solid var(--border); border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 800; font-size: 13px; cursor: pointer;
  background: var(--white); color: var(--ink);
}
.lang summary::-webkit-details-marker { display: none; }
.lang__globe { width: 14px; height: 14px; border: 1.6px solid var(--text-2); border-radius: 50%; position: relative; }
.lang__globe::before { content: ""; position: absolute; inset: -1.6px auto; left: 50%; translate: -50%; width: 55%; height: calc(100% + 3.2px); border: 1.6px solid var(--text-2); border-radius: 50%; }
.lang__chev { width: 7px; height: 7px; border-inline-end: 1.8px solid var(--text-2); border-bottom: 1.8px solid var(--text-2); transform: rotate(45deg); margin-top: -3px; }
.lang__list {
  position: absolute; inset-inline-end: 0; top: calc(100% + 8px);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-card);
  box-shadow: var(--shadow-lg); padding: 6px; min-width: 150px; z-index: 50;
}
.lang__list button {
  display: block; width: 100%; text-align: start; padding: 9px 12px;
  border-radius: 10px; font-weight: 600; font-size: 14px;
}
.lang__list button:hover { background: var(--field); }
.lang__list button.is-active { color: var(--teal-700); font-weight: 700; background: var(--teal-50); }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 22px; height: 2.4px; background: var(--ink); border-radius: 2px; transition: transform 0.25s, opacity 0.2s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 24px 20px; background: var(--white);
  box-shadow: 0 18px 30px rgba(8, 40, 42, 0.12);
}
.nav__mobile a { padding: 12px 4px; font-weight: 600; border-bottom: 1px solid var(--field); }
.nav__mobile a.btn { border: 0; margin-top: 12px; }
.nav__mobile.is-open { display: flex; }

/* ============ hero ============ */
.hero { position: relative; padding-block: 72px 40px; overflow: clip; }
.hero__blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; pointer-events: none;
}
.hero__blob--teal { width: 480px; height: 480px; background: var(--teal-100); top: -160px; inset-inline-start: -120px; }
.hero__blob--gold { width: 420px; height: 420px; background: var(--gold-50); top: 40px; inset-inline-end: -140px; }
.hero__inner { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.4rem, 5.2vw + 0.8rem, 4.3rem);
  line-height: 1.05; letter-spacing: -0.5px;
  max-width: 820px; margin-top: 26px;
}
.hero__title .accent { color: var(--teal-700); display: inline-block; }
.hero__sub {
  color: var(--text-2); font-size: clamp(1.05rem, 1vw + 0.7rem, 1.25rem);
  max-width: 560px; margin-top: 20px;
}
.store-badges { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; justify-content: center; }
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff;
  padding: 10px 20px; border-radius: var(--r-btn);
  transition: transform 0.18s, box-shadow 0.18s;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.store-badge svg { width: 26px; height: 26px; }
.store-badge__text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.store-badge__text small { font-size: 10px; opacity: 0.75; letter-spacing: 0.04em; }
.store-badge__text strong { font-family: var(--font-display); font-weight: 800; font-size: 16px; }
.store-badge--light { background: #fff; color: var(--teal-900); }

.hero__media { margin-top: 56px; display: flex; flex-direction: column; align-items: center; width: 100%; }
.device-frame {
  background: var(--teal-900); border-radius: var(--r-hero);
  padding: 16px; box-shadow: 0 36px 90px rgba(8, 40, 42, 0.34);
  max-width: 920px; width: 100%;
}
.device-frame__dots { display: flex; gap: 7px; padding: 2px 6px 14px; }
.device-frame__dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); }
.device-frame__dots span:first-child { background: var(--orange-500); }
.device-frame__dots span:nth-child(2) { background: var(--gold-300); }
.device-frame__dots span:nth-child(3) { background: var(--green-500); }
.device-frame__screen {
  border-radius: 18px; overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(27, 187, 194, 0.14), transparent 60%),
    radial-gradient(circle at 82% 88%, rgba(255, 201, 60, 0.08), transparent 45%),
    #06282A;
  aspect-ratio: 16 / 9; position: relative;
}
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  background-image: radial-gradient(circle 2px at 2px 2px, rgba(255, 255, 255, 0.05) 2px, transparent 0);
  background-size: 30px 30px;
}
.video-play {
  width: 84px; height: 84px; border-radius: 50%; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal-500); color: var(--teal-900);
  box-shadow: 0 0 0 12px rgba(27, 187, 194, 0.16), var(--shadow-brand-glow);
  transition: transform 0.2s ease;
}
.device-frame:hover .video-play { transform: scale(1.06); }
.video-play svg { width: 34px; height: 34px; margin-inline-start: 4px; }
.video-placeholder__label {
  color: rgba(255, 255, 255, 0.82); font-family: var(--font-display);
  font-weight: 800; font-size: clamp(14px, 1.8vw, 18px); letter-spacing: -0.2px;
}

/* ============ stats ============ */
.stats { padding-block: 40px 8px; }
.stats__card {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--shadow-card); padding: 30px 18px;
}
.stats__card li {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px;
  padding-inline: 12px;
  border-inline-start: 1px solid var(--field);
}
.stats__card li:first-child { border-inline-start: 0; }
.stats__card strong {
  font-family: var(--font-display); font-weight: 900; font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  color: var(--teal-500); letter-spacing: -0.5px;
}
.stats__card span { color: var(--text-2); font-size: 14px; }

/* ============ categories ============ */
.categories { text-align: center; }
.categories .section__title, .categories .section__sub { margin-inline: auto; }
.cat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 14px; margin-top: 44px;
}
.cat-grid li {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 14px 16px; font-weight: 700; font-size: 14.5px;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.cat-grid li:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--teal-100); }
.cat-grid img { width: 34px; height: 34px; flex: none; }

/* ============ how it works ============ */
.how { text-align: center; }
.how .section__title { margin-inline: auto; }
.how__steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  margin-top: 56px; counter-reset: step; position: relative;
}
.how__steps::before {
  content: ""; position: absolute; top: 26px; left: 18%; right: 18%;
  border-top: 2.5px dashed var(--teal-100); z-index: 0;
}
.how__steps li {
  position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center;
  background: transparent; padding: 0 10px;
}
.how__steps h3 { font-family: var(--font-display); font-weight: 800; font-size: 18px; margin-top: 22px; max-width: 260px; }
.how__steps p { color: var(--text-2); font-size: 14.5px; margin-top: 10px; max-width: 270px; }

/* ============ feature rows & phone mockups ============ */
.feature__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.feature--flip .feature__row .feature__text { order: 2; }
.feature--flip .feature__row .feature__media { order: 1; }
.feature__media { display: flex; justify-content: center; }

.checklist { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.checklist li { display: flex; align-items: baseline; gap: 12px; font-weight: 600; font-size: 15.5px; }
.checklist li::before {
  content: "✓"; flex: none; width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(31, 181, 115, 0.14); color: var(--green-500);
  font-weight: 800; font-size: 12px; transform: translateY(3px);
}
.checklist--dark li { display: grid; grid-template-columns: 22px 1fr; column-gap: 12px; }
.checklist--dark li strong { font-family: var(--font-display); font-weight: 800; color: #fff; }
.checklist--dark li span { grid-column: 2; color: rgba(255, 255, 255, 0.66); font-weight: 500; font-size: 14.5px; }

/* phone shell */
.phone {
  width: clamp(258px, 24vw, 300px); aspect-ratio: 9 / 18.6;
  background: #0B1B1E; border-radius: 44px; padding: 9px;
  box-shadow: 0 24px 60px rgba(0, 44, 45, 0.25);
  position: relative;
}
.phone__island {
  position: absolute; top: 19px; left: 50%; translate: -50%;
  width: 84px; height: 22px; border-radius: var(--r-pill); background: #0B1B1E; z-index: 3;
}
.phone__screen {
  --notch-bg: var(--bg);
  background: var(--bg); border-radius: 36px; height: 100%;
  padding: 56px 16px 18px; overflow: hidden;
  display: flex; flex-direction: column; gap: 12px;
}
.phone__screen--dark { --notch-bg: var(--teal-900); background: var(--teal-900); align-items: center; }
.phone__screen--pro { --notch-bg: #0E2325; background: #0E2325; align-items: center; }

/* client mockup bits */
.mock-greet { display: flex; align-items: center; justify-content: space-between; }
.mock-greet__hi { font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.mock-avatar {
  width: 30px; height: 30px; border-radius: 50%; background: var(--teal-100); color: var(--teal-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 13px;
}
.mock-wallet {
  background: var(--teal-900); color: #fff; border-radius: var(--r-lg);
  padding: 14px 16px; display: flex; flex-direction: column; gap: 2px;
}
.mock-wallet__label { font-size: 11px; opacity: 0.7; font-weight: 600; }
.mock-wallet__value { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 900; font-size: 24px; }

/* the signature loyalty ticket */
.ticket { border-radius: var(--r-lg); overflow: visible; position: relative; color: #fff; }
.ticket--teal { background: var(--teal-600); }
.ticket--pink { background: var(--pink-500); }
.ticket__top { display: flex; align-items: center; gap: 9px; padding: 13px 14px 11px; }
.ticket__name { font-family: var(--font-display); font-weight: 800; font-size: 11px; letter-spacing: 0.12em; }
.mock-logo {
  width: 26px; height: 26px; border-radius: 50%; background: rgba(255, 255, 255, 0.92);
  color: var(--ink); display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 10.5px; flex: none;
}
.mock-logo--teal { background: var(--teal-50); color: var(--teal-700); width: 34px; height: 34px; font-size: 13px; }
.ticket__perf { position: relative; height: 2px; margin-inline: 12px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.45) 0 5px, transparent 5px 9px);
}
.ticket__perf::before, .ticket__perf::after {
  content: ""; position: absolute; top: 50%; translate: 0 -50%;
  width: 18px; height: 18px; border-radius: 50%; background: var(--notch-bg);
}
.ticket__perf::before { inset-inline-start: -21px; }
.ticket__perf::after { inset-inline-end: -21px; }
.ticket__bottom { padding: 11px 14px 13px; display: flex; flex-direction: column; gap: 3px; }
.ticket__bottom strong { font-family: var(--font-display); font-weight: 900; font-size: 15px; }
.ticket__meta { font-size: 12px; opacity: 0.85; font-weight: 600; }

/* card-detail mockup */
.mock-card-head { display: flex; align-items: center; gap: 11px; }
.mock-card-head strong { font-family: var(--font-display); font-weight: 900; font-size: 16px; display: block; }
.mock-card-head small { color: var(--text-2); font-size: 11.5px; }
.mock-stamps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px;
  background: var(--white); border-radius: var(--r-card); padding: 14px;
  box-shadow: var(--shadow-card);
}
.st {
  aspect-ratio: 1; border-radius: 50%;
  border: 2px dashed var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--gold-900); font-weight: 800;
}
.st--full { background: var(--gold-300); border: 2.5px solid var(--gold-400); }
.st--gift { border-color: var(--gold-300); font-size: 15px; }
.mock-almost {
  background: var(--gold-50); color: var(--gold-900);
  font-family: var(--font-display); font-weight: 800; font-size: 12.5px;
  border-radius: var(--r-pill); padding: 7px 14px; text-align: center;
}
.mock-reward {
  background: var(--white); border-radius: var(--r-card); box-shadow: var(--shadow-card);
  padding: 12px 14px; display: flex; align-items: center; gap: 11px;
}
.mock-reward strong { font-family: var(--font-display); font-weight: 800; font-size: 13.5px; display: block; }
.mock-reward small { color: var(--text-2); font-size: 11px; }

/* my-code mockup */
.mock-code-title { color: #fff; font-family: var(--font-display); font-weight: 900; font-size: 17px; margin-top: 4px; }
.mock-qr-sheet {
  background: var(--white); border-radius: 22px; padding: 22px 22px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35); margin-top: 14px;
}
.mock-qr { width: 148px; height: 148px; }
.mock-qr-code { font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: 0.22em; color: var(--ink); }
.mock-code-hint { color: rgba(255, 255, 255, 0.72); font-size: 12.5px; font-weight: 600; margin-top: 16px; }

/* pro mockup */
.pro { background: var(--teal-900); color: #fff; }
.pro .section__sub { color: rgba(255, 255, 255, 0.72); }
.pro__ctas { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.phone--dark { background: #05181A; box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5); }
.phone--dark .phone__island { background: #05181A; }
.mock-pro-title { color: #fff; font-family: var(--font-display); font-weight: 900; font-size: 16px; }
.mock-viewfinder {
  position: relative; width: 78%; aspect-ratio: 1; margin-top: 10px;
  background: rgba(255, 255, 255, 0.05); border-radius: 20px;
}
.vf-corner { position: absolute; width: 26px; height: 26px; border: 3.5px solid var(--teal-500); }
.vf-corner--tl { top: 0; left: 0; border-right: 0; border-bottom: 0; border-radius: 14px 0 0 0; }
.vf-corner--tr { top: 0; right: 0; border-left: 0; border-bottom: 0; border-radius: 0 14px 0 0; }
.vf-corner--bl { bottom: 0; left: 0; border-right: 0; border-top: 0; border-radius: 0 0 0 14px; }
.vf-corner--br { bottom: 0; right: 0; border-left: 0; border-top: 0; border-radius: 0 0 14px 0; }
.vf-line {
  position: absolute; left: 12%; right: 12%; top: 18%; height: 3px; border-radius: 3px;
  background: var(--teal-500); box-shadow: 0 0 14px var(--teal-500);
  animation: vf-scan 2.6s ease-in-out infinite alternate;
}
@keyframes vf-scan { to { top: 78%; } }
.mock-toast {
  display: flex; align-items: center; gap: 9px;
  background: rgba(31, 181, 115, 0.16); border: 1px solid rgba(31, 181, 115, 0.5);
  color: #7FE0B4; border-radius: var(--r-card); padding: 10px 16px;
  font-family: var(--font-display); font-weight: 800; font-size: 13px; margin-top: 14px;
}
.mock-toast__check {
  width: 20px; height: 20px; border-radius: 50%; background: var(--green-500); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 11px; flex: none;
}
.mock-pro-stats { display: flex; gap: 12px; margin-top: 14px; width: 100%; }
.mock-pro-stats div {
  flex: 1; background: rgba(255, 255, 255, 0.06); border-radius: var(--r-card);
  padding: 10px 12px; display: flex; flex-direction: column;
}
.mock-pro-stats strong { font-family: var(--font-display); font-weight: 900; font-size: 19px; color: var(--gold-300); }
.mock-pro-stats small { color: rgba(255, 255, 255, 0.6); font-size: 10.5px; }

/* ============ reviews ============ */
.reviews { text-align: center; }
.reviews .section__title { margin-inline: auto; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.review-card {
  background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-card);
  padding: 28px; text-align: start; display: flex; flex-direction: column; gap: 16px;
}
.stars { color: var(--gold-400); letter-spacing: 3px; font-size: 15px; }
.review-card blockquote { color: var(--ink); font-size: 15.5px; line-height: 1.65; flex: 1; }
.review-card footer { display: flex; align-items: center; gap: 12px; }
.review-card footer strong { font-family: var(--font-display); font-weight: 800; font-size: 14.5px; display: block; }
.review-card footer small { color: var(--text-3); font-size: 12.5px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 17px;
}
.review-avatar--purple { background: rgba(124, 92, 252, 0.14); color: var(--purple-500); }
.review-avatar--blue { background: rgba(47, 107, 255, 0.12); color: var(--blue-500); }
.review-avatar--pink { background: rgba(255, 77, 141, 0.12); color: var(--pink-500); }

/* ============ final CTA ============ */
.cta { padding-block: 40px 100px; }
.cta__panel {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  border-radius: var(--r-hero); padding: 72px 32px;
  text-align: center; color: #fff;
  box-shadow: var(--shadow-brand-glow);
}
.cta__stamps {
  position: absolute; inset: 0; opacity: 0.16; pointer-events: none;
  background-image: radial-gradient(circle 3px at 3px 3px, #fff 3px, transparent 0);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 70%);
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}
.cta__panel h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.8rem, 3.2vw + 0.6rem, 2.8rem); letter-spacing: -0.5px;
  position: relative;
}
.cta__panel p { margin-top: 14px; opacity: 0.9; font-size: 1.05rem; position: relative; max-width: 520px; margin-inline: auto; }
.cta__panel .store-badges { position: relative; }

/* ============ footer ============ */
.footer { background: var(--teal-900); color: rgba(255, 255, 255, 0.75); padding-block: 64px 32px; }
.footer__top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 48px; }
.footer__brand p { margin-top: 18px; font-size: 14.5px; max-width: 260px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__cols div { display: flex; flex-direction: column; gap: 11px; }
.footer__head {
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--teal-300);
  margin-bottom: 6px;
}
.footer__cols a { font-size: 14.5px; transition: color 0.15s; }
.footer__cols a:hover { color: #fff; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12); margin-top: 48px; padding-top: 26px;
  font-size: 13.5px;
}
.footer__langs { display: flex; align-items: center; gap: 10px; }
.footer__langs button { font-size: 13.5px; color: rgba(255, 255, 255, 0.75); transition: color 0.15s; }
.footer__langs button:hover, .footer__langs button.is-active { color: #fff; font-weight: 700; }

/* ============ partner form page ============ */
.partner { position: relative; overflow: clip; min-height: calc(100vh - var(--nav-h) - 320px); }
.partner__inner {
  position: relative; display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 56px; align-items: start;
}
.partner__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 3.4vw + 0.6rem, 3.1rem);
  line-height: 1.08; letter-spacing: -0.5px; margin-top: 8px;
}
.partner__intro .section__sub { margin-top: 18px; }

.form-card {
  background: var(--white); border-radius: var(--r-hero);
  box-shadow: var(--shadow-card); padding: 36px;
}
.hp-field { position: absolute; inset-inline-start: -9999px; height: 0; overflow: hidden; margin: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display); font-weight: 800; font-size: 12.5px;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-2);
}
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px; color: var(--ink);
  background: var(--field); border: 1.6px solid transparent;
  border-radius: var(--r-btn); padding: 13px 15px;
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-2) 50%), linear-gradient(135deg, var(--text-2) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px; background-repeat: no-repeat;
  padding-inline-end: 40px;
}
[dir="rtl"] .field select {
  background-position: 20px 50%, 14px 50%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: none; border-color: var(--teal-500); background: var(--white);
}
.field input.is-invalid, .field select.is-invalid { border-color: var(--red-500, #E5484D); }
.form-submit { width: 100%; margin-top: 22px; padding-block: 16px; font-size: 16px; }
.form-submit[disabled] { opacity: 0.65; cursor: wait; transform: none; }
.form-error {
  margin-top: 18px; padding: 12px 16px; border-radius: var(--r-card);
  background: #FDE7E7; color: #B3261E; font-weight: 600; font-size: 14px;
}
.form-success {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 18px; padding: 28px 8px;
}
.form-success[hidden] { display: none; }
.form-success h2 { font-family: var(--font-display); font-weight: 900; font-size: 26px; letter-spacing: -0.4px; }
.form-success p { color: var(--text-2); max-width: 380px; }
.form-success .btn { margin-top: 6px; }

/* ============ legal pages ============ */
.legal { padding-block: 64px 88px; }
.legal__inner { max-width: 760px; }
.legal h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.9rem, 3vw + 0.7rem, 2.8rem);
  line-height: 1.12; letter-spacing: -0.5px; margin-top: 6px;
}
.legal__lead { color: var(--text-2); font-size: 1.08rem; margin-top: 18px; }
.legal__meta { color: var(--text-3); font-size: 14px; margin-top: 14px; font-weight: 600; }
.legal h2 {
  font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
  letter-spacing: -0.2px; margin-top: 40px; padding-top: 22px;
  border-top: 1px solid var(--border);
}
.legal p, .legal li { color: var(--text-2); font-size: 15.5px; line-height: 1.7; }
.legal p { margin-top: 12px; }
.legal ul { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.legal li { padding-inline-start: 20px; position: relative; }
.legal li::before {
  content: ""; position: absolute; inset-inline-start: 4px; top: 10px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal-500);
}
.legal strong { color: var(--ink); font-weight: 700; }
.legal a { color: var(--teal-700); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--teal-600); }
/* Legal pages have no burger menu, so this must survive the mobile
   `.btn--nav { display: none }` rule — it is the only way back. */
.legal__home { margin-inline-start: auto; }
.btn--nav.legal__home { display: inline-flex; }
.footer__bottom--solo { margin-top: 0; border-top: 0; padding-top: 0; }
.footer__langs a { color: rgba(255, 255, 255, 0.75); font-size: 13.5px; transition: color 0.15s; }
.footer__langs a:hover { color: #fff; }

/* ============ reveal animation ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.cat-grid.is-visible li, .reviews__grid li.is-visible { animation: none; }

/* ============ responsive ============ */
@media (max-width: 1024px) {
  .feature__row { gap: 40px; }
  .nav__links { gap: 18px; }
}

@media (max-width: 860px) {
  .section { padding-block: 64px; }
  .nav__links { display: none; }
  .nav-burger { display: inline-flex; }
  .btn--nav { display: none; }
  .feature__row { grid-template-columns: 1fr; gap: 44px; }
  .feature--flip .feature__row .feature__text { order: 1; }
  .feature--flip .feature__row .feature__media { order: 2; }
  .how__steps { grid-template-columns: 1fr; gap: 44px; }
  .how__steps::before { display: none; }
  .partner__inner { grid-template-columns: 1fr; gap: 36px; }
  .form-card { padding: 26px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .stats__card { grid-template-columns: 1fr 1fr; row-gap: 26px; }
  .stats__card li:nth-child(odd) { border-inline-start: 0; }
  .footer__top { grid-template-columns: 1fr; }
  .phone { width: min(290px, 78vw); }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 40px); }
  .hero { padding-block: 48px 24px; }
  .store-badges { width: 100%; }
  .store-badge { flex: 1; justify-content: center; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cta__panel { padding: 52px 22px; }
  .device-frame { padding: 10px; }
  .video-play { width: 60px; height: 60px; }
  .video-play svg { width: 24px; height: 24px; }
}

/* ============ reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .vf-line { animation: none; top: 48%; }
  .btn, .store-badge, .cat-grid li { transition: none; }
}
