/* Highway Map — Landing Page Styles */

:root {
  --bg-primary: #f5f6fa;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --purple: #9333ea;
  --purple-dark: #7c3aed;
  --purple-glow: rgba(147, 51, 234, 0.22);
  --orange: #ea580c;
  --orange-dark: #c2410c;
  --orange-glow: rgba(234, 88, 12, 0.22);
  --magenta: #c026d3;
  --text-primary: #12121f;
  --text-secondary: rgba(18, 18, 31, 0.68);
  --text-muted: rgba(18, 18, 31, 0.45);
  --border: rgba(18, 18, 31, 0.1);
  --glass: rgba(255, 255, 255, 0.75);
  --shadow-sm: 0 2px 12px rgba(18, 18, 31, 0.06);
  --shadow-md: 0 8px 32px rgba(18, 18, 31, 0.1);
  --shadow-lg: 0 20px 60px rgba(18, 18, 31, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --font-ar: 'IBM Plex Sans Arabic', sans-serif;
  --font-en: 'Outfit', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-ar);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html[lang="en"] body { font-family: var(--font-en); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Background effects */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(147, 51, 234, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 51, 234, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

.bg-glow--purple { top: -200px; left: -200px; background: var(--purple); }
.bg-glow--orange { bottom: -200px; right: -200px; background: var(--orange); }

html[dir="ltr"] .bg-glow--purple { left: auto; right: -200px; }
html[dir="ltr"] .bg-glow--orange { right: auto; left: -200px; }

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.nav__logo img { border-radius: 10px; }

.text-orange { color: var(--orange); }

.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav__links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav__links a:hover { color: var(--text-primary); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  font-family: inherit;
  box-shadow: var(--shadow-sm);
}

.lang-toggle:hover {
  border-color: var(--purple);
  color: var(--text-primary);
}

.lang-toggle__active { color: var(--orange); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--purple), var(--orange));
  color: white;
  box-shadow: 0 4px 24px var(--purple-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--orange-glow);
}

.btn--ghost {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn--ghost:hover {
  border-color: var(--purple);
  background: #faf5ff;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: 140px 0 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  flex: 1;
}

.hero__badge {
  display: inline-block;
  padding: 8px 20px;
  background: #faf5ff;
  border: 1px solid rgba(147, 51, 234, 0.15);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--purple-dark);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero__title span { display: block; }

.gradient-text {
  background: linear-gradient(135deg, var(--purple), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__tagline {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tagline-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--orange), transparent);
}

/* Hero device showcase */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-device {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 5 / 6;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
}

.hero-device__glow {
  position: absolute;
  inset: 10%;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  filter: blur(48px);
  opacity: 0.25;
  z-index: 0;
}

.hero-device__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.hero-device::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 28px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(245, 246, 250, 0.2) 100%
  );
  box-shadow: inset 0 0 0 1px rgba(18, 18, 31, 0.06);
}

.hero-device:hover .hero-device__img {
  transform: scale(1.03);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-device__img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Legacy phone mockup (unused) */

.phone-mockup {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #1a1a2e, #0d0d15);
  border-radius: 40px;
  border: 2px solid var(--border);
  padding: 12px;
  box-shadow:
    0 0 60px var(--purple-glow),
    0 0 120px var(--orange-glow);
  position: relative;
  z-index: 2;
}

.phone-mockup__screen {
  width: 100%;
  height: 100%;
  background: var(--bg-secondary);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.map-preview {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 40%, rgba(168, 85, 247, 0.15), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(249, 115, 22, 0.15), transparent 50%),
    linear-gradient(rgba(168, 85, 247, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px;
  position: relative;
}

.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.map-pin--1 { top: 25%; left: 30%; background: var(--purple); box-shadow: 0 0 12px var(--purple-glow); }
.map-pin--2 { top: 45%; left: 60%; background: var(--orange); box-shadow: 0 0 12px var(--orange-glow); animation-delay: 0.5s; }
.map-pin--3 { top: 65%; left: 25%; background: var(--magenta); box-shadow: 0 0 12px rgba(217, 70, 239, 0.3); animation-delay: 1s; }
.map-pin--4 { top: 35%; left: 75%; background: var(--orange); box-shadow: 0 0 12px var(--orange-glow); animation-delay: 1.5s; }

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

.coupon-card {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  background: rgba(16, 16, 24, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.coupon-card__badge {
  background: linear-gradient(135deg, var(--purple), var(--orange));
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
}

.coupon-card__title {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 600;
}

.coupon-card__timer {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 600;
}

.hero__logo-float {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 18px;
  top: -20px;
  right: -20px;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

html[dir="ltr"] .hero__logo-float { right: auto; left: -20px; }

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

/* Stats */
.hero__stats {
  margin-top: 60px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat__number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section--dark {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.section--cta {
  background:
    radial-gradient(ellipse at center, rgba(147, 51, 234, 0.06), transparent 70%),
    linear-gradient(180deg, #faf5ff 0%, var(--bg-primary) 100%);
}

.section__badge {
  display: inline-block;
  padding: 6px 16px;
  background: #faf5ff;
  border: 1px solid rgba(147, 51, 234, 0.12);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section__desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Features */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  border-color: rgba(147, 51, 234, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card__icon svg { width: 26px; height: 26px; }

.feature-card__icon--purple {
  background: rgba(168, 85, 247, 0.15);
  color: var(--purple);
}

.feature-card__icon--orange {
  background: rgba(249, 115, 22, 0.15);
  color: var(--orange);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Steps */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.step__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 4px 24px var(--purple-glow);
}

.step__content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step__content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.step__connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--orange));
  margin-top: 32px;
  flex-shrink: 0;
  opacity: 0.4;
}

/* Merchants */
.merchants__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.merchants__list {
  list-style: none;
  margin: 28px 0 36px;
}

.merchants__list li {
  padding: 10px 0;
  padding-inline-start: 28px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.merchants__list li::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 0;
  color: var(--orange);
  font-weight: 700;
}

.dashboard-preview {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.dashboard-preview__bar {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border);
}

.dashboard-preview__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.dashboard-preview__bar span:first-child { background: #ef4444; }
.dashboard-preview__bar span:nth-child(2) { background: #eab308; }
.dashboard-preview__bar span:nth-child(3) { background: #22c55e; }

.dashboard-preview__content { padding: 28px; }

.dash-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.dash-stat__label { color: var(--text-secondary); font-size: 0.9rem; }
.dash-stat__value { font-size: 1.5rem; font-weight: 800; color: var(--orange); }

.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  margin-top: 24px;
  padding-top: 16px;
}

.dash-chart__bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, var(--purple), var(--orange));
  border-radius: 6px 6px 0 0;
  opacity: 0.8;
  transition: var(--transition);
}

.dash-chart__bar:hover { opacity: 1; }

/* Download */
.download__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.download__logo {
  border-radius: 22px;
  margin-bottom: 28px;
  box-shadow: 0 8px 40px var(--purple-glow);
}

.download__stores {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 36px 0;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.store-btn:hover {
  border-color: var(--purple);
  background: #faf5ff;
}

.store-btn svg { width: 28px; height: 28px; fill: var(--text-primary); }
.store-btn small { display: block; font-size: 0.7rem; color: var(--text-muted); }
.store-btn strong { font-size: 1rem; }

.notify-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.notify-form input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.notify-form input:focus { border-color: var(--purple); }
.notify-form input::placeholder { color: var(--text-muted); }

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer__brand img { border-radius: 10px; }
.footer__brand p { color: var(--text-muted); font-size: 0.85rem; letter-spacing: 2px; }

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__links a:hover { color: var(--text-primary); }

.footer__copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.btn--orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  box-shadow: 0 4px 24px var(--orange-glow);
}

.btn--orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--orange-glow);
}

.section__badge--orange { color: var(--orange); }

/* Promo image frames */
.promo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  box-shadow: var(--shadow-md);
}

.promo-frame img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.promo-frame__glow {
  position: absolute;
  inset: -40%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  opacity: 0.35;
}

.promo-frame__glow--purple { background: var(--purple); }
.promo-frame__glow--orange { background: var(--orange); }
.promo-frame__glow--dual {
  background: linear-gradient(135deg, var(--purple), var(--orange));
}

.promo-frame--hero {
  display: none;
}

.promo-frame--hero img { position: relative; z-index: 1; }

.promo-frame--card {
  max-width: 420px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.promo-frame--wide {
  box-shadow: var(--shadow-md);
}

.promo-frame--wide img { border-radius: calc(var(--radius) - 1px); }

.promo-frame--tall { box-shadow: 0 20px 60px var(--orange-glow); }

.promo-frame--small {
  max-width: 200px;
  margin-top: 16px;
  border-radius: 20px;
}

/* Features showcase */
.features-showcase {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.pillar {
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.pillar:hover {
  transform: translateX(-4px);
  border-color: rgba(168, 85, 247, 0.25);
}

html[dir="ltr"] .pillar:hover { transform: translateX(4px); }

.pillar--purple { border-inline-start: 3px solid var(--purple); }
.pillar--orange { border-inline-start: 3px solid var(--orange); }

.pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: rgba(168, 85, 247, 0.15);
  color: var(--purple);
}

.pillar--orange .pillar__icon {
  background: rgba(249, 115, 22, 0.15);
  color: var(--orange);
}

.pillar h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pillar p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-pill {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-pill:hover {
  border-color: var(--purple);
  color: var(--text-primary);
}

/* Journey section */
.journey-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.journey-tab {
  padding: 12px 28px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.journey-tab--active,
.journey-tab:hover {
  color: #fff;
  border-color: transparent;
}

.journey-tab--active[data-tab="shopper"],
.journey-tab[data-tab="shopper"]:hover {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  box-shadow: 0 4px 20px var(--purple-glow);
}

.journey-tab--active[data-tab="merchant"],
.journey-tab[data-tab="merchant"]:hover {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  box-shadow: 0 4px 20px var(--orange-glow);
}

.journey-main-img {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.journey-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.journey-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.journey-card--shopper {
  border-top: 3px solid var(--purple);
  background: linear-gradient(180deg, #faf5ff, var(--bg-card));
}

.journey-card--merchant {
  border-top: 3px solid var(--orange);
  background: linear-gradient(180deg, #fff7ed, var(--bg-card));
}

.journey-card__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 100px;
}

.journey-card--shopper .journey-card__label {
  background: rgba(168, 85, 247, 0.2);
  color: var(--purple);
}

.journey-card--merchant .journey-card__label {
  background: rgba(249, 115, 22, 0.2);
  color: var(--orange);
}

.journey-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.journey-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.journey-card__benefits {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.journey-card__benefits li {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--bg-primary);
  border: 1px solid var(--border);
}

.journey-card--highlight {
  box-shadow: 0 0 0 2px rgba(147, 51, 234, 0.3), var(--shadow-md);
}

.journey-card--merchant.journey-card--highlight {
  box-shadow: 0 0 0 2px rgba(234, 88, 12, 0.3), var(--shadow-md);
}

/* Showcase grid */
.section--showcase {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(147, 51, 234, 0.05), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(234, 88, 12, 0.05), transparent 50%),
    var(--bg-primary);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.showcase-grid .promo-frame:hover {
  transform: translateY(-4px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

/* Download layout */
.download__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  text-align: start;
}

.download__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download__content .section__title,
.download__content .section__desc { text-align: inherit; }

.download__content .download__stores { justify-content: flex-start; margin: 28px 0; }

.download__content .notify-form { margin: 0; max-width: 100%; }

.download__logo {
  border-radius: 22px;
  box-shadow: 0 8px 40px var(--purple-glow);
}

/* Animations on scroll */
.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) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .hero__tagline { justify-content: center; }
  .hero__visual { order: -1; max-width: 380px; margin-inline: auto; }
  .features-showcase { grid-template-columns: 1fr; }
  .features-showcase__visual { order: -1; }
  .merchants__inner { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: 1fr; }
  .download__inner { grid-template-columns: 1fr; text-align: center; }
  .download__content .download__stores { justify-content: center; }
  .download__content .notify-form { margin-inline: auto; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }

  .journey-cards { grid-template-columns: 1fr; }
  .notify-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .download__stores { flex-direction: column; align-items: center; }
  .journey-tabs { flex-direction: column; align-items: stretch; }
}
