/* ============================================================
   QR 4 Emergency — Design System
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  /* Brand */
  --primary: #0a2540;
  --primary-2: #1e3a8a;
  --primary-3: #2563eb;
  --primary-soft: rgba(37, 99, 235, 0.08);
  --accent: #e11d48;
  --accent-2: #f43f5e;
  --accent-soft: rgba(225, 29, 72, 0.08);
  --success: #10b981;
  --success-soft: rgba(16, 185, 129, 0.1);

  /* Surfaces */
  --bg: #f7f8fc;
  --bg-2: #eef1f8;
  --surface: #ffffff;
  --surface-muted: #f1f5f9;
  --border: #e5e9f2;
  --border-strong: #cdd5e3;

  /* Text */
  --text: #0f172a;
  --text-2: #475569;
  --text-3: #64748b;
  --text-light: #94a3b8;

  /* Type */
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 6px 16px -4px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 40px -12px rgba(15, 23, 42, 0.12), 0 8px 16px -8px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 12px 32px -8px rgba(37, 99, 235, 0.35);
  --shadow-accent: 0 12px 32px -8px rgba(225, 29, 72, 0.35);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 150ms var(--ease);
  --t: 250ms var(--ease);
  --t-slow: 400ms var(--ease);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #0a2540 0%, #1e3a8a 50%, #2563eb 100%);
  --grad-accent: linear-gradient(135deg, #e11d48 0%, #f43f5e 100%);
  --grad-mesh:
    radial-gradient(at 18% 12%, rgba(37, 99, 235, 0.12) 0px, transparent 50%),
    radial-gradient(at 82% 88%, rgba(225, 29, 72, 0.08) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(255, 255, 255, 0.6) 0px, transparent 60%);
}

/* ----------- Reset / Base ----------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.015em;
}
::selection { background: var(--primary-3); color: #fff; }

/* ----------- Layout ----------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-bg { background: var(--surface); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-3);
  background: var(--primary-soft);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  margin-bottom: 18px;
}
.eyebrow.accent { color: var(--accent); background: var(--accent-soft); border-color: rgba(225, 29, 72, 0.18); }

.section-title {
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head { margin-bottom: 56px; }
.section-head .section-subtitle { margin-bottom: 0; }

/* ----------- Buttons ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background-color var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
  text-align: center;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.5); }
.btn-secondary {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -10px rgba(225, 29, 72, 0.5); }
.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--primary-3); color: var(--primary-3); transform: translateY(-2px); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--primary-3); color: var(--primary-3); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ----------- Header ----------- */
header#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color var(--t), box-shadow var(--t), border-color var(--t);
}
header#header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo-wrapper { display: inline-flex; align-items: center; gap: 12px; }
.logo-img {
  height: 44px; width: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  background: #fff;
  border: 1px solid var(--border);
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-text small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-top: 4px;
}
.logo-text .logo-parent {
  color: inherit;
  opacity: 0.7;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  margin-top: 5px;
}
.logo-text .logo-parent + small { margin-top: 1px; }

.nav-menu {
  display: flex; align-items: center; gap: 6px;
}
.nav-menu li { display: inline-flex; }
.nav-link {
  position: relative;
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--text-2);
  padding: 10px 14px;
  border-radius: 10px;
  transition: color var(--t), background-color var(--t);
}
.nav-link:hover { color: var(--primary); background: var(--surface-muted); }
.nav-link.active { color: var(--primary); font-weight: 600; }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
}
.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 10px 18px; font-size: 0.88rem; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
}

@media (max-width: 880px) {
  .hamburger { display: inline-flex; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-menu {
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: var(--t);
  }
  .nav-menu.active { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-link { padding: 14px 16px; }
  .nav-cta { margin: 6px 0 0; }
  .nav-cta .btn { width: 100%; padding: 14px 18px; font-size: 0.95rem; }
}

/* ----------- Hero ----------- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.10) 0, transparent 45%),
    radial-gradient(circle at 5% 90%, rgba(225, 29, 72, 0.07) 0, transparent 40%),
    var(--bg);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center top, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at center top, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-content { max-width: 600px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 22px;
  box-shadow: var(--shadow-xs);
}
.hero-tag-dot {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--success-soft);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--success);
  position: relative;
}
.hero-tag-dot::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-title .grad {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-2);
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-2);
}
.hero-trust .trust-item { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .trust-item svg { color: var(--success); width: 18px; height: 18px; flex-shrink: 0; }

/* Hero visual — phone mock with QR + masked call */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 640px;
}
.phone-mock {
  position: relative;
  width: 320px;
  height: 620px;
  background: linear-gradient(180deg, #1a2949 0%, #0a2540 100%);
  border-radius: 46px;
  padding: 14px;
  box-shadow:
    0 40px 80px -20px rgba(10, 37, 64, 0.5),
    0 20px 40px -10px rgba(10, 37, 64, 0.3),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  transform: rotate(-6deg);
  z-index: 2;
}
.phone-mock::before {
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 24px;
  background: #0a1729;
  border-radius: 999px;
  z-index: 3;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  border-radius: 30px;
  overflow: hidden;
  padding: 56px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
}
.phone-statusbar {
  position: absolute;
  top: 22px; left: 24px; right: 24px;
  display: flex; justify-content: space-between;
  font-size: 0.62rem;
  font-weight: 700;
  color: #94a3b8;
  z-index: 2;
}
/* Emergency QR Card (inside phone mock) */
.emg-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 14px 36px -14px rgba(15, 23, 42, 0.28);
}
.emg-head {
  background: #ed1c24;
  color: #fff;
  padding: 16px 4px 12px;
  text-align: center;
  margin: 0;
  border-radius: 0;
}
.emg-head h4 {
  margin: 0;
  color: #fff;
  font-family: 'Anton', 'Impact', 'Arial Black', var(--font-display), sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  letter-spacing: 0.005em;
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}
.emg-head p {
  margin: 6px 0 0;
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  opacity: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.emg-plate {
  color: #ed1c24;
  font-family: var(--font-display, 'Poppins', sans-serif);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 8px 0 0;
  white-space: nowrap;
}
.emg-body {
  padding: 2px 6px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.emg-qr-frame {
  position: relative;
  width: 196px; height: 196px;
  padding: 10px;
  background: #fff;
}
.emg-qr-svg {
  width: 100%; height: 100%;
  display: block;
  shape-rendering: crispEdges;
}
.emg-qr-svg path { fill: #000; }
.emg-corner {
  position: absolute;
  width: 32px; height: 32px;
  border: 6px solid #000;
  border-radius: 3px;
}
.emg-corner.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.emg-corner.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.emg-corner.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.emg-corner.br { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.emg-ext-label {
  margin: 6px 0 2px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  font-family: var(--font-display, 'Poppins', sans-serif);
}
.emg-ext-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  padding: 2px 0 6px;
  min-width: 0;
}
.emg-brand {
  font-family: var(--font-display, 'Poppins', sans-serif);
  font-weight: 800;
  font-size: 0.66rem;
  color: #0a1220;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.emg-plus {
  width: 16px; height: 16px;
  color: #ed1c24;
  display: inline-flex;
  flex-shrink: 0;
}
.emg-plus svg { width: 100%; height: 100%; }
.emg-ext-pill {
  background: #fff;
  color: #ed1c24;
  font-family: var(--font-display, 'Poppins', sans-serif);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  padding: 2px 10px;
  border-radius: 8px;
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  min-width: 60px;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.emg-footer {
  margin-top: auto;
  background: #ed1c24;
  color: #fff;
  padding: 10px 10px 12px;
  border-radius: 0;
}
.emg-foot-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px 4px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.emg-foot-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.emg-foot-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.emg-foot-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 2px 2px;
  gap: 12px;
}
.emg-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
  white-space: nowrap;
}
.emg-tag + .emg-tag::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 8%;
  bottom: 8%;
  width: 1.5px;
  background: rgba(255, 255, 255, 0.5);
}
.emg-tag svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.82rem;
  animation: float 6s ease-in-out infinite;
}
.float-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-card-icon svg { width: 18px; height: 18px; }
.float-card.fc-1 {
  top: 18%; left: -8%;
  animation-delay: 0s;
}
.float-card.fc-1 .float-card-icon { background: var(--primary-soft); color: var(--primary-3); }
.float-card.fc-2 {
  bottom: 14%; right: -10%;
  animation-delay: 1.5s;
}
.float-card.fc-2 .float-card-icon { background: var(--accent-soft); color: var(--accent); }
.float-card strong { color: var(--text); font-weight: 700; display: block; }
.float-card small { color: var(--text-3); font-size: 0.7rem; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 992px) {
  .hero { padding: 130px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-content { margin: 0 auto; }
  .hero-tag, .hero-ctas, .hero-trust { justify-content: center; }
  .hero-visual { min-height: 640px; }
  .float-card.fc-1 { left: -5%; }
  .float-card.fc-2 { right: -5%; }
}
@media (max-width: 520px) {
  .hero-ctas .btn { width: 100%; }
  .phone-mock { transform: rotate(-4deg) scale(0.92); }
  .float-card { display: none; }
}

/* ----------- Trust Strip ----------- */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: auto repeat(4, 1fr);
  align-items: center;
  gap: 36px;
}
.trust-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-3);
  font-weight: 700;
  padding-right: 24px;
  border-right: 1px solid var(--border);
}
.trust-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-2);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.trust-logo svg { width: 22px; height: 22px; color: var(--primary-3); flex-shrink: 0; }
@media (max-width: 880px) {
  .trust-strip-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .trust-label { grid-column: 1 / -1; border-right: 0; padding-right: 0; text-align: center; padding-bottom: 4px; }
}

/* ----------- Stats ----------- */
.stats {
  background: var(--grad-primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(225, 29, 72, 0.15) 0, transparent 40%);
}
.stats > .container { position: relative; z-index: 1; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item { text-align: center; padding: 18px; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  background: linear-gradient(180deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.92rem; color: rgba(255, 255, 255, 0.75); font-weight: 500; }
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ----------- How It Works ----------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--border-strong) 50%, transparent 50%);
  background-size: 12px 2px;
  z-index: 0;
}
.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px 24px;
  text-align: center;
  z-index: 1;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-3); }
.step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--grad-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 8px 18px -4px rgba(37, 99, 235, 0.4);
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  border: 2px dashed rgba(37, 99, 235, 0.25);
  opacity: 0;
  transition: var(--t);
}
.step-card:hover .step-num::after { opacity: 1; }
.step-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step-card p { color: var(--text-2); font-size: 0.92rem; }
@media (max-width: 992px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .steps-grid::before { display: none; }
}
@media (max-width: 520px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ----------- Features ----------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, var(--primary-soft), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: var(--t);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.25);
}
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary-3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: var(--t);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card:hover .feature-icon { background: var(--grad-primary); color: #fff; transform: scale(1.05); }
.feature-card.alt .feature-icon { background: var(--accent-soft); color: var(--accent); }
.feature-card.alt:hover .feature-icon { background: var(--grad-accent); color: #fff; }
.feature-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-2); font-size: 0.94rem; }

/* ----------- Pricing ----------- */
.pricing-wrap {
  display: flex;
  justify-content: center;
}
.pricing-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 44px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  pointer-events: none;
}
.pricing-card > * { position: relative; }
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad-accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: var(--shadow-accent);
}
.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.pricing-card .pricing-desc {
  color: var(--text-2);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.pricing-price small {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-3);
}
.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
}
.pricing-strike { color: var(--text-light); text-decoration: line-through; font-size: 1.1rem; }
.pricing-tax {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 6px;
}
.pricing-tax svg { width: 14px; height: 14px; color: var(--success); }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-features li {
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-features li svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--success);
}
.pricing-trust {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-3);
}
.pricing-trust span { display: inline-flex; align-items: center; gap: 6px; }
.pricing-trust svg { width: 14px; height: 14px; color: var(--success); }

/* ----------- Testimonials ----------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--t);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-quote {
  font-size: 2.5rem;
  font-family: var(--font-display);
  color: var(--primary-3);
  line-height: 1;
  margin-bottom: 6px;
}
.testimonial-stars {
  color: #facc15;
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-text {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 22px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  background: var(--grad-primary);
  flex-shrink: 0;
}
.testimonial-avatar.alt { background: var(--grad-accent); }
.testimonial-meta strong { display: block; color: var(--text); font-size: 0.95rem; font-weight: 600; }
.testimonial-meta small { color: var(--text-3); font-size: 0.82rem; }

/* ----------- FAQ Accordion ----------- */
.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq-item.open { border-color: var(--primary-3); box-shadow: var(--shadow-sm); }
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
}
.faq-trigger:hover { color: var(--primary-3); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--t);
}
.faq-icon svg { width: 14px; height: 14px; transition: var(--t); }
.faq-item.open .faq-icon { background: var(--grad-primary); color: #fff; }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}
.faq-body-inner {
  padding: 0 24px 22px;
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ----------- CTA Banner ----------- */
.cta-banner {
  position: relative;
  background: var(--grad-primary);
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(225, 29, 72, 0.35) 0, transparent 35%),
    radial-gradient(circle at 88% 82%, rgba(37, 99, 235, 0.45) 0, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0, transparent 50%);
}
.cta-banner::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at center, #000 30%, transparent 75%);
}
.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.cta-banner .hero-ctas { justify-content: center; margin-bottom: 0; }
.cta-banner .btn-outline { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.cta-banner .btn-outline:hover { background: #fff; color: var(--primary); border-color: #fff; }

/* ----------- Page Header (inner pages) ----------- */
.page-header {
  padding: 140px 0 60px;
  background:
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.08) 0, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(225, 29, 72, 0.05) 0, transparent 40%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 90%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 90%);
}
.page-header > .container { position: relative; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-3);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--text-2); font-weight: 500; }
.breadcrumb a:hover { color: var(--primary-3); }
.breadcrumb-sep { color: var(--text-light); }
.breadcrumb [aria-current="page"] { color: var(--primary); font-weight: 600; }
.page-header h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  max-width: 800px;
}
.page-header h1 .grad {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-header .lede {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 700px;
}

/* ----------- About Page ----------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-grid h2 { text-align: left; font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 18px; }
.about-grid p { color: var(--text-2); margin-bottom: 16px; font-size: 1rem; }
.about-grid p strong { color: var(--text); }
.about-visual {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--grad-primary);
  padding: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 420px;
  justify-content: center;
}
.about-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.12) 0, transparent 40%),
    radial-gradient(circle at 75% 75%, rgba(225, 29, 72, 0.18) 0, transparent 40%);
}
.about-visual > * { position: relative; z-index: 1; }
.about-value-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.about-value-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.about-value-icon svg { width: 20px; height: 20px; }
.about-value-card strong { font-family: var(--font-display); display: block; font-size: 0.98rem; margin-bottom: 2px; }
.about-value-card span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.78); }

.about-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.vision-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  padding-left: 28px;
}
.vision-card::before {
  content: '';
  position: absolute;
  left: 0; top: 24px; bottom: 24px;
  width: 4px;
  border-radius: 4px;
  background: var(--grad-primary);
}
.vision-card.secondary::before { background: var(--grad-accent); }
.vision-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.vision-card p { font-size: 0.92rem; color: var(--text-2); margin: 0; }

@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid h2 { text-align: center; }
  .about-vision-grid { grid-template-columns: 1fr; }
}

/* ----------- Contact Page ----------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}
.contact-info > h2 { text-align: left; font-size: clamp(1.6rem, 2.8vw, 2rem); margin-bottom: 14px; }
.contact-info > p { color: var(--text-2); margin-bottom: 28px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  gap: 16px;
  transition: var(--t);
}
.contact-info-card:hover { border-color: var(--primary-3); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary-3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-card.accent .contact-info-icon { background: var(--accent-soft); color: var(--accent); }
.contact-info-details h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-info-details p { font-size: 0.92rem; color: var(--text-2); line-height: 1.55; }
.contact-info-details p strong { color: var(--text); }

.contact-form-wrapper {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrapper h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-form-wrapper .form-intro { color: var(--text-2); font-size: 0.93rem; margin-bottom: 28px; }
.form-group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 8px; color: var(--text); }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--t), background-color var(--t), box-shadow var(--t);
}
.form-control::placeholder { color: var(--text-light); }
.form-control:focus {
  outline: none;
  border-color: var(--primary-3);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-error {
  color: var(--accent);
  font-size: 0.78rem;
  margin-top: 6px;
  display: none;
}
.form-success-msg {
  display: none;
  background: var(--success-soft);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #065f46;
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  font-weight: 500;
}

@media (max-width: 992px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 520px) {
  .form-group-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-wrapper { padding: 28px 22px; }
}

/* ----------- Legal Pages ----------- */
.legal-wrapper {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}
.legal-sidebar {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
}
.legal-sidebar h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 16px;
  font-weight: 700;
  font-family: var(--font-body);
}
.legal-nav-list { display: flex; flex-direction: column; gap: 4px; }
.legal-nav-link {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-2);
  transition: var(--t);
}
.legal-nav-link:hover { background: var(--surface-muted); color: var(--text); }
.legal-nav-link.active {
  background: var(--primary-soft);
  color: var(--primary-3);
  font-weight: 600;
}
.legal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.legal-content h1 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 8px; }
.legal-meta {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.legal-meta svg { width: 14px; height: 14px; }
.legal-body h2 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body ul {
  font-size: 0.96rem;
  color: var(--text-2);
  margin-bottom: 14px;
  line-height: 1.75;
}
.legal-body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
  list-style: none;
}
.legal-body ul li {
  position: relative;
  padding-left: 26px;
}
.legal-body ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: 0.7em;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--grad-accent);
}
.legal-body a { color: var(--primary-3); font-weight: 500; }
.legal-body a:hover { text-decoration: underline; }
.legal-body strong { color: var(--text); font-weight: 600; }

@media (max-width: 992px) {
  .legal-wrapper { grid-template-columns: 1fr; gap: 24px; }
  .legal-sidebar { position: static; }
  .legal-content { padding: 32px 24px; }
}

/* ----------- Footer ----------- */
footer {
  background: #06152f;
  color: #cbd5e1;
  padding-top: 72px;
  font-size: 0.92rem;
  position: relative;
}
footer::before {
  content: '';
  position: absolute; left: 0; top: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-3) 0%, var(--accent) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-about .logo-text { color: #fff; }
.footer-about .logo-img { background: #fff; }
.footer-about p { color: #94a3b8; line-height: 1.7; margin: 16px 0 18px; font-size: 0.9rem; }
.footer-legal-business {
  font-size: 0.8rem;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: 10px;
  margin-top: 12px;
}
.footer-legal-business strong { color: #fff; }
.footer-title {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-body);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: var(--t);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '';
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--t);
}
.footer-links a:hover { color: #fff; }
.footer-links a:hover::before { width: 12px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: #94a3b8; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--primary-3); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a:hover { color: #fff; }

.footer-disclaimer-box {
  background: rgba(225, 29, 72, 0.06);
  border: 1px solid rgba(225, 29, 72, 0.15);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 32px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.footer-disclaimer-icon {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.footer-disclaimer-icon svg { width: 16px; height: 16px; }
.footer-disclaimer-box h4 {
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-disclaimer-box p { color: #cbd5e1; font-size: 0.84rem; line-height: 1.6; margin: 0; }

.footer-pay {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-pay-label {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.footer-pay-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pay-badge svg { width: 12px; height: 12px; color: var(--success); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: #64748b;
  font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a { color: #94a3b8; }
.footer-bottom-links a:hover { color: #fff; }

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ----------- Scroll Reveal ----------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ----------- Mobile sticky CTA ----------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 900;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 8px 8px 20px;
  box-shadow: var(--shadow-lg);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mobile-cta-text { font-size: 0.86rem; font-weight: 600; color: var(--text); }
.mobile-cta-text small { display: block; color: var(--text-3); font-weight: 400; font-size: 0.74rem; }
.mobile-cta .btn { padding: 11px 20px; font-size: 0.86rem; }
@media (max-width: 520px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
}

/* ============================================================
   QR Sticker Carousel (below Hero)
   ============================================================ */
.qr-carousel-section {
  padding: 72px 0 60px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.qr-carousel-header {
  text-align: center;
  margin: 0 auto 36px;
  max-width: 620px;
}
.qr-carousel-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  color: var(--text);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.qr-carousel-header p {
  color: var(--text-3);
  font-size: 1rem;
  line-height: 1.6;
}
.qr-carousel {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #0a2540 0%, #1e3a8a 100%);
  box-shadow: var(--shadow-lg);
  padding: 0;
  overflow: hidden;
}
.qr-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.qr-carousel-track {
  display: flex;
  transition: transform 650ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.qr-carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.qr-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.qr-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  box-shadow: 0 6px 16px -4px rgba(0,0,0,0.35);
  cursor: pointer;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform var(--t), background var(--t), box-shadow var(--t);
  padding: 0;
}
.qr-carousel-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 8px 20px -4px rgba(0,0,0,0.4);
}
.qr-carousel-btn:active { transform: translateY(-50%) scale(0.98); }
.qr-carousel-btn.prev { left: 16px; }
.qr-carousel-btn.next { right: 16px; }
.qr-carousel-btn svg { width: 20px; height: 20px; }
.qr-carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
  padding: 6px 12px;
  background: rgba(10, 37, 64, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
}
.qr-carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--t);
}
.qr-carousel-dot:hover { background: rgba(255,255,255,0.7); }
.qr-carousel-dot.active {
  background: var(--accent);
  transform: scale(1.25);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.25);
}

@media (max-width: 700px) {
  .qr-carousel-section { padding: 48px 0 40px; }
  .qr-carousel-slide { aspect-ratio: 4 / 3; }
  .qr-carousel-btn { width: 38px; height: 38px; }
  .qr-carousel-btn.prev { left: 10px; }
  .qr-carousel-btn.next { right: 10px; }
  .qr-carousel-btn svg { width: 16px; height: 16px; }
  .qr-carousel-dots { bottom: 12px; padding: 5px 10px; gap: 8px; }
}

/* ============================================================
   QR Loader — full-screen boot experience
   ============================================================ */
.qr-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(1200px 800px at 20% 15%, rgba(37, 99, 235, 0.22), transparent 55%),
    radial-gradient(1000px 700px at 85% 85%, rgba(225, 29, 72, 0.20), transparent 55%),
    linear-gradient(160deg, #050b18 0%, #0a1832 45%, #050914 100%);
  overflow: hidden;
  transition: opacity 650ms var(--ease), visibility 650ms var(--ease);
}
.qr-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
body.qr-loading { overflow: hidden; }

/* Ambient animated background wash */
.qr-loader::before,
.qr-loader::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
}
.qr-loader::before {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #e11d48 0%, transparent 70%);
  top: -120px; left: -120px;
  animation: qrl-drift 9s ease-in-out infinite alternate;
}
.qr-loader::after {
  width: 620px; height: 620px;
  background: radial-gradient(circle, #2563eb 0%, transparent 70%);
  bottom: -180px; right: -160px;
  animation: qrl-drift 11s ease-in-out infinite alternate-reverse;
}
@keyframes qrl-drift {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(60px,40px,0) scale(1.15); }
}

/* Fine grid overlay for depth */
.qr-loader-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
  pointer-events: none;
}

.qr-loader-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  animation: qrl-boot 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes qrl-boot {
  from { opacity: 0; transform: translateY(18px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Sticker card */
.qr-loader-card {
  position: relative;
  width: min(88vw, 340px);
  background: #fff;
  border-radius: 24px;
  padding: 12px 12px 14px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 60px rgba(225, 29, 72, 0.35);
  animation: qrl-float 4s ease-in-out infinite;
  overflow: hidden;
}
.qr-loader-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 27px;
  background: conic-gradient(from 0deg, #e11d48, #f43f5e, #2563eb, #e11d48);
  filter: blur(14px);
  opacity: 0.55;
  z-index: -1;
  animation: qrl-spin 6s linear infinite;
}
@keyframes qrl-spin { to { transform: rotate(360deg); } }
@keyframes qrl-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Red banner header */
.qr-loader-banner {
  background: linear-gradient(135deg, #e11d48 0%, #f43f5e 100%);
  border-radius: 14px 14px 10px 10px;
  padding: 12px 12px 9px;
  color: #fff;
  text-align: center;
  box-shadow: 0 6px 20px -6px rgba(225, 29, 72, 0.6);
}
.qr-loader-banner h2 {
  color: #fff;
  font-family: 'Anton', 'Impact', 'Arial Black', var(--font-display), sans-serif;
  font-weight: 400;
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}
.qr-loader-banner p {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  margin: 5px 0 0;
  opacity: 0.95;
}

/* Plate */
.qr-loader-plate {
  color: #e11d48;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  text-align: center;
  letter-spacing: 1.5px;
  margin: 8px 0 6px;
  filter: blur(6px);
  user-select: none;
}

/* QR area */
.qr-loader-code {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  padding: 16px;
  overflow: hidden;
}

/* Corner viewfinder brackets */
.qr-loader-bracket {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 4px solid #111;
  pointer-events: none;
}
.qr-loader-bracket.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; border-top-left-radius: 6px; }
.qr-loader-bracket.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; border-top-right-radius: 6px; }
.qr-loader-bracket.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; border-bottom-left-radius: 6px; }
.qr-loader-bracket.br { bottom: 0; right: 0; border-left: 0; border-top: 0; border-bottom-right-radius: 6px; }

/* QR module grid */
.qr-loader-modules {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(21, 1fr);
  grid-template-rows: repeat(21, 1fr);
  gap: 1px;
}
.qr-loader-modules span {
  border-radius: 1px;
}
.qr-loader-modules span.on {
  background: #0a2540;
  animation: qrl-pulse 2.4s ease-in-out infinite;
}
@keyframes qrl-pulse {
  0%, 100% { background: #0a2540; box-shadow: none; }
  50%      { background: #2563eb; box-shadow: 0 0 6px rgba(37, 99, 235, 0.55); }
}

/* Laser scan line */
.qr-loader-scan {
  position: absolute;
  left: 6%; right: 6%;
  top: 0;
  height: 10%;
  background: linear-gradient(to bottom,
    rgba(225, 29, 72, 0) 0%,
    rgba(225, 29, 72, 0.55) 45%,
    rgba(255, 80, 120, 0.85) 50%,
    rgba(225, 29, 72, 0.55) 55%,
    rgba(225, 29, 72, 0) 100%);
  box-shadow:
    0 0 24px 8px rgba(225, 29, 72, 0.55),
    0 0 60px 12px rgba(225, 29, 72, 0.3);
  border-radius: 4px;
  animation: qrl-scan 2.2s cubic-bezier(0.55, 0, 0.45, 1) infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}
@keyframes qrl-scan {
  0%   { transform: translateY(-30%); opacity: 0.2; }
  15%  { opacity: 1; }
  50%  { transform: translateY(950%); opacity: 1; }
  65%  { opacity: 0.2; }
  100% { transform: translateY(-30%); opacity: 0.2; }
}

/* Extension row */
.qr-loader-ext {
  text-align: center;
  padding: 2px 4px 4px;
}
.qr-loader-ext-label {
  font-family: var(--font-display);
  font-weight: 700;
  color: #111;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.qr-loader-ext-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
}
.qr-loader-brand {
  font-family: var(--font-display);
  font-weight: 800;
  color: #0a2540;
  letter-spacing: 1px;
}
.qr-loader-cross {
  color: #e11d48;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 900;
  transform: translateY(-1px);
}
.qr-loader-num {
  color: #e11d48;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  background: #fff;
  border: 2px solid #e5e9f2;
  border-radius: 8px;
  padding: 3px 12px;
  min-width: 74px;
  letter-spacing: 1px;
  filter: blur(5px);
  user-select: none;
}

/* Status line below card */
.qr-loader-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.qr-loader-dots {
  display: inline-flex;
  gap: 5px;
}
.qr-loader-dots i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #e11d48;
  box-shadow: 0 0 8px rgba(225,29,72,0.7);
  animation: qrl-dot 1.2s ease-in-out infinite;
}
.qr-loader-dots i:nth-child(2) { animation-delay: 0.15s; }
.qr-loader-dots i:nth-child(3) { animation-delay: 0.3s; }
@keyframes qrl-dot {
  0%, 60%, 100% { transform: translateY(0);   opacity: 0.5; }
  30%           { transform: translateY(-6px); opacity: 1;   }
}

/* Progress rail */
.qr-loader-rail {
  width: min(88vw, 340px);
  height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
}
.qr-loader-rail::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, #e11d48 30%, #f43f5e 50%, #e11d48 70%, transparent);
  animation: qrl-rail 1.6s ease-in-out infinite;
}
@keyframes qrl-rail {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(320%);  }
}

@media (max-width: 380px) {
  .qr-loader-banner h2   { font-size: 1.25rem; }
  .qr-loader-plate       { font-size: 1rem; }
  .qr-loader-ext-row     { font-size: 0.72rem; gap: 6px; }
  .qr-loader-num         { min-width: 60px; padding: 2px 10px; font-size: 0.9rem; }
  .qr-loader-bracket     { width: 22px; height: 22px; border-width: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  .qr-loader *,
  .qr-loader::before,
  .qr-loader::after { animation: none !important; }
}
