/* ─────────────────────────────────────────────────────────────
   QR Menu Landing — #00aeed brand, dark/light mode, BPG fonts
───────────────────────────────────────────────────────────── */

/* ── FONTS ── */
@font-face {
  font-family: 'BPGNino';
  src: url('../fonts/bpg_nino_mtavruli_bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'BPGArial';
  src: url('../fonts/bpg_arial_2009.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

/* ── TOKENS ── */
:root {
  --brand:        #00aeed;
  --brand-dark:   #0091c7;
  --brand-darker: #006d97;
  --brand2:       #0057b7;
  --brand2-dark:  #004494;

  --gradient:     linear-gradient(135deg, #00aeed 0%, #0057b7 100%);
  --gradient-rev: linear-gradient(135deg, #0057b7 0%, #00aeed 100%);
  --hero-gradient: linear-gradient(135deg, #0099d4 0%, #004d9f 100%);

  /* light mode defaults */
  --bg:           #f0f9ff;
  --bg2:          #ffffff;
  --surface:      #e0f2fe;
  --surface2:     #bae6fd;
  --border:       #bae6fd;
  --text:         #0c1f3a;
  --text-muted:   #4a6282;
  --text-dim:     #93b3cc;
  --nav-bg:       rgba(255,255,255,0.92);
  --nav-border:   rgba(0,174,237,0.15);
  --card-bg:      #ffffff;
  --card-border:  #e0f2fe;
  --hero-overlay: rgba(0,22,44,0.65);
  --input-bg:     #f8fbff;
  --shadow:       0 4px 24px rgba(0,87,183,0.10);
  --shadow-lg:    0 16px 64px rgba(0,87,183,0.15);
}

[data-theme="dark"] {
  --bg:           #060f1a;
  --bg2:          #0a1628;
  --surface:      #0d1f35;
  --surface2:     #112845;
  --border:       rgba(0,174,237,0.15);
  --text:         #e8f4fd;
  --text-muted:   #7ab8d4;
  --text-dim:     #3d6b88;
  --nav-bg:       rgba(6,15,26,0.92);
  --nav-border:   rgba(0,174,237,0.12);
  --card-bg:      #0a1628;
  --card-border:  rgba(0,174,237,0.12);
  --hero-overlay: rgba(0,10,22,0.5);
  --hero-gradient: linear-gradient(135deg, #008abd 0%, #004389 100%);
  --input-bg:     #0d1f35;
  --shadow:       0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:    0 16px 64px rgba(0,0,0,0.5);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'BPGArial', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

h1, h2, h3, h4,
.nav-logo-text,
.hero-title,
.section-title,
.hero-stat-value,
.step-title,
.feature-title,
.pricing-name,
.pricing-price,
.faq-q span,
.cta-title,
.footer-col-title,
.contact-label {
  font-family: 'BPGNino', 'Inter', sans-serif;
  font-weight: 700;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
section[id] { scroll-margin-top: 110px; }

/* ── THEME TOGGLE ── */
.theme-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s;
  flex-shrink: 0;
  color: #fff;
  backdrop-filter: blur(4px);
}
.theme-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
  transform: scale(1.08);
}
/* after scroll — theme-aware */
.nav.scrolled .theme-btn {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: none;
}
.nav.scrolled .theme-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.theme-btn svg { width: 18px; height: 18px; }
.theme-btn .icon-moon { display: block; }
.theme-btn .icon-sun  { display: none; }
[data-theme="dark"] .theme-btn .icon-moon { display: none; }
[data-theme="dark"] .theme-btn .icon-sun  { display: block; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: 'BPGNino', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: rgba(255,255,255,0.95);
  color: #005a9e;
  border: 1.5px solid rgba(255,255,255,0.8);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.btn-primary:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }

/* after scroll — solid brand button */
.nav.scrolled .btn-primary {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(0,174,237,0.35);
}
.nav.scrolled .btn-primary:hover { filter: brightness(1.08); box-shadow: 0 6px 20px rgba(0,174,237,0.45); }

.btn-outline {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.22); border-color: #fff; }

/* after scroll — adjust per theme */
.nav.scrolled .btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
  backdrop-filter: none;
}
.nav.scrolled .btn-outline:hover { background: rgba(0,174,237,0.08); }

/* light mode scrolled nav */
[data-theme="light"] .nav.scrolled .btn-outline { color: var(--brand2); border-color: var(--brand2); }
[data-theme="light"] .nav.scrolled .btn-outline:hover { background: rgba(0,87,183,0.08); }

.btn-hero-primary {
  background: #fff;
  color: var(--brand2);
  padding: 14px 30px;
  font-size: 14px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.btn-hero-primary svg { color: var(--brand); }
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.3); }

.btn-hero-outline {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 14px 30px;
  font-size: 14px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.22); }
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ── */
.nav {
  --scroll-progress: 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.28s, box-shadow 0.28s, border-color 0.28s;
}
.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--nav-border), 0 12px 36px rgba(0,0,0,0.08);
}
.nav.compact {
  box-shadow: 0 1px 0 var(--nav-border), 0 18px 44px rgba(0,0,0,0.1);
}
.nav-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  pointer-events: none;
}
.nav.scrolled .nav-progress {
  background: rgba(0,174,237,0.08);
}
.nav-progress-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #00c2ff 0%, #00aeed 35%, #0057b7 100%);
  transform-origin: left center;
  transform: scaleX(var(--scroll-progress));
  transition: transform 0.12s linear;
}
.nav-inner {
  position: relative;
  z-index: 1002;
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: padding 0.24s ease, gap 0.24s ease;
}
.nav.compact .nav-inner {
  padding: 10px 24px;
  gap: 18px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  transition: height 0.24s ease, transform 0.24s ease;
}
.nav.compact .nav-logo-img {
  height: 50px;
  transform: translateY(-1px);
}
/* Hero (no scroll): always white/dark logo regardless of theme */
.logo-dark  { display: block; }
.logo-light { display: none; }

/* After scroll: theme-appropriate */
[data-theme="light"] .nav.scrolled .logo-dark  { display: none; }
[data-theme="light"] .nav.scrolled .logo-light { display: block; }
[data-theme="dark"]  .nav.scrolled .logo-dark  { display: block; }
[data-theme="dark"]  .nav.scrolled .logo-light { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  transition: padding 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.nav.scrolled .nav-links {
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
[data-theme="light"] .nav.scrolled .nav-links {
  background: rgba(255,255,255,0.7);
  border-color: rgba(0,87,183,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}
.nav.compact .nav-links {
  padding: 3px;
}
.nav-link {
  position: relative;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: 'BPGNino', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.35);
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.12); }
.nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 8px 20px rgba(0,0,0,0.16);
}
.nav-link.active::after {
  opacity: 0.58;
  transform: scaleX(1);
}

/* after scroll — nav has solid bg, adjust link color per theme */
.nav.scrolled .nav-link { color: var(--text-muted); text-shadow: none; }
.nav.scrolled .nav-link:hover { color: var(--brand); background: rgba(0,174,237,0.08); }
.nav.scrolled .nav-link.active {
  color: var(--brand);
  background: rgba(0,174,237,0.12);
  box-shadow: inset 0 0 0 1px rgba(0,174,237,0.12), 0 10px 24px rgba(0,87,183,0.12);
}
.nav.compact .nav-link {
  padding: 6px 12px;
  font-size: 11px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.24s ease;
}
.nav.compact .nav-actions {
  gap: 6px;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 6px;
  position: relative;
  z-index: 1002;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s;
}
/* hero area: white lines. After scroll: use text color */
.nav.scrolled .nav-burger span { background: var(--text); }
/* middle stripe always brand color */
.nav-burger .burger-mid { background: #00aeed !important; }
/* open state — X shape */
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav.compact .theme-btn {
  width: 34px;
  height: 34px;
}
.nav.compact .nav-actions .btn {
  padding: 9px 16px;
  font-size: 12px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--hero-gradient);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 108px 0 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  transition: opacity 0.24s ease;
}
.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.22) 0, rgba(255,255,255,0.22) 1.35px, transparent 1.9px);
  background-size: 56px 56px;
}
.hero-grid.is-enhanced {
  opacity: 0;
}
.hero-grid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.24s ease;
}
.hero-grid-canvas.is-active {
  opacity: 1;
}
.hero-grid-glow {
  mix-blend-mode: screen;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, transparent 70%);
  top: -200px; right: -150px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,24,68,0.62) 0%, transparent 70%);
  bottom: -120px; left: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 6px 16px;
  font-family: 'BPGNino', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(34px, 5vw, 56px);
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: rgba(255,255,255,0.75);
}
.hero-subtitle {
  font-family: 'BPGArial', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 18px 0;
  backdrop-filter: blur(10px);
  width: fit-content;
}
.hero-stat { text-align: center; padding: 0 28px; }
.hero-stat-value {
  font-size: 28px;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-family: 'BPGArial', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}
.hero-stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.18);
}

/* ── PHONE MOCKUP ── */
.hero-mockup {
  position: absolute;
  right: max(3%, 24px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}
.phone-frame {
  --phone-shell: linear-gradient(160deg, #4d5563 0%, #1c212b 28%, #697283 62%, #151920 100%);
  --phone-button: #646d7d;
  --phone-inner-bezel: rgba(9,14,22,0.86);
  width: 292px;
  padding: 10px 10px 14px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0.08) 18%, rgba(255,255,255,0) 34%),
    var(--phone-shell);
  border-radius: 52px;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    0 56px 120px rgba(0,0,0,0.5),
    0 20px 40px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -4px 10px rgba(0,0,0,0.28);
  overflow: visible;
  position: relative;
  isolation: isolate;
  pointer-events: auto;
}
.phone-frame::before,
.showcase-phone::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 46px;
  background: linear-gradient(150deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 30%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.16),
    inset 0 0 0 10px rgba(255,255,255,0.04);
  pointer-events: none;
  z-index: 0;
}
.phone-frame::after,
.showcase-phone::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 116px;
  width: 4px;
  height: 64px;
  border-radius: 0 6px 6px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.32) 0%, var(--phone-button) 46%, rgba(15,17,22,0.95) 100%);
  box-shadow: -1px 0 0 rgba(255,255,255,0.12);
  pointer-events: none;
  z-index: 0;
}
.phone-notch {
  width: 110px;
  height: 28px;
  background: linear-gradient(180deg, #1a1d22 0%, #050608 100%);
  border-radius: 18px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 2;
  box-shadow:
    inset 0 -1px 0 rgba(255,255,255,0.07),
    0 2px 5px rgba(0,0,0,0.4);
}
.phone-notch::before,
.sp-notch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
}
.phone-notch::after,
.sp-notch::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #7dd3fc 0%, #13213c 42%, #02060d 75%);
  box-shadow: 0 0 0 2px rgba(10,12,16,0.85);
}
.phone-screen {
  background: #08111d;
  min-height: 552px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 36px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    0 0 0 1px var(--phone-inner-bezel);
  z-index: 1;
}
.phone-screen::before,
.sp-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 14%, rgba(255,255,255,0) 82%, rgba(255,255,255,0.06) 100%);
  pointer-events: none;
  z-index: 2;
}
.phone-screen > *,
.sp-screen > * {
  position: relative;
  z-index: 1;
}

/* slider banner */
.mock-slider {
  width: 100%;
  height: 104px;
  overflow: hidden;
  flex-shrink: 0;
}
.mock-slider img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* header with real logo */
.mock-real-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px 7px;
  background: #111;
  flex-shrink: 0;
}
.mock-real-logo {
  width: 60px; height: 28px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 3px 5px;
  flex-shrink: 0;
}
.mock-real-meta { flex: 1; overflow: hidden; }
.mock-real-name {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-real-addr {
  font-size: 8px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* category pills */
.mock-cats-real {
  display: flex;
  gap: 6px;
  padding: 7px 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.mock-pill {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1e1e1e;
  border-radius: 10px;
  padding: 4px 9px;
  font-size: 8px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  border: 1px solid #2a2a2a;
  font-family: 'BPGArial', sans-serif;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.mock-pill:hover {
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.16);
}
.mock-pill:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,174,237,0.28);
}
.mock-pill.active {
  background: linear-gradient(135deg, #00aeed, #0057b7);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
}

/* real product cards grid */
.mock-grid-real {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 0 10px;
  flex: 1;
  overflow: hidden;
}
.mock-real-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  animation: mockCardIn 0.24s ease both;
}
.mock-real-card img {
  width: 100%; height: 66px;
  object-fit: cover;
}
.mock-real-card-body {
  padding: 6px 7px 7px;
}
.mock-real-card-name {
  font-size: 7.5px;
  color: #e0e0e0;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mock-real-card-price {
  font-size: 8.5px;
  color: #00aeed;
  font-weight: 700;
}
@keyframes mockCardIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* cart bar */
.mock-cart {
  background: linear-gradient(135deg, #00aeed, #0057b7);
  margin: 6px 10px 10px;
  border-radius: 12px;
  padding: 8px 10px;
  flex-shrink: 0;
}
.mock-cart-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
}
.mock-cart-label {
  flex: 1;
  color: #fff;
  font-size: 8px;
  font-weight: 600;
}
.mock-cart-btn {
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-size: 7.5px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 7px;
  white-space: nowrap;
}

.phone-glow {
  position: absolute;
  bottom: -48px; left: 50%;
  transform: translateX(-50%);
  width: 230px; height: 88px;
  background: radial-gradient(ellipse, rgba(0,174,237,0.5) 0%, transparent 70%);
  filter: blur(28px);
}

/* ── SECTION HEADS ── */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head-left {
  text-align: left;
  margin-bottom: 40px;
}
.section-head-left .section-tag { margin-bottom: 16px; }
.section-head-left .section-title { margin-bottom: 12px; }
.section-head-left .section-sub {
  margin: 0;
  max-width: 440px;
}
.section-tag {
  display: inline-block;
  background: rgba(0,174,237,0.1);
  color: var(--brand);
  font-family: 'BPGNino', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(0,174,237,0.2);
}
.section-title {
  font-size: clamp(24px, 4vw, 36px);
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-sub {
  font-family: 'BPGArial', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ── HOW IT WORKS ── */
.how-section { padding: 96px 0; background: var(--bg2); transition: background 0.3s; }

/* split layout */
.how-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.how-phone-col {
  display: flex;
  justify-content: center;
}

/* step list (new vertical style) */
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.step-badge {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-family: 'BPGNino', sans-serif;
  font-size: 13px;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,174,237,0.35);
}
.step-badge-2 { background: linear-gradient(135deg,#0057b7,#00aeed); }
.step-badge-3 { background: linear-gradient(135deg,#006d97,#0057b7); }
.step-connector {
  width: 2px; height: 32px;
  background: var(--border);
  margin-left: 19px;
}
.step-title { font-family: 'BPGNino', sans-serif; font-size: 15px; color: var(--text); margin-bottom: 6px; }
.step-desc  { font-family: 'BPGArial', sans-serif; font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── FEATURES ── */
.features-section { padding: 96px 0; transition: background 0.3s; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 28px;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,174,237,0.35);
}
.feature-card-lg { grid-column: span 2; }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }
.fi-blue   { background: rgba(0,174,237,0.12); color: var(--brand); }
.fi-blue2  { background: rgba(0,87,183,0.12);  color: var(--brand2); }
.fi-green  { background: rgba(16,185,129,0.12); color: #10b981; }
.fi-orange { background: rgba(245,158,11,0.12); color: #f59e0b; }
.fi-pink   { background: rgba(236,72,153,0.12); color: #ec4899; }
.fi-teal   { background: rgba(0,174,237,0.08);  color: var(--brand); }
.feature-title { font-size: 15px; color: var(--text); margin-bottom: 10px; }
.feature-desc  { font-family: 'BPGArial', sans-serif; font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.feature-tag {
  display: inline-block;
  background: rgba(0,174,237,0.1);
  color: var(--brand);
  font-family: 'BPGNino', sans-serif;
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 10px;
}

/* ── SHOWCASE ROWS ── */
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--border);
}
.showcase-row-rev { direction: rtl; }
.showcase-row-rev > * { direction: ltr; }

.showcase-phone-wrap {
  display: flex;
  justify-content: center;
  padding-bottom: 18px;
}

/* Shared shell styling for the marketing phone mockups. */
.showcase-phone {
  --phone-shell: linear-gradient(160deg, #535c69 0%, #1d222c 28%, #748093 62%, #151920 100%);
  --phone-button: #687183;
  --phone-inner-bezel: rgba(9,14,22,0.82);
  width: 278px;
  padding: 10px 10px 14px;
  border-radius: 52px;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.08) 18%, rgba(255,255,255,0) 34%),
    var(--phone-shell);
  box-shadow:
    0 42px 100px rgba(0,0,0,0.34),
    0 16px 32px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -4px 10px rgba(0,0,0,0.2);
  overflow: visible;
  position: relative;
  flex-shrink: 0;
  isolation: isolate;
}
.showcase-phone-dark {
  --phone-shell: linear-gradient(160deg, #535c69 0%, #1d222c 28%, #748093 62%, #151920 100%);
  --phone-button: #687183;
  --phone-inner-bezel: rgba(9,14,22,0.82);
}
.showcase-phone-light {
  --phone-shell: linear-gradient(160deg, #e4e9f1 0%, #fcfdff 28%, #c6cedc 62%, #adb7c7 100%);
  --phone-button: #c7cfdd;
  --phone-inner-bezel: rgba(6,10,18,0.55);
  border-color: rgba(255,255,255,0.62);
  box-shadow:
    0 42px 100px rgba(0,87,183,0.16),
    0 16px 32px rgba(13,30,62,0.12),
    inset 0 1px 0 rgba(255,255,255,0.78),
    inset 0 -4px 10px rgba(63,77,102,0.14);
}
.sp-notch {
  width: 110px;
  height: 28px;
  border-radius: 18px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #1a1d22 0%, #050608 100%);
  box-shadow:
    inset 0 -1px 0 rgba(255,255,255,0.07),
    0 2px 5px rgba(0,0,0,0.4);
}

.sp-screen {
  background: #0d1117;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 452px;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    0 0 0 1px var(--phone-inner-bezel);
  z-index: 1;
}
.sp-screen-light {
  background: #f8f9fb;
}

/* product detail (how section) */
.sp-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px 6px;
}
.sp-back, .sp-fav {
  font-size: 16px;
  color: var(--brand);
  cursor: pointer;
  width: 24px; text-align: center;
}
.sp-top-title {
  font-size: 10.5px;
  font-weight: 700;
  color: #333;
}
.sp-screen-light .sp-top-title { color: #222; }
.sp-product-img {
  border-radius: 18px;
  overflow: hidden;
  height: 150px;
}
.sp-product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.sp-product-body { padding: 6px 3px 2px; }
.sp-product-badge {
  display: inline-block;
  background: rgba(0,174,237,0.12);
  color: var(--brand);
  font-size: 8px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 6px;
}
.sp-product-name {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}
.sp-screen:not(.sp-screen-light) .sp-product-name { color: #eee; }
.sp-product-desc {
  font-size: 8.5px;
  color: #666;
  line-height: 1.4;
  margin-bottom: 7px;
}
.sp-screen:not(.sp-screen-light) .sp-product-desc { color: #7ab8d4; }
.sp-stars { font-size: 9px; color: #f59e0b; margin-bottom: 9px; }
.sp-stars span { color: #888; font-size: 8px; }
.sp-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sp-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--brand);
}
.sp-add-btn {
  background: var(--gradient);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 10px;
}

/* order screen (showcase row 1) */
.sp-order-header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 9px;
  margin-bottom: 4px;
}
.sp-order-logo {
  width: 54px; height: 24px;
  background: #fff;
  border-radius: 6px;
  display: grid; place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.sp-order-logo img { width: 100%; height: 100%; object-fit: contain; padding: 2px; }
.sp-order-title {
  font-size: 10.5px;
  font-weight: 700;
  color: #eee;
}
.sp-order-items { display: flex; flex-direction: column; gap: 7px; }
.sp-order-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 7px 8px;
}
.sp-order-item img {
  width: 38px; height: 38px;
  border-radius: 9px;
  object-fit: cover;
  flex-shrink: 0;
}
.sp-order-item-info { flex: 1; overflow: hidden; }
.sp-order-item-name {
  font-size: 8.5px;
  color: #ddd;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sp-order-item-qty { font-size: 7.5px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.sp-order-item-price { font-size: 9px; font-weight: 700; color: var(--brand); flex-shrink: 0; }
.sp-order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 8px 2px 0;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
}
.sp-order-total-price { font-size: 14px; font-weight: 800; color: var(--brand); }
.sp-order-confirm-btn {
  background: var(--gradient);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  border-radius: 12px;
}
.sp-tg-notif {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,136,204,0.12);
  border: 1px solid rgba(0,136,204,0.25);
  border-radius: 11px;
  padding: 8px 9px;
  margin-top: 3px;
}
.sp-tg-icon { font-size: 16px; }
.sp-tg-title { font-size: 8.5px; font-weight: 700; color: #60b8ff; }
.sp-tg-sub   { font-size: 7.5px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ratings screen (showcase row 2) */
.sp-rating-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 6px 3px 10px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  margin-bottom: 5px;
}
.sp-rating-logo {
  height: 26px; width: auto;
  background: #fff;
  border-radius: 7px;
  padding: 3px 7px;
  object-fit: contain;
}
.sp-rating-name { font-size: 9px; font-weight: 700; color: #222; }
.sp-rating-overall {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.sp-rating-big { font-size: 28px; font-weight: 800; color: var(--brand2); line-height: 1; }
.sp-stars-row { font-size: 11px; color: #f59e0b; }
.sp-rating-count { font-size: 8px; color: #999; margin-top: 2px; }
.sp-rating-bars { display: flex; flex-direction: column; gap: 5px; padding: 0 2px; }
.sp-bar-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 8px;
  color: #666;
}
.sp-bar-row span:first-child { width: 18px; flex-shrink: 0; color: #444; }
.sp-bar-row span:last-child  { width: 24px; text-align: right; flex-shrink: 0; }
.sp-bar { flex: 1; height: 6px; background: #eee; border-radius: 4px; overflow: hidden; }
.sp-bar-fill {
  width: calc(var(--bar-fill, 0) * 1%);
  height: 100%;
  background: var(--gradient);
  border-radius: 3px;
}
.sp-review-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 9px 10px;
  margin-top: 3px;
}
.sp-review-top { display: flex; align-items: center; gap: 7px; margin-bottom: 5px; }
.sp-review-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.sp-review-author { font-size: 9px; font-weight: 700; color: #222; }
.sp-review-stars  { font-size: 9px; color: #f59e0b; }
.sp-review-text   { font-size: 8px; color: #555; line-height: 1.45; }
.sp-write-btn {
  text-align: center;
  background: rgba(0,174,237,0.08);
  border: 1px solid rgba(0,174,237,0.2);
  color: var(--brand);
  font-size: 9px;
  font-weight: 700;
  padding: 9px;
  border-radius: 11px;
  margin-top: 5px;
}

/* glow under phones */
.sp-glow {
  position: absolute;
  bottom: -34px; left: 50%;
  transform: translateX(-50%);
  width: 210px; height: 70px;
  background: radial-gradient(ellipse, rgba(0,174,237,0.5) 0%, transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}
.sp-glow-light {
  background: radial-gradient(ellipse, rgba(0,87,183,0.25) 0%, transparent 70%);
}

/* showcase text col */
.showcase-text { display: flex; flex-direction: column; gap: 0; }
.showcase-title {
  font-family: 'BPGNino', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}
.showcase-desc {
  font-family: 'BPGArial', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.showcase-features { display: flex; flex-direction: column; gap: 10px; }
.showcase-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'BPGArial', sans-serif;
  font-size: 13px;
  color: var(--text);
}
.sf-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(0,174,237,0.5);
}

/* ── PRICING ── */
.pricing-section { padding: 96px 0; background: var(--bg2); transition: background 0.3s; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
  border-radius: 22px;
  padding: 32px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card-featured {
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 12px 48px rgba(0,174,237,0.3);
  transform: scale(1.025);
}
.pricing-card-featured:hover { transform: scale(1.025) translateY(-4px); }
.pricing-popular {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--brand2);
  font-family: 'BPGNino', sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.pricing-header { margin-bottom: 28px; }
.pricing-name {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.pricing-card-featured .pricing-name { color: rgba(255,255,255,0.7); }
.pricing-price {
  font-size: 46px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
.pricing-card-featured .pricing-price { color: #fff; }
.pricing-currency { font-size: 22px; margin-top: 8px; }
.pricing-period { font-family: 'BPGArial', sans-serif; font-size: 13px; color: var(--text-muted); }
.pricing-period span { color: var(--brand); font-weight: 700; }
.pricing-card-featured .pricing-period { color: rgba(255,255,255,0.6); }
.pricing-card-featured .pricing-period span { color: rgba(255,255,255,0.9); }
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'BPGArial', sans-serif;
  font-size: 13px;
  color: var(--text);
}
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.9); }
.pricing-features li svg { width: 15px; height: 15px; stroke: var(--brand); flex-shrink: 0; }
.pricing-card-featured .pricing-features li svg { stroke: rgba(255,255,255,0.9); }
.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  font-family: 'BPGNino', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline-pricing {
  border: 1.5px solid var(--card-border);
  color: var(--text);
  background: transparent;
}
.btn-outline-pricing:hover { border-color: var(--brand); color: var(--brand); background: rgba(0,174,237,0.07); }
.btn-primary-pricing {
  background: #fff;
  color: var(--brand2);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.btn-primary-pricing:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.pricing-note {
  text-align: center;
  font-family: 'BPGArial', sans-serif;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 28px;
}

/* ── FAQ ── */
.faq-section { padding: 96px 0; transition: background 0.3s; }
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.faq-open { border-color: var(--brand); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  text-align: left;
}
.faq-q span {
  font-family: 'BPGNino', sans-serif;
  font-size: 14px;
  color: var(--text);
}
.faq-q:hover span { color: var(--brand); }
.faq-arrow {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--text-dim);
  stroke: currentColor;
}
.faq-arrow.rotated { transform: rotate(180deg); color: var(--brand); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a.open { max-height: 280px; }
.faq-a p {
  font-family: 'BPGArial', sans-serif;
  padding: 0 22px 18px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── CTA BANNER ── */
.cta-section { padding: 48px 0; }
.cta-card {
  background: var(--gradient);
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-blob-1, .cta-blob-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.cta-blob-1 { width: 400px; height: 400px; background: rgba(255,255,255,0.15); top: -200px; right: -80px; }
.cta-blob-2 { width: 300px; height: 300px; background: rgba(0,30,80,0.35);    bottom: -150px; left: 40px; }
.cta-content { position: relative; z-index: 1; }
.cta-title { font-size: clamp(24px, 4vw, 36px); color: #fff; margin-bottom: 12px; }
.cta-sub { font-family: 'BPGArial', sans-serif; font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 28px; }

/* ── CONTACT ── */
.contact-section { padding: 96px 0; background: var(--bg2); transition: background 0.3s; }
.contact-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 16px 18px;
  transition: border-color 0.2s;
  text-decoration: none !important;
  color: inherit;
  cursor: pointer;
}
.contact-item * { text-decoration: none !important; }
.contact-item:hover { border-color: var(--brand); }
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(0,174,237,0.1);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--brand);
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-icon-green   { background: rgba(16,185,129,0.1); color: #10b981; }
.contact-icon-tg      { background: rgba(0,136,204,0.1);  color: #0088cc; }
.contact-icon-fb      { background: rgba(24,119,242,0.1); color: #1877f2; }
.contact-label { font-family: 'BPGNino', sans-serif; font-size: 11px; color: var(--text-dim); margin-bottom: 2px; }
.contact-value { font-family: 'BPGArial', sans-serif; font-size: 13px; font-weight: 700; color: var(--text); text-decoration: none; }
.contact-value:hover { color: var(--brand); }
.admin-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,174,237,0.08);
  border: 1px solid rgba(0,174,237,0.2);
  color: var(--brand);
  border-radius: 16px;
  padding: 14px 18px;
  font-family: 'BPGNino', sans-serif;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: 4px;
}
.admin-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.admin-link:hover { background: var(--brand); color: #fff; }

.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 36px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: 'BPGNino', sans-serif; font-size: 12px; color: var(--text); }
.form-input {
  width: 100%;
  padding: 11px 14px;
  background: var(--input-bg);
  border: 1.5px solid var(--card-border);
  border-radius: 10px;
  font-family: 'BPGArial', sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
  resize: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,174,237,0.12);
}
.form-input::placeholder { color: var(--text-dim); }
.form-success {
  display: none;
  text-align: center;
  padding: 12px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 10px;
  font-family: 'BPGNino', sans-serif;
  font-size: 13px;
  color: #10b981;
}
.form-success.is-visible { display: block; }
.contact-form .btn.is-hidden { display: none; }

/* ── FOOTER ── */
.footer { background: #040c16; padding: 56px 0 24px; transition: background 0.3s; }
[data-theme="light"] .footer { background: #0a1628; }
.footer-inner {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-logo-img { height: 44px; width: auto; margin-bottom: 12px; }
.footer-tagline { font-family: 'BPGArial', sans-serif; font-size: 13px; color: #4a6282; margin-top: 8px; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 11px; color: #3d6b88; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { font-family: 'BPGArial', sans-serif; font-size: 13px; color: #5a7a99; text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  border-top: 1px solid #0d1f35;
  padding-top: 20px;
  font-family: 'BPGArial', sans-serif;
  font-size: 12px;
  color: #2d4a65;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-mockup { display: none; }
  .hero-content { max-width: 100%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-lg { grid-column: span 2; }
}
/* mobile button styles (hidden on desktop) */
.mob-menu-btns  { display: none; }
.mob-menu-logo  { display: none; }
.mob-menu-close { display: none; }
.mob-logo-dark  { display: block; }
.mob-logo-light { display: none; }
[data-theme="light"] .mob-logo-dark  { display: none; }
[data-theme="light"] .mob-logo-light { display: block; }

/* Nav solid bg when mobile menu is open (hero = transparent normally) */
.nav.nav-open {
  background: rgba(5,13,24,0.96) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  box-shadow: 0 2px 0 rgba(0,174,237,0.18) !important;
}
/* Keep the mobile menu shell consistent regardless of current theme. */
.nav.nav-open .logo-dark  { display: block; }
.nav.nav-open .logo-light { display: none; }
.nav.nav-open .mob-logo-dark  { display: block !important; }
.nav.nav-open .mob-logo-light { display: none !important; }
.nav.nav-open .nav-progress { opacity: 0; }
.nav.nav-open .nav-logo-img {
  height: 58px !important;
  transform: none !important;
}
.nav.nav-open .nav-link { color: rgba(232,244,253,0.82) !important; text-shadow: none !important; }
.nav.nav-open .nav-link.active {
  color: #fff !important;
  background: rgba(0,174,237,0.14) !important;
  box-shadow: inset 0 0 0 1px rgba(0,174,237,0.4) !important;
}
.nav.nav-open .theme-btn {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.16) !important;
  color: #fff !important;
  backdrop-filter: none !important;
}
.nav.nav-open .nav-burger span { background: #fff !important; }
.nav.nav-open .nav-burger .burger-mid { background: #00aeed !important; }

@media (max-width: 768px) {
  .nav.nav-open {
    z-index: 1400;
  }
  .nav-links { display: none; }
  .nav-actions .btn-outline,
  .nav-actions .btn-primary { display: none; }
  .nav-burger { display: flex; }

  /* center logo + theme btn + burger on mobile */
  .nav-inner {
    justify-content: center;
    gap: 16px;
    padding: 12px 20px;
  }
  .nav-logo { margin: 0 auto 0 0; }
  .nav-actions { margin-left: auto; gap: 10px; }

  .nav.nav-open .nav-inner {
    justify-content: center;
    gap: 16px;
    padding: 12px 20px;
    z-index: 1402;
  }
  .nav.nav-open .nav-actions {
    margin-left: auto;
    gap: 10px;
  }

  .nav.nav-open .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed !important;
    inset: 0 !important;
    width: 100vw;
    height: 100dvh;
    min-height: 100dvh;
    background: linear-gradient(180deg, #07111d 0%, #091827 100%) !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    z-index: 1401 !important;
    padding: 102px 24px 34px !important;
    overflow-y: auto;
    overflow-x: hidden;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    isolation: isolate;
  }
  .nav.nav-open .nav-links.open::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
      radial-gradient(circle at top center, rgba(0,174,237,0.12) 0%, transparent 32%),
      linear-gradient(180deg, #07111d 0%, #091827 100%);
    z-index: -1;
  }
  .nav.nav-open .nav-links.open > * {
    position: relative;
    z-index: 1;
  }
  .nav.nav-open .nav-links.open .mob-menu-close {
    display: grid;
    place-items: center;
    position: absolute;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.92);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  .nav.nav-open .nav-links.open .mob-menu-close:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(0,174,237,0.34);
    transform: rotate(90deg);
  }
  .nav.nav-open .nav-links.open .mob-menu-close svg {
    width: 18px;
    height: 18px;
  }
  /* logo inside menu */
  .nav.nav-open .nav-links.open .mob-menu-logo {
    display: flex;
    justify-content: center;
    padding: 0 0 22px;
    margin-bottom: 18px;
    width: 100%;
    max-width: 320px;
    align-self: center;
    border-bottom: 1px solid rgba(0,174,237,0.28);
  }
  .nav.nav-open .nav-links.open .mob-menu-logo img {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
  }
  .nav.nav-open .nav-links.open .nav-link {
    font-size: 17px;
    padding: 16px 20px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    align-self: center;
    border-radius: 18px;
    color: rgba(232,244,253,0.86);
    text-shadow: none;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    margin-bottom: 10px;
  }
  .nav.nav-open .nav-links.open .nav-link:hover {
    background: rgba(0,174,237,0.08);
    color: #fff;
    border-color: rgba(0,174,237,0.22);
  }
  .nav.nav-open .nav-links.open .nav-link.active {
    color: #fff;
    background: rgba(0,174,237,0.12);
    border-color: rgba(0,174,237,0.42);
    box-shadow: inset 0 0 0 1px rgba(0,174,237,0.18), 0 8px 24px rgba(0,87,183,0.18);
  }
  [data-theme="light"] .nav.nav-open .nav-links.open .nav-link.active {
    border-color: rgba(125,211,252,0.55);
  }
  .nav.nav-open .nav-links.open .nav-link::after {
    display: none;
  }

  .mob-menu-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
    width: 100%;
    max-width: 320px;
    align-self: center;
  }
  .btn-mob-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 13px 20px;
    border-radius: 16px;
    font-family: 'BPGNino', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(0,174,237,0.48);
    color: #7dd3fc;
    background: rgba(255,255,255,0.03);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    transition: all 0.2s;
  }
  .btn-mob-outline:hover {
    background: rgba(0,174,237,0.1);
    border-color: rgba(125,211,252,0.68);
    color: #fff;
  }
  .btn-mob-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 13px 20px;
    border-radius: 16px;
    font-family: 'BPGNino', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 10px 24px rgba(0,174,237,0.28);
    transition: all 0.2s;
  }
  .btn-mob-primary:hover { filter: brightness(1.08); }
  .steps-grid { flex-direction: column; align-items: stretch; }
  .step-card { max-width: 100%; }
  .step-arrow { display: none; }
  /* how split → stack */
  .how-split { grid-template-columns: 1fr; gap: 40px; }
  .how-phone-col { order: -1; }
  /* showcase rows → stack */
  .showcase-row { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .showcase-row-rev { direction: ltr; }
  .showcase-row-rev .showcase-phone-wrap { order: -1; }
  .showcase-phone { width: 240px; }
  .showcase-phone-wrap { order: -1; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-lg { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card-featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; padding: 16px 20px; gap: 0; }
  .hero-stat { padding: 12px 0; }
  .hero-stat-divider { width: 100%; height: 1px; }
  .cta-card { padding: 40px 20px; border-radius: 20px; }
  .hero { padding: 90px 0 56px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .how-section, .features-section, .pricing-section,
  .faq-section, .contact-section { padding: 64px 0; }
  .hero-title { font-size: 30px; }
  .showcase-phone { width: min(100%, 222px); padding: 8px 8px 12px; border-radius: 42px; }
  .sp-notch { width: 88px; height: 24px; margin-bottom: 8px; }
  .sp-screen { padding: 10px; min-height: 390px; border-radius: 30px; }
  .sp-product-img { height: 128px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-hero-primary,
  .hero-actions .btn-hero-outline { justify-content: center; }
  .hero-stats { width: 100%; }
  .nav-inner { padding: 12px 16px; }
}
