/* ── BRAND COLORS ─────────────────────────────────────────────
   Navy Dark  : #0D1321
   Navy       : #1A1A2E
   Blue       : #4D90D9
   Orange     : #F5A623
   White      : #FFFFFF
──────────────────────────────────────────────────────────── */

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

:root {
  --navy-dark : #0D1321;
  --navy      : #1A1A2E;
  --navy-mid  : #151C2E;
  --blue      : #4D90D9;
  --blue-dim  : rgba(77,144,217,0.18);
  --orange    : #F5A623;
  --gold      : #F6C453;
  --orange-dim: rgba(245,166,35,0.15);
  --white     : #FFFFFF;
  --white-dim : rgba(255,255,255,0.08);
  --white-80  : rgba(255,255,255,0.8);
  --white-50  : rgba(255,255,255,0.5);
  --white-20  : rgba(255,255,255,0.2);
  --white-10  : rgba(255,255,255,0.1);
  --radius    : 16px;
  --radius-sm : 10px;
  --shadow    : 0 4px 40px rgba(0,0,0,0.4);
  --trans     : all 0.3s ease;
}

html { scroll-behavior: smooth; }

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

.site-sparkle-field {
  position: fixed;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.site-sparkle {
  position: absolute;
  left: var(--sparkle-left);
  top: var(--sparkle-top);
  width: var(--sparkle-size);
  height: var(--sparkle-size);
  opacity: 0;
  filter: drop-shadow(0 0 5px rgba(246,196,83,.72));
  transform: scale(.35) rotate(0deg);
  animation: site-sparkle-twinkle var(--sparkle-duration) ease-in-out var(--sparkle-delay) infinite;
}
.site-sparkle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}
.site-sparkle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28%;
  height: 28%;
  border-radius: 50%;
  background: #FFE8A3;
  transform: translate(-50%, -50%);
}
@keyframes site-sparkle-twinkle {
  0%, 100% { opacity: 0; transform: scale(.35) rotate(0deg); }
  18% { opacity: .55; transform: scale(.8) rotate(24deg); }
  36% { opacity: .95; transform: scale(1.08) rotate(45deg); }
  55% { opacity: .38; transform: scale(.7) rotate(72deg); }
  72% { opacity: .8; transform: scale(.92) rotate(105deg); }
  88% { opacity: .12; transform: scale(.45) rotate(135deg); }
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.text-orange { color: var(--orange); }
.text-blue   { color: var(--blue); }
.mt-2 { margin-top: 28px; display: inline-flex; }

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,19,33,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--white-10);
  transition: var(--trans);
}
.nav.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,0.5); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 6px; font-size: 20px; font-weight: 900; letter-spacing: 2px; }
.brand-gps   { color: var(--white); }
.brand-map   { color: var(--blue); }
.brand-click { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 7px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--white-80);
  transition: var(--trans);
}
.nav-links a:hover { color: var(--white); background: var(--white-10); }
.nav-cta {
  background: var(--orange) !important; color: var(--navy-dark) !important;
  font-weight: 700 !important; border-radius: 8px;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-business {
  color: var(--orange) !important;
  border: 1px solid rgba(245,166,35,0.35);
}
.nav-business:hover { background: var(--orange-dim) !important; }
.mobile-business-link {
  color: var(--orange) !important;
  font-weight: 700;
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); }
.mobile-menu {
  display: flex; flex-direction: column;
  background: var(--navy);
  border-top: 1px solid transparent;
  overflow: hidden;
  max-height: 0; opacity: 0; padding: 0; visibility: hidden;
  transition: max-height .38s ease, opacity .28s ease, padding .38s ease, border-color .38s ease, visibility .38s;
}
.mobile-menu a {
  padding: 14px 24px; font-size: 16px; color: var(--white-80); border-bottom: 1px solid var(--white-10);
  opacity: 0; transform: translateY(-6px);
  transition: opacity .3s ease, transform .3s ease;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { max-height: 640px; opacity: 1; padding: 12px 0; border-top-color: var(--white-10); visibility: visible; }
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu.open a:nth-child(1) { transition-delay: .04s; }
.mobile-menu.open a:nth-child(2) { transition-delay: .08s; }
.mobile-menu.open a:nth-child(3) { transition-delay: .12s; }
.mobile-menu.open a:nth-child(4) { transition-delay: .16s; }
.mobile-menu.open a:nth-child(5) { transition-delay: .2s; }
.mobile-menu.open a:nth-child(6) { transition-delay: .24s; }

/* ── LANGUAGE SWITCHER ───────────────────────────────────────── */
.lang-switch-wrap { position: relative; margin-left: 4px; }
.lang-switch-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--white-80); background: var(--white-10);
  border: 1px solid var(--white-10); cursor: pointer;
  transition: var(--trans);
}
.lang-switch-btn:hover { color: var(--white); background: var(--white-10); border-color: var(--orange); }
.lang-switch-btn .caret { font-size: 10px; opacity: 0.7; }
.lang-switch-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  width: 220px; max-height: 320px; overflow-y: auto;
  background: var(--navy); border: 1px solid var(--white-10);
  border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  padding: 6px; list-style: none; z-index: 200;
  opacity: 0; transform: translateY(-8px) scale(.97);
  visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.lang-switch-menu.open { opacity: 1; transform: none; visibility: visible; pointer-events: auto; }
.lang-switch-menu li {
  padding: 9px 12px; border-radius: 8px;
  font-size: 14px; color: var(--white-80); cursor: pointer;
  transition: var(--trans);
}
.lang-switch-menu li:hover { background: var(--white-10); color: var(--white); }
.lang-switch-menu li.active { background: var(--orange); color: var(--navy-dark); font-weight: 700; }
.lang-switch-menu::-webkit-scrollbar { width: 6px; }
.lang-switch-menu::-webkit-scrollbar-thumb { background: var(--white-10); border-radius: 4px; }

.mobile-lang-item { padding: 14px 24px; border-bottom: 1px solid var(--white-10); }
.mobile-lang-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white-60, rgba(255,255,255,0.6)); margin-bottom: 8px; }
.mobile-lang-select {
  width: 100%; padding: 10px 12px; border-radius: 8px;
  background: var(--navy-dark); color: var(--white);
  border: 1px solid var(--white-10); font-size: 15px;
}

/* RTL support */
html[dir="rtl"] body { direction: rtl; }
html[dir="rtl"] .lang-switch-menu { right: auto; left: 0; }
html[dir="rtl"] .hero-cta,
html[dir="rtl"] .why-benefits,
html[dir="rtl"] .nav-links,
html[dir="rtl"] .trust-track { direction: rtl; }
html[dir="rtl"] .hero-stats { direction: ltr; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.18;
  animation: orb-float 8s ease-in-out infinite alternate;
}
.orb-1 { width: 500px; height: 500px; background: var(--blue);   top: -100px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: var(--orange); bottom: -80px; left: -80px; animation-delay: 2s; }
.orb-3 { width: 300px; height: 300px; background: var(--blue);   bottom: 20%; left: 40%;   animation-delay: 4s; }
@keyframes orb-float { from { transform: translateY(0) scale(1); } to { transform: translateY(-30px) scale(1.05); } }

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(77,144,217,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,144,217,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
}
.hero-logo-lockup {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.hero-logo-icon { border-radius: 14px; display: block; }
.hero-logo-title {
  font-size: 24px; font-weight: 900; letter-spacing: 1px;
  display: flex; gap: 6px;
}
.hero-logo-slogan {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  color: var(--white-80); margin-top: 2px;
}
.hero-logo-slogan .dot-sep { color: var(--orange); margin: 0 2px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white-10); border: 1px solid var(--white-20);
  padding: 6px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 500; color: var(--white-80);
  margin-bottom: 24px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-product-label {
  margin: 3px 0 13px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}
.hero-headline {
  font-size: clamp(40px, 5vw, 64px); font-weight: 900;
  line-height: 1.1; margin-bottom: 20px;
}
.hero-product-explainer {
  max-width: 520px;
  margin: -5px 0 17px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}
.hero-sub { font-size: 18px; color: var(--white-80); margin-bottom: 32px; max-width: 500px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-share-callout {
  display: flex; align-items: center; gap: 12px;
  width: min(100%, 475px);
  margin: -4px 0 27px;
  padding: 12px 14px;
  border: 1px solid rgba(245,166,35,0.5);
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(100deg, rgba(245,166,35,0.17), rgba(77,144,217,0.12));
  box-shadow: 0 8px 24px rgba(245,166,35,0.08), inset 0 0 0 1px rgba(255,255,255,0.03);
  text-decoration: none;
  transition: var(--trans);
}
.hero-share-callout:hover {
  border-color: var(--orange);
  background: linear-gradient(100deg, rgba(245,166,35,0.25), rgba(77,144,217,0.16));
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245,166,35,0.16);
}
.hero-share-icon {
  display: grid; place-items: center; flex: 0 0 40px;
  width: 40px; height: 40px;
  border-radius: 10px;
  color: var(--orange);
  background: rgba(245,166,35,0.14);
}
.hero-share-copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hero-share-copy strong { color: var(--orange); font-size: 13px; line-height: 1.3; }
.hero-share-copy span { color: var(--white-80); font-size: 11px; line-height: 1.35; }
.hero-share-arrow { margin-left: auto; color: var(--orange); font-size: 22px; line-height: 1; }

/* ── APP EXPLAINER ─────────────────────────────────────────── */
.app-explainer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(245,166,35,.11), transparent 28%),
    linear-gradient(135deg, #0b1729 0%, #101f37 52%, #0c1627 100%);
  border-top: 1px solid rgba(245,166,35,.15);
  border-bottom: 1px solid rgba(77,144,217,.18);
}
.app-explainer-heading { max-width: 760px; }
.app-explainer-heading .section-sub { margin-bottom: 0; }
.app-explainer-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: clamp(38px, 7vw, 90px);
  margin-top: 48px;
}
.app-explainer-visual { max-width: 340px; }
.app-explainer-image-frame {
  position: relative;
  width: min(100%, 300px);
  margin: 0 auto;
  padding: 9px;
  border: 1px solid rgba(245,166,35,.38);
  border-radius: 27px;
  background: linear-gradient(145deg, rgba(245,166,35,.16), rgba(77,144,217,.12));
  box-shadow: 0 28px 70px rgba(0,0,0,.38), 0 0 0 9px rgba(245,166,35,.035);
}
.app-explainer-image-frame img {
  width: 100%;
  border-radius: 19px;
  box-shadow: 0 14px 35px rgba(0,0,0,.42);
}
.app-explainer-live {
  position: absolute;
  right: -17px;
  top: 28px;
  padding: 8px 10px;
  border: 1px solid rgba(245,166,35,.45);
  border-radius: 7px;
  color: #ffe8a3;
  background: rgba(7,19,35,.9);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 10px 24px rgba(0,0,0,.26);
}
.app-explainer-caption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 18px auto 0;
  max-width: 300px;
  text-align: center;
}
.app-explainer-caption strong { color: var(--orange); font-size: 13px; }
.app-explainer-caption span { color: var(--white-50); font-size: 12px; line-height: 1.5; }
.app-steps { display: grid; gap: 15px; }
.app-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid rgba(77,144,217,.2);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.app-step:hover {
  transform: translateX(4px);
  border-color: rgba(245,166,35,.42);
  background: rgba(245,166,35,.07);
}
.app-step-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(245,166,35,.48);
  border-radius: 50%;
  color: var(--orange);
  background: rgba(245,166,35,.1);
  font-size: 15px;
  font-weight: 900;
}
.app-step h3 { margin: 0 0 4px; color: var(--white); font-size: 17px; }
.app-step p { margin: 0; color: var(--white-50); font-size: 13px; line-height: 1.55; }
.app-quick-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 44px;
}
.app-quick-feature {
  display: flex;
  gap: 10px;
  min-height: 92px;
  padding: 15px;
  border: 1px solid rgba(77,144,217,.17);
  border-radius: 12px;
  background: rgba(7,17,31,.38);
}
.app-quick-feature-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid rgba(245,166,35,.36);
  border-radius: 8px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .4px;
}
.app-quick-feature h3 { margin: 0 0 3px; color: var(--white); font-size: 12px; }
.app-quick-feature p { margin: 0; color: var(--white-50); font-size: 11px; line-height: 1.45; }

/* ── EXACT ADDRESS HIGHLIGHT ────────────────────────────────── */
.address-highlight {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #101d35 0%, #0d1729 55%, #14243d 100%);
  border-top: 1px solid rgba(77,144,217,0.18);
  border-bottom: 1px solid rgba(77,144,217,0.2);
}
.address-highlight::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -160px;
  border-radius: 50%;
  background: rgba(245,166,35,0.1);
  filter: blur(8px);
  pointer-events: none;
}
.address-highlight-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 70px;
}
.address-highlight-copy .section-title { max-width: 500px; }
.address-highlight-copy .section-sub { margin-bottom: 20px; }
.address-language-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white-50);
  font-size: 12px;
}
.address-language-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34,197,94,0.12), 0 0 12px rgba(34,197,94,0.5);
}
.address-proof-card {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  overflow: hidden;
  border: 1px solid rgba(77,144,217,0.35);
  border-radius: 18px;
  background: #091426;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.address-proof-map {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 85%, #3d604e 0 25%, transparent 26%), radial-gradient(ellipse at 80% 22%, #536c51 0 24%, transparent 25%), #2c5260;
}
.address-map-grid {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 30px 30px;
}
.address-map-road {
  position: absolute;
  height: 2px;
  background: rgba(238,207,125,.62);
  box-shadow: 0 0 0 1px rgba(18,36,51,.22);
}
.address-map-road-one { width: 125%; left: -10%; top: 58%; transform: rotate(-27deg); }
.address-map-road-two { width: 105%; left: -4%; top: 28%; transform: rotate(38deg); background: rgba(215,228,196,.48); }
.address-map-pin {
  position: absolute;
  left: 52%;
  top: 47%;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 4px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 0 0 9px rgba(245,166,35,.2), 0 7px 16px rgba(0,0,0,.35);
  font-size: 11px;
  transform: rotate(-45deg);
}
.address-map-pin::first-letter { transform: rotate(45deg); }
.address-coordinates {
  position: absolute;
  left: 13px;
  bottom: 13px;
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 7px;
  color: #e5f2ff;
  background: rgba(5,16,29,.72);
  font-size: 10px;
  line-height: 1.45;
  backdrop-filter: blur(5px);
}
.address-proof-content { padding: 25px 24px; }
.address-proof-label {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.address-proof-place { margin-bottom: 22px; color: var(--white); font-size: 19px; font-weight: 800; }
.address-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.address-fields > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 11px;
  border: 1px solid rgba(77,144,217,.2);
  border-radius: 9px;
  background: rgba(77,144,217,.08);
}
.address-fields > div:last-child { grid-column: span 2; }
.address-fields span { color: var(--white-50); font-size: 10px; }
.address-fields strong { color: #e8f3ff; font-size: 13px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: var(--trans); border: none; text-decoration: none;
}
.btn-primary { background: var(--orange); color: var(--navy-dark); }
.btn-primary:hover { background: #ffb63f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.35); }
.btn-ghost {
  background: var(--white-10); color: var(--white);
  border: 1px solid var(--white-20);
}
.btn-ghost:hover { background: var(--white-20); transform: translateY(-2px); }
.hero-desc { font-size: 13px; color: var(--white-50); margin-bottom: 36px; max-width: 480px; }
.hero-stats { display: flex; align-items: center; gap: 20px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 22px; font-weight: 800; color: var(--white); }
.stat-label { font-size: 11px; color: var(--white-50); }
.stat-sep { width: 1px; height: 36px; background: var(--white-20); }

/* PHONE SCREENSHOT */
.hero-phone { display: flex; justify-content: center; align-items: center; }
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone-screenshot {
  width: 280px; height: auto;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(77,144,217,0.15);
  display: block;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }
.phone-glow {
  position: absolute; bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 220px; height: 80px;
  background: var(--orange); filter: blur(50px); opacity: 0.18;
  animation: float 4s ease-in-out infinite;
}
.hero-scroll-indicator {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; font-size: 11px; color: var(--white-50); z-index: 1;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line { 0%{opacity:1} 100%{opacity:0; transform:translateY(10px)} }

/* ── TRUST TICKER ──────────────────────────────────────────── */
.trust {
  padding: 28px 0; background: var(--navy);
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  overflow: hidden;
}
.trust-label { text-align: center; font-size: 12px; color: var(--white-50); margin-bottom: 16px; letter-spacing: 1px; text-transform: uppercase; }
.trust-track-wrap { overflow: hidden; }
.trust-track {
  display: flex; width: max-content;
  animation: ticker 30s linear infinite;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 32px;
  font-size: 14px; font-weight: 500; color: var(--white-80);
  white-space: nowrap;
  border-right: 1px solid var(--white-10);
}

/* ── BUSINESS APP ENTRY POINT ───────────────────────────────── */
.business-entry {
  position: relative;
  overflow: hidden;
  padding: 38px 0;
  background: linear-gradient(105deg, #101d35 0%, #162b4a 48%, #1d2230 100%);
  border-bottom: 1px solid rgba(77,144,217,0.25);
}
.business-entry::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  right: -90px;
  top: -180px;
  border-radius: 50%;
  background: rgba(245,166,35,0.12);
  filter: blur(8px);
  pointer-events: none;
}
.business-entry-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.business-entry-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  white-space: nowrap;
}
.business-entry-mark strong { color: var(--orange); }
.business-entry-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34,197,94,0.12), 0 0 18px rgba(34,197,94,0.6);
}
.business-entry-copy h2 {
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 1.2;
  margin-bottom: 6px;
}
.business-entry-copy p {
  max-width: 600px;
  color: var(--white-50);
  font-size: 14px;
}
.business-entry-cta { white-space: nowrap; }

/* ── SECTION COMMON ────────────────────────────────────────── */
.section-badge {
  display: inline-block; padding: 5px 14px;
  border-radius: 20px; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px;
}
.section-badge.orange { background: var(--orange-dim); color: var(--orange); border: 1px solid rgba(245,166,35,0.3); }
.section-badge.blue   { background: var(--blue-dim);   color: var(--blue);   border: 1px solid rgba(77,144,217,0.3); }
.section-title { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.section-sub   { font-size: 17px; color: var(--white-50); max-width: 620px; margin-bottom: 56px; }

/* ── STAMP EXPLAINED ───────────────────────────────────────── */
.stamp-section { background: var(--navy); }

/* Floating-chip ring layout */
.stamp-ring {
  position: relative;
  width: 760px; height: 740px;
  margin: 0 auto 56px;
  overflow: visible;
}

/* SVG connector overlay */
.stamp-connector-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 4; overflow: visible;
}

/* Central screenshot */
.stamp-img-wrap {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.stamp-ring-img {
  width: 300px; height: auto;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(245,166,35,0.18);
  display: block;
}
.stamp-ring-glow {
  position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 70px;
  background: var(--orange); filter: blur(44px); opacity: 0.18;
  pointer-events: none;
}

/* Individual floating chips */
.sc {
  position: absolute;
  display: flex; align-items: flex-start; gap: 9px;
  background: rgba(13,19,33,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 10px 14px;
  z-index: 5;
  max-width: 162px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
  transition: var(--trans);
}
.sc:hover { border-color: rgba(255,255,255,0.22); transform: scale(1.03); }
.sc svg { flex-shrink: 0; margin-top: 2px; }
.sc-title { font-size: 12px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.sc-desc  { font-size: 11px; color: var(--white-50); line-height: 1.45; }

/* LEFT chip positions (top = SVG path start y − ~18px so chip center ≈ line start) */
.sc-gps-dot      { left: 0; top:  55px; }
.sc-top-controls { left: 0; top: 125px; }
.sc-stamp-frame  { left: 0; top: 295px; }
.sc-location     { left: 0; top: 362px; }
.sc-address      { left: 0; top: 432px; }

/* RIGHT chip positions */
.sc-zoom     { right: 0; top: 105px; }
.sc-coords   { right: 0; top: 355px; }
.sc-datetime { right: 0; top: 425px; }
.sc-minimap  { right: 0; top: 495px; }
.sc-logo     { right: 0; top: 565px; }

/* stamp pills */
.stamp-pills {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.stamp-pill {
  display: flex; align-items: center; gap: 7px;
  background: var(--white-dim); border: 1px solid var(--white-10);
  border-radius: 20px; padding: 7px 16px;
  font-size: 13px; font-weight: 500; color: var(--white-80);
  transition: var(--trans);
}
.stamp-pill:hover { border-color: var(--white-20); background: rgba(255,255,255,0.1); }
.pill-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.pill-dot.orange { background: var(--orange); }
.pill-dot.blue   { background: var(--blue); }
.pill-dot.green  { background: #22C55E; }
.pill-dot.purple { background: #A855F7; }

/* ── TEMPLATES ─────────────────────────────────────────────── */
.templates-section { background: var(--navy-dark); }

.tpl-group-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; color: var(--white-80);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 28px;
}
.tpl-group-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  animation: pulse 2s infinite;
}
.tpl-group-dot.orange { background: var(--orange); }
.tpl-group-dot.green  { background: #22C55E; }

/* ── Camera-preview template cards (3 across) */
.tpl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}
.tpl-card {
  background: var(--white-dim);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
  display: flex; flex-direction: column;
}
.tpl-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,166,35,0.35);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.tpl-phone-wrap {
  background: #0a0a0f;
  display: flex; justify-content: center; align-items: center;
  padding: 20px 24px 12px;
}
.tpl-phone-img {
  width: 100%; max-width: 200px;
  border-radius: 28px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

/* ── Saved-photo stamp cards (2 across) */
.tpl-saved-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}
.tpl-saved-card {
  background: var(--white-dim);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
  display: flex; flex-direction: row; /* horizontal layout */
  min-height: 440px;
}
.tpl-saved-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34,197,94,0.35);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.tpl-saved-phone-wrap {
  background: #0a0a0f;
  display: flex; justify-content: center; align-items: center;
  padding: 20px 18px;
  flex-shrink: 0;
  width: 260px;
}
.tpl-saved-img {
  width: 100%;
  max-width: 210px;
  border-radius: 28px;
  display: block;
  box-shadow: 0 12px 40px rgba(0,0,0,0.8);
}

/* Shared info panel */
.tpl-info {
  padding: 20px 22px 22px;
  flex: 1; display: flex; flex-direction: column; gap: 8px;
}
.tpl-name {
  font-size: 16px; font-weight: 800; color: var(--white);
}
.tpl-desc {
  font-size: 13px; color: var(--white-50); line-height: 1.6;
  flex: 1;
}
.tpl-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px;
}
.tpl-tag {
  font-size: 11px; font-weight: 600;
  background: var(--white-10); border: 1px solid var(--white-20);
  border-radius: 20px; padding: 4px 10px;
  color: var(--white-80);
}

/* ── Enhancement filters showcase */
.filters-showcase {
  background: var(--white-dim);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  min-height: 260px;
}
.filters-screens {
  background: #0a0a0f;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 12px; padding: 24px 20px;
  flex-shrink: 0;
}
.filters-img {
  width: 100%; max-width: 380px;
  border-radius: 14px;
  display: block;
  box-shadow: 0 8px 28px rgba(0,0,0,0.6);
}
.filters-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 4px 0;
  align-content: center;
}
.filter-chip {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--white-10);
  border-right: 1px solid var(--white-10);
  transition: var(--trans);
}
.filter-chip:hover { background: rgba(255,255,255,0.05); }
.filter-chip:nth-child(2n) { border-right: none; }
.filter-chip:nth-last-child(-n+2) { border-bottom: none; }
.filter-icon {
  font-size: 20px; line-height: 1; flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white-10); border-radius: 8px;
}
.filter-name { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.filter-sub  { font-size: 12px; color: var(--white-50); line-height: 1.45; }

/* Responsive */
@media (max-width: 900px) {
  .tpl-grid { grid-template-columns: 1fr 1fr; }
  .tpl-saved-phone-wrap { width: 200px; padding: 16px 12px; }
  .filters-showcase { grid-template-columns: 1fr; }
  .filters-screens { padding: 20px; }
}
@media (max-width: 700px) {
  /* Stack saved cards vertically on narrow screens */
  .tpl-saved-card { flex-direction: column; min-height: unset; }
  .tpl-saved-phone-wrap { width: 100%; padding: 20px 40px 12px; }
  .tpl-saved-img { max-width: 220px; }
}
@media (max-width: 640px) {
  .tpl-grid       { grid-template-columns: 1fr; }
  .tpl-saved-grid { grid-template-columns: 1fr; }
}

/* ── SETTINGS ──────────────────────────────────────────────── */
.settings-section { background: var(--navy); }

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

.setting-card {
  background: var(--white-dim);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: var(--trans);
}
.setting-card:hover {
  transform: translateY(-5px);
  border-color: var(--white-20);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}

.setting-screen-wrap {
  background: #0d1017;
  display: flex; justify-content: center; align-items: flex-start;
  padding: 16px 14px 0;
  overflow: hidden;
  height: 260px;
}
.setting-img {
  width: 100%;
  max-width: 170px;
  border-radius: 22px 22px 0 0;
  display: block;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
  object-fit: cover;
  object-position: top;
}

.setting-info {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 14px 16px;
  flex: 1;
}
.setting-icon {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.setting-name { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.setting-desc { font-size: 11px; color: var(--white-50); line-height: 1.5; }

@media (max-width: 1024px) { .settings-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .settings-grid { grid-template-columns: repeat(2, 1fr); } .setting-screen-wrap { height: 200px; } }
@media (max-width: 440px)  { .settings-grid { grid-template-columns: 1fr; } }

/* ── FEATURES ──────────────────────────────────────────────── */
.features { background: var(--navy-dark); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-main {
  background: linear-gradient(135deg, rgba(77,144,217,0.1), rgba(13,19,33,0.8));
  border: 1px solid rgba(77,144,217,0.25);
}
.feature-card {
  background: var(--white-dim); border: 1px solid var(--white-10);
  border-radius: var(--radius); padding: 28px;
  transition: var(--trans); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  opacity: 0; transition: var(--trans);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); border-color: var(--white-20); }
.feature-card:hover::before { opacity: 1; }
.feature-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.feature-icon-wrap.blue   { background: var(--blue-dim);   color: var(--blue); }
.feature-icon-wrap.orange { background: var(--orange-dim); color: var(--orange); }
.feature-num { font-size: 11px; font-weight: 700; color: var(--white-20); letter-spacing: 1px; margin-bottom: 8px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p  { font-size: 14px; color: var(--white-50); margin-bottom: 16px; line-height: 1.6; }
.feature-list    { display: flex; flex-direction: column; gap: 7px; }
.feature-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--white-80); }
.dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dot.blue   { background: var(--blue); }
.dot.orange { background: var(--orange); }
.feature-tagline {
  margin-top: 16px; padding: 10px 14px;
  background: var(--orange-dim); border-radius: 8px;
  font-size: 12px; color: var(--orange); font-weight: 600;
}
.offline-badge {
  display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: 20px;
  background: var(--orange-dim); color: var(--orange);
  font-size: 12px; font-weight: 700; margin-top: 12px;
  border: 1px solid rgba(245,166,35,0.3);
}

/* ── INDUSTRIES ────────────────────────────────────────────── */
.industries { background: var(--navy); }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry-card {
  background: var(--white-dim); border: 1px solid var(--white-10);
  border-radius: var(--radius); padding: 28px 22px; transition: var(--trans);
}
.industry-card:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: 0 8px 30px rgba(77,144,217,0.15); }
.industry-icon { font-size: 36px; margin-bottom: 14px; }
.industry-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.industry-card p  { font-size: 13px; color: var(--white-50); margin-bottom: 14px; }
.industry-card ul { display: flex; flex-direction: column; gap: 6px; }
.industry-card li { font-size: 13px; color: var(--white-80); padding-left: 14px; position: relative; }
.industry-card li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-size: 11px; top: 1px; }

/* ── WHY ───────────────────────────────────────────────────── */
.why { background: var(--navy-dark); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why .section-sub { margin-bottom: 32px; }
.why-benefits { display: flex; flex-direction: column; gap: 14px; margin-bottom: 8px; }
.why-item { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--white-80); }
.check { color: var(--orange); font-weight: 700; font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: var(--white-dim); border: 1px solid var(--white-10);
  border-radius: var(--radius); padding: 28px 22px;
  text-align: center; transition: var(--trans);
}
.stat-card:hover { transform: translateY(-3px); border-color: var(--white-20); }
.stat-card-num   { font-size: 36px; font-weight: 900; margin-bottom: 6px; }
.stat-card-label { font-size: 13px; color: var(--white-50); }

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials { background: var(--navy); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.testi-card {
  background: var(--white-dim); border: 1px solid var(--white-10);
  border-radius: var(--radius); padding: 28px; transition: var(--trans);
}
.testi-card:hover { transform: translateY(-4px); border-color: var(--blue); }
.testi-stars { color: var(--orange); font-size: 16px; margin-bottom: 14px; }
.testi-quote { font-size: 15px; color: var(--white-80); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; }
.testi-role { font-size: 12px; color: var(--white-50); }

/* ── DOWNLOAD ──────────────────────────────────────────────── */
.download {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  text-align: center;
}
.orb-4 { width: 500px; height: 500px; background: var(--orange); top: -200px; right: -200px; animation-delay: 1s; }
.orb-5 { width: 400px; height: 400px; background: var(--blue);   bottom: -200px; left: -100px; animation-delay: 3s; }
.download-bg { position: absolute; inset: 0; }
.download-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.download-title { font-size: clamp(30px, 4vw, 48px); font-weight: 900; margin-bottom: 16px; line-height: 1.15; }
.download-sub { font-size: 17px; color: var(--white-80); margin-bottom: 40px; }
.download-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px; border-radius: var(--radius-sm);
  background: var(--white-10); border: 1px solid var(--white-20);
  color: var(--white); transition: var(--trans); min-width: 200px;
}
.store-btn:hover { background: var(--white-20); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.store-small { font-size: 10px; color: var(--white-50); letter-spacing: 0.5px; }
.store-big   { font-size: 18px; font-weight: 700; }
.download-note { font-size: 13px; color: var(--white-50); }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: #060d1a;
  border-top: 1px solid var(--white-10);
  padding: 60px 0 28px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { font-size: 22px; margin-bottom: 12px; }
.footer-tagline { font-size: 14px; color: var(--white-50); margin-bottom: 12px; line-height: 1.6; }
.footer-langs { font-size: 12px; color: var(--white-80); background: var(--white-dim); display: inline-block; padding: 6px 12px; border-radius: 8px; }
.footer-links-col h4, .footer-contact-col h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { font-size: 14px; color: var(--white-50); transition: var(--trans); }
.footer-links-col a:hover { color: var(--orange); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--white-50); margin-bottom: 10px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; border-top: 1px solid var(--white-10);
  font-size: 13px; color: var(--white-20);
}

/* ── REVEAL ANIMATION ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: span 2; }

  /* Stamp ring: scale down to fit narrower screens */
  .stamp-ring { transform: scale(0.82); transform-origin: top center; height: 574px; }
}
@media (max-width: 800px) {
  .stamp-ring { transform: scale(0.66); transform-origin: top center; height: 462px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-product-explainer { font-size: 15px; }
  .app-explainer-grid { grid-template-columns: 1fr; gap: 42px; }
  .app-explainer-visual { max-width: 320px; margin: 0 auto; }
  .app-quick-features { grid-template-columns: repeat(2, 1fr); }
  .address-highlight-inner { grid-template-columns: 1fr; gap: 36px; }
  .address-highlight-copy { text-align: center; }
  .address-highlight-copy .section-title, .address-highlight-copy .section-sub { margin-left: auto; margin-right: auto; }
  .hero-phone { order: -1; }
  .features-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand-col { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section { padding: 70px 0; }
  .hero-share-callout { text-align: left; }
  .stamp-ring { transform: scale(0.58); transform-origin: top center; height: 406px; }
}
@media (max-width: 480px) {
  .hero-product-label { font-size: 10px; letter-spacing: 1.5px; }
  .app-quick-features { grid-template-columns: 1fr; }
  .app-step { padding: 16px; }
  .industries-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 12px; }
  .address-proof-card { grid-template-columns: 1fr; }
  .address-proof-map { min-height: 190px; }
  .address-proof-content { padding: 20px 17px; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .stamp-ring { transform: scale(0.46); transform-origin: top center; height: 322px; }
}

/* ── VISUAL POLISH ─────────────────────────────────────────── */
::selection { color: var(--navy-dark); background: var(--orange); }

body {
  background:
    radial-gradient(circle at 50% -10%, rgba(77,144,217,.08), transparent 34%),
    var(--navy-dark);
}

.hero {
  background:
    radial-gradient(circle at 78% 34%, rgba(77,144,217,.08), transparent 24%),
    radial-gradient(circle at 20% 90%, rgba(245,166,35,.06), transparent 22%);
}

.hero-phone {
  position: relative;
  min-height: 620px;
}
.hero-phone::before {
  content: '';
  position: absolute;
  width: min(480px, 90%);
  aspect-ratio: 1;
  border: 1px solid rgba(114,199,255,.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(77,144,217,.025),
    0 0 0 56px rgba(77,144,217,.018);
}
.hero-phone::after {
  content: 'LIVE LOCATION  •  VERIFIED CAPTURE';
  position: absolute;
  right: 7%;
  top: 15%;
  padding: 8px 11px;
  border: 1px solid rgba(53,208,154,.28);
  border-radius: 999px;
  color: #8be3c3;
  background: rgba(7,17,31,.72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  transform: rotate(5deg);
}
.phone-wrap { z-index: 1; }
.phone-wrap::before,
.phone-wrap::after {
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 18px;
  pointer-events: none;
}
.phone-wrap::before {
  inset: 18px -18px -18px;
  border: 1px solid rgba(245,166,35,.32);
  transform: rotate(7deg);
}
.phone-wrap::after {
  inset: -18px 18px 18px;
  border: 1px solid rgba(77,144,217,.3);
  transform: rotate(-7deg);
}
.phone-screenshot {
  border: 7px solid #08101e;
  box-shadow:
    0 40px 100px rgba(0,0,0,.7),
    0 0 0 1px rgba(77,144,217,.28),
    0 0 0 12px rgba(77,144,217,.035);
}

.business-entry {
  background:
    linear-gradient(90deg, rgba(16,29,53,.98) 0%, rgba(22,43,74,.94) 42%, rgba(22,34,48,.76) 100%),
    url("generated-images/business-office-oversight.jpg") center right / cover no-repeat;
}
.business-entry::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 52%, rgba(77,144,217,.1), transparent 80%);
  pointer-events: none;
}
.business-entry-inner { gap: 30px; }
.business-entry-copy h2 { letter-spacing: -.035em; }
.business-entry-cta { box-shadow: 0 10px 30px rgba(245,166,35,.16); }

.section-title { letter-spacing: -.035em; }
.section-badge {
  position: relative;
  box-shadow: inset 0 0 18px rgba(255,255,255,.03);
}
.section-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 8px 1px 0;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(255,255,255,.04);
}
.feature-card,
.industry-card,
.testi-card,
.setting-card,
.tpl-card,
.tpl-saved-card,
.filters-showcase,
.stat-card {
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
}
.feature-card::after,
.industry-card::after,
.testi-card::after {
  content: '';
  position: absolute;
  right: -55px;
  bottom: -75px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(77,144,217,.07);
  filter: blur(12px);
  pointer-events: none;
}
.feature-card h3,
.industry-card h3,
.testi-card h3 { letter-spacing: -.02em; }
.trust { background: linear-gradient(90deg, #171d2d, #1b2338, #171d2d); }

@media (max-width: 768px) {
  .hero-phone { min-height: 510px; }
  .hero-phone::after { right: 1%; top: 7%; font-size: 8px; }
  .phone-wrap::before { inset: 14px -12px -12px; }
  .phone-wrap::after { inset: -12px 14px 12px; }
  .business-entry { background-position: 68% center; }
}

@media (prefers-reduced-motion: reduce) {
  .site-sparkle-field { display: none; }
  .hero-phone::before,
  .hero-phone::after,
  .phone-wrap::before,
  .phone-wrap::after { animation: none; }
}

/* ── STORYTELLING PATTERNS ───────────────────────────────────── */
.section:not(.hero):not(.download) {
  position: relative;
  isolation: isolate;
}

.section:not(.hero):not(.download)::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(114,199,255,.22), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.address-proof-card {
  position: relative;
}

.address-proof-card::before {
  content: 'GPS / VERIFIED / 18.1596° N';
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  background: rgba(5,16,29,.68);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  backdrop-filter: blur(5px);
  pointer-events: none;
}

.feature-card,
.industry-card,
.testi-card,
.setting-card,
.tpl-card,
.tpl-saved-card,
.filters-showcase,
.stat-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.industry-card::before,
.setting-card::before,
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 20px;
  left: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(114,199,255,.6), transparent);
  opacity: .35;
}

.feature-card.feature-main {
  grid-column: span 2;
  min-height: 330px;
  background:
    linear-gradient(135deg, rgba(77,144,217,.16), rgba(13,19,33,.86) 60%),
    radial-gradient(circle at 90% 15%, rgba(34,197,94,.11), transparent 28%);
  border-color: rgba(114,199,255,.34);
}

.feature-card.feature-main .feature-tagline {
  max-width: 420px;
  border-left: 2px solid var(--orange);
  border-radius: 0 8px 8px 0;
}

.setting-card:hover .setting-screen-wrap {
  background:
    radial-gradient(circle at 50% 100%, rgba(245,166,35,.16), transparent 58%),
    #0d1017;
}

.setting-screen-wrap,
.tpl-phone-wrap,
.tpl-saved-phone-wrap {
  position: relative;
}

.setting-screen-wrap::after,
.tpl-phone-wrap::after,
.tpl-saved-phone-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  pointer-events: none;
}

.industry-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    radial-gradient(circle at 100% 0%, rgba(77,144,217,.12), transparent 35%);
}

.industry-card::before {
  right: auto;
  left: 0;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  opacity: .9;
}

.industry-card:hover .industry-icon {
  transform: translateY(-3px) scale(1.04);
}

.industry-icon {
  display: inline-block;
  transition: transform .25s ease;
}

.testi-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    radial-gradient(circle at 100% 0%, rgba(168,85,247,.1), transparent 34%);
}

.testi-card::before {
  content: '“';
  position: absolute;
  top: 12px;
  right: 22px;
  color: rgba(114,199,255,.18);
  font-family: Georgia, serif;
  font-size: 66px;
  line-height: 1;
  pointer-events: none;
}

.download {
  border-top: 1px solid rgba(245,166,35,.2);
  border-bottom: 1px solid rgba(77,144,217,.2);
}

@media (max-width: 768px) {
  .feature-card.feature-main { grid-column: auto; min-height: unset; }
  .address-proof-card::before { font-size: 7px; right: 9px; top: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .industry-icon { transition: none; }
}
