/* ================================
   QuickPay — Global Styles
   Developed By Nboy Media
   ================================ */
:root {
  --black: #050505;
  --surface: #0d0d0d;
  --surface-2: #111111;
  --card: #111111;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.6);
  --muted-2: rgba(255, 255, 255, 0.45);
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --gold: #d4af37;
  --gold-2: #f5d682;
  --gold-3: #8b6f1a;
  --emerald: #00c896;
  --emerald-2: #00a67a;
  --grad-gold: linear-gradient(135deg, #f5d682 0%, #d4af37 50%, #8b6f1a 100%);
  --grad-emerald: linear-gradient(135deg, #00c896 0%, #00a67a 100%);
  --grad-lux: linear-gradient(135deg, #d4af37 0%, #00c896 100%);
  --shadow-gold: 0 10px 40px -10px rgba(212, 175, 55, 0.55);
  --shadow-emerald: 0 10px 40px -10px rgba(0, 200, 150, 0.5);
  --shadow-glass: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1200px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: rgba(212, 175, 55, 0.35); color: #fff; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
/* ---------- Typography helpers ---------- */
h1, h2, h3, h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0; color: var(--muted); }
.text-gold { color: var(--gold); }
.text-emerald { color: var(--emerald); }
.text-gradient {
  background: var(--grad-lux);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h1 .text-gold,
h2 .text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* ---------- Glass ---------- */
.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}
.glass-strong {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border-2);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}
/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-lg { padding: 15px 26px; font-size: 0.95rem; }
.btn-block { width: 100%; }
.btn-gold {
  background: var(--grad-gold);
  color: #0a0a0a;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 40px -10px rgba(212, 175, 55, 0.8);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-2);
  color: var(--white);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}
/* ---------- Chip / eyebrow ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.chip .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--emerald);
  box-shadow: 0 0 10px var(--emerald);
  animation: pulseDot 1.6s ease-in-out infinite;
}
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.emerald { color: var(--emerald); }
/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 16px 0;
  transition: padding .25s ease;
}
.site-header.scrolled { padding: 8px 0; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; letter-spacing: -0.01em;
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad-gold);
  color: #0a0a0a;
  display: grid; place-items: center; font-weight: 900;
}
.brand-name { font-size: 1.05rem; }
.brand-name .text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 28px;
}
.nav-links a {
  font-size: 0.9rem; color: rgba(255, 255, 255, 0.7);
  transition: color .2s ease;
}
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; gap: 10px; }
.hamburger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 10px;
  flex-direction: column; justify-content: space-between;
}
.hamburger span {
  display: block; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.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); }
.mobile-menu {
  display: none;
  margin-top: 8px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 14px;
  color: rgba(255,255,255,0.85); font-size: 0.9rem;
  border-radius: 10px;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.05); }
.mobile-actions { display: flex; gap: 10px; padding: 10px 4px 4px; }
.mobile-actions .btn { flex: 1; }
/* ---------- Hero ---------- */
.hero { position: relative; padding: 140px 0 100px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(212, 175, 55, 0.18), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(0, 200, 150, 0.16), transparent 60%),
    linear-gradient(180deg, #050505 0%, #050505 100%);
}
.hero-bg::after {
  content: ""; 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: 44px 44px;
  mask-image: radial-gradient(ellipse at center, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 70%);
  opacity: 0.4;
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 60px;
}
.hero-copy h1 { margin-top: 20px; }
.hero-copy p { margin-top: 20px; max-width: 540px; font-size: 1.05rem; }
.hero-cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust {
  margin-top: 34px;
  display: flex; flex-wrap: wrap; gap: 24px;
  font-size: 0.8rem; color: var(--muted-2);
}
.hero-trust i { margin-right: 6px; }
/* ---------- Phone mockup ---------- */
.hero-visual { position: relative; max-width: 360px; margin: 0 auto; }
.hero-visual::before {
  content: ""; position: absolute; inset: -30px;
  background: var(--grad-lux); opacity: 0.2;
  filter: blur(60px); border-radius: 999px; z-index: -1;
}
.phone { padding: 12px; border-radius: 42px; }
.phone-screen {
  background: #0a0a0a;
  border-radius: 32px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.05);
}
.phone-status {
  display: flex; justify-content: space-between;
  font-size: 0.7rem; color: rgba(255,255,255,0.55);
}
.live-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 999px;
  background: var(--emerald); margin-right: 4px;
}
.wallet-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px;
}
.mini-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.mini-label.dark { color: rgba(0,0,0,0.7); }
.wallet-amount { font-size: 1.5rem; font-weight: 700; margin-top: 2px; }
.wallet-amount span { color: rgba(255,255,255,0.4); }
.wallet-icon {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--grad-gold); color: #0a0a0a;
  display: grid; place-items: center;
}
.earnings-card {
  margin-top: 16px; padding: 14px; border-radius: 16px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(0,200,150,0.12));
}
.earnings-amount { font-size: 1.3rem; font-weight: 700; margin-top: 4px;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.earnings-trend { margin-top: 6px; font-size: 0.7rem; color: var(--emerald); }
.earnings-trend i { margin-right: 4px; }
.quick-actions {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin-top: 16px;
}
.qa {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 12px; padding: 10px 6px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 0.65rem; color: rgba(255,255,255,0.7);
}
.qa span {
  width: 30px; height: 30px; border-radius: 10px;
  background: rgba(255,255,255,0.05); color: var(--gold);
  display: grid; place-items: center; font-size: 0.75rem;
}
.tx-list { margin-top: 10px; display: flex; flex-direction: column; gap: 8px; }
.tx {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  padding: 8px 12px; border-radius: 12px; font-size: 0.78rem;
}
.tx-l { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); }
.tx-i {
  width: 26px; height: 26px; border-radius: 999px;
  display: grid; place-items: center; font-size: 0.65rem;
}
.tx-i.in { background: rgba(0,200,150,0.15); color: var(--emerald); }
.tx-i.out { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.7); }
/* Floating cards */
.float-card {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid var(--border-2);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glass);
  animation: float 6s ease-in-out infinite;
  min-width: 200px;
}
.float-1 { top: 60px; left: -70px; }
.float-2 { top: 160px; right: -60px; animation-delay: 1.2s; }
.float-3 { bottom: 80px; right: -40px; animation-delay: 2.4s; }
.fc-icon {
  width: 34px; height: 34px; border-radius: 999px;
  display: grid; place-items: center; font-size: 0.75rem;
}
.fc-icon.emerald { background: rgba(0,200,150,0.2); color: var(--emerald); }
.fc-icon.gold { background: rgba(212,175,55,0.2); color: var(--gold); }
.fc-icon.white { background: rgba(255,255,255,0.1); color: var(--gold); }
.fc-title { font-size: 0.65rem; color: rgba(255,255,255,0.5); }
.fc-sub { font-size: 0.75rem; font-weight: 500; }
/* ---------- Stats ---------- */
.stats { padding: 40px 0 20px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.stat { padding: 24px; text-align: center; }
.stat-num {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { margin-top: 6px; font-size: 0.8rem; color: var(--muted); }
/* ---------- Sections ---------- */
.section { padding: 90px 0; position: relative; }
.section.alt { background: #080808; }
.section-head { max-width: 640px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 { margin-top: 12px; }
.section-head p { margin-top: 14px; }
/* ---------- Cards grid ---------- */
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 48px;
}
.cards-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  padding: 26px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.3); }
.card::after {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 999px;
  background: var(--grad-lux); opacity: 0;
  filter: blur(40px); transition: opacity .3s ease;
}
.card:hover::after { opacity: 0.25; }
.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-size: 1rem;
  position: relative; z-index: 1;
}
.card-icon.gold { background: var(--grad-gold); color: #0a0a0a; }
.card-icon.emerald {
  background: rgba(0,200,150,0.15); color: var(--emerald);
  border: 1px solid rgba(0,200,150,0.3);
}
.card h3 { margin-top: 18px; }
.card p { margin-top: 8px; font-size: 0.88rem; }
/* ---------- Timeline (How it works) ---------- */
.timeline {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  position: relative;
}
.timeline::before {
  content: ""; position: absolute; top: 34px; left: 40px; right: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}
.step { padding: 24px; position: relative; }
.step-num {
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--grad-gold); color: #0a0a0a;
  display: grid; place-items: center; font-weight: 700; font-size: 1.1rem;
  box-shadow: var(--shadow-gold);
  position: relative; z-index: 1;
}
.step h3 { margin-top: 18px; }
.step p { margin-top: 8px; font-size: 0.88rem; }
/* ---------- Dashboard ---------- */
.dashboard-wrap {
  display: grid; grid-template-columns: 2fr 3fr; gap: 40px; align-items: center;
}
.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.check-list i { margin-right: 8px; }
.dashboard {
  position: relative; padding: 24px; overflow: hidden;
}
.dash-blob {
  position: absolute; width: 260px; height: 260px; border-radius: 999px;
  filter: blur(80px); opacity: 0.4;
}
.blob-gold { background: rgba(212,175,55,0.5); top: -100px; right: -80px; }
.blob-emerald { background: rgba(0,200,150,0.4); bottom: -100px; left: -80px; }
.dash-inner { position: relative; z-index: 1; }
.dash-top { display: flex; justify-content: space-between; align-items: center; }
.dash-user { font-weight: 600; font-size: 1.05rem; }
.dash-top-r { display: flex; align-items: center; gap: 8px; }
.pill {
  width: 36px; height: 36px; display: grid; place-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 10px; font-size: 0.85rem;
}
.avatar-gold {
  width: 36px; height: 36px; border-radius: 999px; background: var(--grad-gold);
}
.dash-cards {
  margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.dash-card {
  padding: 16px; border-radius: 16px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
}
.dash-card.gold-fill { background: var(--grad-gold); color: #0a0a0a; border: none; }
.dash-card.emerald-out { border: 1px solid rgba(0,200,150,0.3); }
.dash-amt { font-size: 1.35rem; font-weight: 700; margin-top: 4px; }
.dash-tx { margin-top: 20px; padding: 16px; }
.dash-tx-head { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; margin-bottom: 10px; }
.dash-tx-head .muted { color: var(--muted-2); font-size: 0.7rem; }
.dash-tx .tx { margin-top: 8px; }
/* ---------- Pricing ---------- */
.pricing {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.plan {
  padding: 32px; position: relative;
}
.plan.featured {
  box-shadow: 0 0 0 1px rgba(212,175,55,0.4), 0 20px 60px -20px rgba(212,175,55,0.6);
}
.plan .badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad-gold); color: #0a0a0a;
  padding: 4px 12px; border-radius: 999px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em;
}
.plan-name { font-size: 0.9rem; color: var(--muted); }
.plan-price {
  margin-top: 12px; font-size: 2.2rem; font-weight: 700; display: flex; align-items: baseline; gap: 10px;
}
.plan-price.text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.plan-price span {
  font-size: 0.75rem; font-weight: 400; color: var(--muted-2);
  -webkit-text-fill-color: var(--muted-2);
}
.plan ul {
  list-style: none; padding: 0; margin: 24px 0;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 0.88rem; color: rgba(255,255,255,0.85);
}
.plan ul i { margin-right: 8px; }
/* ---------- Security ---------- */
.security-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.security-grid {
  margin-top: 30px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.sec-item { padding: 16px; display: flex; align-items: flex-start; gap: 12px; }
.sec-i {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(0,200,150,0.15); color: var(--emerald);
  border: 1px solid rgba(0,200,150,0.3);
  display: grid; place-items: center; flex-shrink: 0;
}
.sec-item h4 { font-size: 0.9rem; font-weight: 600; margin: 0; }
.sec-item p { margin-top: 4px; font-size: 0.78rem; color: var(--muted-2); }
.security-visual {
  padding: 40px; text-align: center; position: relative;
}
.sec-icon-lg {
  width: 96px; height: 96px; border-radius: 999px;
  background: var(--grad-gold); color: #0a0a0a;
  display: grid; place-items: center; font-size: 2rem;
  margin: 0 auto;
  animation: pulseGlow 2.4s ease-out infinite;
}
.security-visual h3 { margin-top: 24px; font-size: 1.5rem; font-weight: 600; }
.security-visual > p { margin-top: 10px; font-size: 0.9rem; }
.sec-badges {
  margin-top: 30px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.sec-badges > div { padding: 12px; font-size: 0.75rem; font-weight: 500; border-radius: 12px; text-align: center; }
/* ---------- Testimonials ---------- */
.stars { color: var(--gold); display: flex; gap: 3px; font-size: 0.75rem; }
.quote { margin-top: 16px; font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.person { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--grad-lux); color: #0a0a0a;
  display: grid; place-items: center; font-weight: 700;
}
.p-name { font-size: 0.85rem; font-weight: 600; }
.p-loc { font-size: 0.72rem; color: var(--muted-2); }
/* ---------- FAQ ---------- */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 20px 22px;
  font-size: 0.95rem; font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q i { transition: transform .3s ease; color: var(--muted); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
.faq-a p { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
/* ---------- CTA ---------- */
.cta {
  padding: 70px 40px; text-align: center; position: relative; overflow: hidden;
  border-radius: var(--radius-xl);
}
.cta-blob {
  position: absolute; width: 280px; height: 280px; border-radius: 999px; filter: blur(80px);
}
.cta-blob.b1 { top: -80px; left: -80px; background: rgba(212,175,55,0.35); }
.cta-blob.b2 { bottom: -80px; right: -80px; background: rgba(0,200,150,0.35); }
.cta > * { position: relative; z-index: 1; }
.cta h2 { margin-top: 22px; font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; }
.cta > p { margin-top: 16px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { margin-top: 32px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 30px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-links { display: flex; gap: 20px; font-size: 0.8rem; color: var(--muted-2); }
.footer-links a:hover { color: #fff; }
.copyright { font-size: 0.75rem; color: var(--muted-2); }
/* ---------- Animations ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.5), var(--shadow-gold); }
  50% { box-shadow: 0 0 0 16px rgba(212,175,55,0), var(--shadow-gold); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; }
.reveal.visible { animation: rise .8s ease-out forwards; }
/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 80px; }
  .hero-copy { text-align: center; margin: 0 auto; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .cards-grid, .cards-grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .dashboard-wrap, .security-wrap { grid-template-columns: 1fr; gap: 40px; }
  .pricing { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .hero { padding: 120px 0 80px; }
  .float-card { display: none; }
  .cards-grid, .cards-grid.grid-4, .timeline { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .dash-cards { grid-template-columns: 1fr; }
  .cta { padding: 50px 24px; }
  .btn { padding: 11px 16px; font-size: 0.85rem; }
  .btn-lg { padding: 13px 22px; }
  .hero-trust { gap: 14px; font-size: 0.75rem; }
  .footer-inner { flex-direction: column; text-align: center; }
}
