/* ═══════════════════════════════════════════════════════════════════
   DOKHOOL / PASSQR — MARKETING WEBSITE
   Design: White + Dark Navy · Arabic RTL · Ultra-Premium
═══════════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0D1B3E;
  --navy-deep:  #080F24;
  --navy-mid:   #162040;
  --blue:       #1565C0;
  --blue-light: #1976D2;
  --blue-bright:#2196F3;
  --indigo:     #3949AB;
  --white:      #FFFFFF;
  --off-white:  #F5F7FA;
  --border:     #DDE3F0;
  --text-1:     #0D1B3E;
  --text-2:     #2E3D5F;
  --text-3:     #566280;
  --text-light: rgba(255,255,255,0.9);
  --text-light2:rgba(255,255,255,0.65);
  --shadow-sm:  0 2px 8px rgba(13,27,62,0.08);
  --shadow-md:  0 8px 32px rgba(13,27,62,0.12);
  --shadow-lg:  0 20px 60px rgba(13,27,62,0.18);
  --shadow-xl:  0 32px 80px rgba(13,27,62,0.24);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full:999px;
  --font:       'Tajawal', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-h:   72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text-1);
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── SELECTION ─── */
::selection { background: var(--blue); color: white; }

/* ─── CONTAINER ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: fixed;
  top: -100px;
  right: 20px;
  background: var(--blue);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.3s;
}
.skip-link:focus { top: 20px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 20px rgba(21,101,192,0.35);
}
.btn-primary:hover { background: var(--blue-light); box-shadow: 0 6px 28px rgba(21,101,192,0.5); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

.btn-hero {
  background: white;
  color: var(--navy);
  font-size: 1.05rem;
  padding: 16px 36px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.18);
}
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(0,0,0,0.25); }
.btn-hero svg { transform: rotate(180deg); }

.btn-ghost-hero {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
  font-size: 1.05rem;
  padding: 16px 36px;
  backdrop-filter: blur(8px);
}
.btn-ghost-hero:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

.btn-cta {
  background: white;
  color: var(--navy);
  font-size: 1.05rem;
  padding: 18px 40px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.2);
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.btn-cta svg { transform: rotate(180deg); }

.btn-cta-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3);
  font-size: 1.05rem;
  padding: 18px 40px;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,0.1); color: white; border-color: rgba(255,255,255,0.6); }

/* ─── SECTION HEADER ─── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21,101,192,0.1);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-tag-light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title-light { color: white; }
.section-sub {
  font-size: 1.1rem;
  color: var(--text-3);
  max-width: 540px;
  margin: 0 auto;
}
.section-sub-light { color: rgba(255,255,255,0.72); }

/* ─── GRADIENT TEXT ─── */
.gradient-text {
  background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 50%, #BFDBFE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-light {
  background: linear-gradient(135deg, #93C5FD 0%, #BFDBFE 60%, #E0F2FE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── ANIMATE ─── */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate="fade-left"] { transform: translateX(-40px); }
[data-animate="fade-right"] { transform: translateX(40px); }
[data-animate].is-visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--navbar-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(221,227,240,0.5);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.97);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-h);
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark { display: flex; }
.logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-text-light { color: rgba(255,255,255,0.9); }
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 14px;
}
.nav-icon-img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(13,27,62,0.18);
}
.logo-wordmark {
  font-family: var(--font);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-wordmark-light { color: rgba(255,255,255,0.92); }
.nav-logo-footer { margin-bottom: 14px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover { color: var(--blue); background: rgba(21,101,192,0.06); }
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-link:hover { background: var(--off-white); color: var(--blue); }
.mobile-cta { margin-top: 12px; justify-content: center; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 45%, #162850 75%, #0D2B5A 100%);
  display: flex;
  align-items: center;
  padding-top: var(--navbar-h);
  overflow: hidden;
}

/* Background elements */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.glow-1 { width: 500px; height: 500px; background: rgba(21,101,192,0.5); top: -100px; left: -100px; animation: pulse-glow 6s ease-in-out infinite; }
.glow-2 { width: 400px; height: 400px; background: rgba(57,73,171,0.4); bottom: 100px; right: -80px; animation: pulse-glow 8s ease-in-out infinite 2s; }
.orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  animation: spin-orb 20s linear infinite;
}
.orb-1 { width: 300px; height: 300px; top: 15%; left: 60%; animation-duration: 25s; }
.orb-2 { width: 180px; height: 180px; top: 60%; left: 15%; animation-duration: 18s; animation-direction: reverse; }
.orb-3 { width: 120px; height: 120px; top: 30%; left: 80%; animation-duration: 14s; }

@keyframes pulse-glow {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.08); }
}
@keyframes spin-orb {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 24px 120px;
  position: relative;
  z-index: 2;
}

/* Content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.04em;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 520px;
}
.hero-sub strong { color: white; font-weight: 800; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
  width: fit-content;
}
.hstat {
  padding: 18px 28px;
  text-align: center;
}
.hstat-num {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.hstat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 4px;
}
.hstat-div {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
}

/* ── PHONE MOCKUP ── */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.phone-wrap {
  position: relative;
  width: 280px;
}
.phone-frame {
  width: 280px;
  background: #0A0F1E;
  border-radius: 44px;
  padding: 14px 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 0 0 10px #0D1226,
    0 0 0 11px rgba(255,255,255,0.06),
    var(--shadow-xl);
  position: relative;
}
.phone-notch {
  width: 80px; height: 26px;
  background: #0A0F1E;
  border-radius: 0 0 20px 20px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 2;
}
.phone-screen {
  border-radius: 32px;
  overflow: hidden;
  background: var(--navy-deep);
}
.app-screen {
  background: linear-gradient(180deg, #0D1B3E 0%, #111C3E 100%);
  padding: 14px 12px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* App elements */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 10px 12px;
}
.app-header-left { display: flex; align-items: center; gap: 8px; }
.app-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #1565C0, #3949AB);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: white;
}
.app-venue { font-size: 0.78rem; font-weight: 700; color: white; }
.app-live {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.6rem; color: #22c55e; font-weight: 700;
}
.live-dot {
  width: 5px; height: 5px;
  background: #22c55e; border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.25);
  animation: blink 2s ease-in-out infinite;
}
.app-bell {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}

.app-stats-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 6px;
}
.app-stat-box {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 8px;
  text-align: center;
}
.app-stat-num { font-size: 1rem; font-weight: 900; color: white; }
.app-stat-lbl { font-size: 0.55rem; color: rgba(255,255,255,0.5); font-weight: 600; margin-top: 2px; }

.app-event-card {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-event-accent {
  width: 3px; height: 36px;
  background: linear-gradient(180deg, #2196F3, #1565C0);
  border-radius: 2px;
  flex-shrink: 0;
}
.app-event-body { flex: 1; }
.app-event-name { font-size: 0.72rem; font-weight: 800; color: white; }
.app-event-date { font-size: 0.58rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.app-event-badge {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}

.app-scan-area {
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  flex: 1;
}
.app-scan-lbl { font-size: 0.6rem; color: rgba(255,255,255,0.5); font-weight: 700; margin-bottom: 8px; }

.app-qr-frame {
  width: 80px; height: 80px;
  margin: 0 auto 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.corner {
  position: absolute;
  width: 16px; height: 16px;
  border-color: #2196F3;
  border-style: solid;
}
.corner.tl { top:0; right:0; border-width:2px 0 0 2px; border-radius:0 0 0 4px; }
.corner.tr { top:0; left:0; border-width:2px 2px 0 0; border-radius:0 0 4px 0; }
.corner.bl { bottom:0; right:0; border-width:0 0 2px 2px; border-radius:0 4px 0 0; }
.corner.br { bottom:0; left:0; border-width:0 2px 2px 0; border-radius:4px 0 0 0; }
.scan-line {
  position: absolute;
  top: 20%;
  right: 2px;
  left: 2px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2196F3, transparent);
  animation: scan 2s ease-in-out infinite;
  border-radius: 1px;
}
@keyframes scan {
  0%   { top: 15%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 85%; opacity: 0; }
}

.app-scan-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  border-radius: 8px;
  padding: 5px 8px;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%,100% { opacity:1; } 50% { opacity:0.65; }
}

/* Floating badges */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
  animation: float-anim 3s ease-in-out infinite;
}
.float-apple {
  background: rgba(13,27,62,0.9);
  border: 1px solid rgba(255,255,255,0.15);
  top: 30px;
  right: -70px;
  animation-delay: 0s;
}
.float-google {
  background: rgba(13,27,62,0.9);
  border: 1px solid rgba(255,255,255,0.15);
  bottom: 60px;
  left: -80px;
  animation-delay: 1.5s;
}
@keyframes float-anim {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
}
.hero-wave svg { display: block; width: 100%; height: 100px; }

/* ═══════════════════════════════════════════════
   PROBLEM → SOLUTION
═══════════════════════════════════════════════ */
.ps-section {
  padding: 100px 0;
  background: var(--white);
}
.ps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.ps-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
}
.ps-card {
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1.5px solid var(--border);
}
.ps-problem {
  background: #FFF5F5;
  border-color: #FECACA;
}
.ps-solution {
  background: linear-gradient(135deg, #F0F4FF 0%, #EBF5FF 100%);
  border-color: #BFDBFE;
  position: relative;
  overflow: hidden;
}
.ps-solution::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21,101,192,0.04), rgba(33,150,243,0.02));
  pointer-events: none;
}
.ps-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.ps-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.ps-icon-red { background: #FEE2E2; }
.ps-icon-blue { background: rgba(21,101,192,0.1); }
.ps-title { font-size: 1.15rem; font-weight: 800; color: var(--navy); }
.ps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  line-height: 1.5;
}
.ps-x { color: #ef4444; font-weight: 900; font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }
.ps-check { color: #1565C0; font-weight: 900; font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }

/* ═══════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════ */
.features {
  padding: 100px 0;
  background: linear-gradient(170deg, var(--navy-deep) 0%, var(--navy) 50%, #162850 100%);
  position: relative;
  overflow: hidden;
}
.features-bg { position: absolute; inset: 0; pointer-events: none; }
.feat-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.feat-glow-1 { width: 500px; height: 400px; background: rgba(21,101,192,0.35); top: -100px; right: -100px; }
.feat-glow-2 { width: 400px; height: 300px; background: rgba(57,73,171,0.25); bottom: -50px; left: 100px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.feat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.feat-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.feat-card-large {
  grid-column: span 2;
}
.feat-card:nth-child(1) { grid-column: 1 / span 2; }
.feat-card:nth-child(6) { grid-column: 2 / span 2; }

.feat-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feat-blue   { background: linear-gradient(135deg, #1565C0, #1976D2); box-shadow: 0 8px 24px rgba(21,101,192,0.4); }
.feat-indigo { background: linear-gradient(135deg, #3949AB, #5C6BC0); box-shadow: 0 8px 24px rgba(57,73,171,0.4); }
.feat-teal   { background: linear-gradient(135deg, #00695C, #00897B); box-shadow: 0 8px 24px rgba(0,137,123,0.4); }
.feat-purple { background: linear-gradient(135deg, #6A1B9A, #8E24AA); box-shadow: 0 8px 24px rgba(142,36,170,0.4); }
.feat-orange { background: linear-gradient(135deg, #E65100, #F57C00); box-shadow: 0 8px 24px rgba(230,81,0,0.4); }
.feat-green  { background: linear-gradient(135deg, #1B5E20, #2E7D32); box-shadow: 0 8px 24px rgba(46,125,50,0.4); }

.feat-title { font-size: 1.05rem; font-weight: 800; color: white; margin-bottom: 10px; }
.feat-desc { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.feat-tag {
  display: inline-block;
  margin-top: 16px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════ */
.how-it-works {
  padding: 100px 0;
  background: var(--off-white);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: start;
  margin-top: 20px;
}
.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  margin-top: 60px;
  flex-shrink: 0;
}
.step-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21,101,192,0.3);
}
.step-num {
  position: absolute;
  top: -18px;
  right: 28px;
  width: 36px; height: 36px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(21,101,192,0.4);
}
.step-icon {
  width: 52px; height: 52px;
  background: rgba(21,101,192,0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step-title { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.step-desc { font-size: 0.88rem; color: var(--text-3); line-height: 1.7; }

/* ═══════════════════════════════════════════════
   FOR GUESTS
═══════════════════════════════════════════════ */
.for-guests {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--navy) 0%, #0F2354 50%, #0A1830 100%);
  position: relative;
  overflow: hidden;
}
.fg-bg { position: absolute; inset: 0; pointer-events: none; }
.fg-glow {
  position: absolute;
  width: 600px; height: 400px;
  background: rgba(33,150,243,0.2);
  border-radius: 50%;
  filter: blur(100px);
  top: -100px;
  left: -200px;
}
.fg-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.fg-content .section-tag, .fg-content .section-title, .fg-content .section-sub {
  text-align: right;
}
.fg-content .section-header { text-align: right; margin-bottom: 40px; }

.guest-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.guest-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  transition: var(--transition);
}
.guest-step:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.gs-num {
  width: 32px; height: 32px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(21,101,192,0.4);
}
.gs-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gs-text strong { font-size: 0.95rem; font-weight: 800; color: white; }
.gs-text span { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* Guest Pass Card */
.fg-visual { display: flex; justify-content: center; }
.guest-pass-card {
  width: 100%;
  max-width: 320px;
  background: linear-gradient(170deg, #0D1B3E 0%, #162040 60%, #0D2454 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.gp-header {
  background: linear-gradient(135deg, #1565C0, #3949AB);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gp-logo { display: flex; align-items: center; gap: 8px; color: white; font-weight: 900; font-size: 1rem; }
.gp-event-type {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.gp-body { padding: 20px; }
.gp-event-name { font-size: 1.15rem; font-weight: 900; color: white; margin-bottom: 4px; }
.gp-guest { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 18px; font-weight: 600; }
.gp-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 16px;
}
.gp-detail { display: flex; justify-content: space-between; align-items: center; }
.gp-detail-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.45); font-weight: 600; }
.gp-detail-val { font-size: 0.8rem; color: rgba(255,255,255,0.85); font-weight: 700; }
.gp-qr {
  display: flex;
  justify-content: center;
  margin: 0 0 16px;
  padding: 12px;
  background: white;
  border-radius: 14px;
  margin-inline: 20px;
}
.gp-footer {
  padding: 12px 20px 16px;
}
.gp-verified {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.test-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.test-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(21,101,192,0.2);
}
.test-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.test-quote {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.test-name { font-size: 0.9rem; font-weight: 800; color: var(--navy); }
.test-role { font-size: 0.78rem; color: var(--text-3); margin-top: 2px; }

/* ═══════════════════════════════════════════════
   NUMBERS
═══════════════════════════════════════════════ */
.numbers-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #13235A 100%);
  position: relative;
  overflow: hidden;
}
.numbers-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(21,101,192,0.2) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(57,73,171,0.15) 0%, transparent 50%);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.num-card {
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 40px 24px;
  transition: var(--transition);
}
.num-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.num-value {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  display: inline-block;
}
.num-suffix { font-size: 1.1rem; font-weight: 700; color: rgba(255,255,255,0.6); margin-top: 4px; }
.num-label { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-top: 10px; line-height: 1.5; }

/* ═══════════════════════════════════════════════
   APP SHOWCASE
═══════════════════════════════════════════════ */
.showcase { padding: 100px 0; background: var(--off-white); }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.showcase-item { text-align: center; }
.showcase-screen {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
  margin-bottom: 16px;
  transition: var(--transition);
}
.showcase-screen:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.showcase-label { font-size: 0.9rem; font-weight: 700; color: var(--text-2); }

.sc-header {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sc-header.navy { background: var(--navy); }
.sc-header.indigo { background: #3949AB; }
.sc-header.teal { background: #00695C; }
.sc-title-text { font-size: 0.82rem; font-weight: 800; color: white; }
.sc-live { display: flex; align-items: center; gap: 5px; font-size: 0.65rem; font-weight: 700; color: #22c55e; }

.sc-body { padding: 16px; }
.sc-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.sc-stat-box {
  background: var(--off-white);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.sc-big { display: block; font-size: 1.4rem; font-weight: 900; color: var(--navy); }
.sc-sml { font-size: 0.65rem; color: var(--text-3); font-weight: 600; }
.sc-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  background: var(--off-white);
  border-radius: 10px;
  padding: 8px;
}
.sc-bar {
  flex: 1;
  background: rgba(21,101,192,0.2);
  border-radius: 4px 4px 0 0;
  transition: var(--transition);
}
.sc-bar-active { background: var(--blue); }

.sc-scanner-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
}
.sc-qr-frame {
  width: 90px; height: 90px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: var(--off-white);
  border-radius: 8px;
}
.sc-result {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius-full);
}
.sc-success { background: rgba(34,197,94,0.1); color: #16a34a; }

.sc-form-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.sc-field {
  background: var(--off-white);
  border-radius: 8px;
  padding: 8px 12px;
}
.sc-field-label { font-size: 0.6rem; color: var(--text-3); font-weight: 700; margin-bottom: 2px; }
.sc-field-val { font-size: 0.78rem; color: var(--navy); font-weight: 700; }
.sc-btn-row { margin-top: 4px; }
.sc-btn {
  background: var(--blue);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 8px;
  text-align: center;
}

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.faq-section { padding: 100px 0; background: white; }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: rgba(21,101,192,0.3);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}
.faq-q:hover { background: var(--off-white); }
.faq-q span { flex: 1; }
.faq-arrow {
  flex-shrink: 0;
  color: var(--text-3);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--blue); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.94rem;
  color: var(--text-2);
  line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ═══════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════ */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(170deg, #080F24 0%, var(--navy) 40%, #0D2B5A 80%, #0A1A3E 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-glow-1 {
  position: absolute;
  width: 600px; height: 500px;
  background: rgba(21,101,192,0.4);
  border-radius: 50%;
  filter: blur(120px);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  animation: pulse-glow 7s ease-in-out infinite;
}
.cta-glow-2 {
  position: absolute;
  width: 400px; height: 300px;
  background: rgba(57,73,171,0.25);
  border-radius: 50%;
  filter: blur(80px);
  bottom: -100px; right: 10%;
  animation: pulse-glow 9s ease-in-out infinite 3s;
}
.cta-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-inner { position: relative; z-index: 2; }
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 40px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding-bottom: 48px;
}
.footer-brand .nav-logo { display: inline-block; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.footer-contact a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: var(--transition);
}
.footer-contact a:hover { color: white; }

.footer-nav {
  display: flex;
  gap: 48px;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-nav-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}
.footer-nav-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-made { font-weight: 600; }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 48px; height: 48px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(21,101,192,0.5);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 50;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--blue-light); transform: translateY(-3px); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feat-card:nth-child(1) { grid-column: 1 / span 2; }
  .feat-card:nth-child(6) { grid-column: 1 / span 2; }
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .showcase-grid { grid-template-columns: repeat(2,1fr); }
  .showcase-item:last-child { grid-column: span 2; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 1; }
  .hero-visual { order: 2; }
  .hero-badge, .hero-actions, .hero-stats { justify-content: center; }
  .hero-sub { max-width: 100%; }
  .float-apple { right: -20px; }
  .float-google { left: -20px; }
  .ps-grid { grid-template-columns: 1fr; }
  .ps-arrow { transform: rotate(270deg); margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--blue), transparent); margin: 0 auto; }
  .fg-inner { grid-template-columns: 1fr; }
  .fg-visual { order: -1; }
  .test-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav { flex-direction: row; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero-inner { padding: 60px 0 100px; }
  .hstat { padding: 14px 18px; }
  .hstat-num { font-size: 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-card:nth-child(1),
  .feat-card:nth-child(6) { grid-column: 1; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-item:last-child { grid-column: 1; }
  .cta-trust { flex-direction: column; align-items: center; gap: 12px; }
  .phone-wrap { width: 230px; }
  .phone-frame { width: 230px; }
  .float-apple, .float-google { display: none; }
  .footer-nav { flex-direction: column; gap: 24px; }
}
