/* ═══════════════════════════════════════════════
   2bepaid Digital Banking — Deep Navy Glassmorphism
   ═══════════════════════════════════════════════ */

:root {
  /* Core palette */
  --bg-deep: #050a1a;
  --bg-surface: #0a1128;
  --bg-elevated: #0f1a3a;

  /* Trust-building accents */
  --mint: #00e5a0;
  --mint-dim: #00b880;
  --blue: #0088ff;
  --blue-dim: #0055cc;
  --gold: #f4c542;
  --purple: #a855f7;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 20px;

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #8a94a6;
  --text-muted: #5a6478;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container-max: 1200px;

  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

/* ── Ambient Background ── */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  will-change: transform;
  animation: orb-float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #00e5a0, transparent 70%);
  top: -10%; left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #0088ff, transparent 70%);
  top: 40%; right: -15%;
  animation-delay: -7s;
}

.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #a855f7, transparent 70%);
  bottom: 10%; left: 20%;
  animation-delay: -14s;
}

.orb-4 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #f4c542, transparent 70%);
  top: 60%; left: 60%;
  animation-delay: -3s;
  opacity: 0.15;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(30px, 40px) scale(1.02); }
}

/* ── Grain Overlay ── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── Glass Cards ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}

.nav.scrolled {
  background: rgba(5, 10, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 32px; height: 32px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--mint), var(--mint-dim));
  color: var(--bg-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 0 24px rgba(0, 229, 160, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 229, 160, 0.35);
}

.btn-sm { padding: 8px 20px; font-size: 0.85rem; border-radius: 10px; }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 14px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

/* ── Gradient Text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--mint), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid rgba(0, 229, 160, 0.15);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mint);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-avatars {
  display: flex;
}

.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  border: 2px solid var(--bg-deep);
  margin-right: -8px;
}

.hero-trust strong { color: var(--text-primary); }

/* ── Dashboard Preview ── */
.hero-visual {
  position: relative;
}

.dashboard-preview {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: perspective(800px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.dashboard-preview:hover {
  transform: perspective(800px) rotateY(-1deg) rotateX(0.5deg);
}

.card-balance {
  padding: 28px;
}

.card-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 8px;
}

.card-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.amount-cents {
  font-size: 1.4rem;
  color: var(--text-secondary);
}

.card-trend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 8px;
}

.trend-up { color: var(--mint); }

.mini-chart {
  margin-top: 16px;
  height: 50px;
}

.mini-chart svg {
  width: 100%;
  height: 100%;
}

.chart-line {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: draw-line 2s ease-out 0.8s forwards;
}

.chart-area {
  opacity: 0;
  animation: fade-in 1s ease-out 1.4s forwards;
}

.chart-dot {
  opacity: 0;
  animation: fade-in 0.5s ease-out 2.2s forwards;
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

@keyframes fade-in {
  to { opacity: 1; }
}

.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card-mini {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.card-mini-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-mini-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.card-mini-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ── Transaction Card ── */
.card-transaction {
  padding: 20px;
}

.tx-header {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.tx-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tx-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tx-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tx-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tx-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.tx-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.tx-amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

.tx-negative { color: #ff6b6b; }
.tx-positive { color: var(--mint); }

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mint);
  margin-bottom: 16px;
}

.section h2, h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
}

.section-header .section-sub { margin: 0 auto; }

/* ── Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  animation-delay: calc(var(--delay, 0) * 0.1s);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

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

.icon-mint { background: rgba(0, 229, 160, 0.1); color: var(--mint); }
.icon-blue { background: rgba(0, 136, 255, 0.1); color: var(--blue); }
.icon-gold { background: rgba(244, 197, 66, 0.1); color: var(--gold); }
.icon-purple { background: rgba(168, 85, 247, 0.1); color: var(--purple); }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.feature-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mint);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s;
}

.feature-link:hover { gap: 8px; }

/* ── Security Section ── */
.security-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.sec-item {
  display: flex;
  gap: 16px;
}

.sec-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sec-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.sec-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Shield Visual ── */
.security-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.shield-container {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ring-spin linear infinite;
}

.ring-1 {
  width: 240px; height: 240px;
  border-color: rgba(0, 229, 160, 0.15);
  animation-duration: 20s;
  border-style: dashed;
}

.ring-2 {
  width: 290px; height: 290px;
  border-color: rgba(0, 136, 255, 0.1);
  animation-duration: 30s;
  animation-direction: reverse;
}

.ring-3 {
  width: 340px; height: 340px;
  border-color: rgba(168, 85, 247, 0.08);
  animation-duration: 40s;
  border-style: dashed;
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

.shield-core {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(0, 229, 160, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(0, 229, 160, 0.15);
  animation: shield-pulse 3s ease-in-out infinite;
}

@keyframes shield-pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(0, 229, 160, 0.15); }
  50% { box-shadow: 0 0 80px rgba(0, 229, 160, 0.25); }
}

.float-badge {
  position: absolute;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: float-badge 6s ease-in-out infinite;
}

.badge-1 { top: 20px; right: -10px; animation-delay: 0s; }
.badge-2 { bottom: 50px; left: -20px; animation-delay: -2s; }
.badge-3 { bottom: 20px; right: 10px; animation-delay: -4s; }

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

/* ── Mobile App Section ── */
.app-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.app-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  position: relative;
}

.phone-frame {
  width: 280px;
  background: #0c1429;
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.1);
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: #0c1429;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: var(--bg-deep);
  border-radius: 24px;
  padding: 20px 16px;
  min-height: 440px;
}

.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.screen-greeting {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.screen-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.screen-balance-card {
  background: linear-gradient(135deg, rgba(0,229,160,0.12), rgba(0,136,255,0.08));
  border: 1px solid rgba(0,229,160,0.15);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 20px;
}

.screen-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 4px;
}

.screen-amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}

.screen-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.screen-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  color: var(--text-secondary);
}

.screen-action-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-transactions {
  padding-top: 4px;
}

.screen-tx-header {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}

.screen-tx {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.screen-tx + .screen-tx {
  border-top: 1px solid var(--glass-border);
}

.screen-tx-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.screen-tx-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
}

.screen-tx-time {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.screen-tx-amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
}

/* Phone notification */
.phone-notif {
  position: absolute;
  top: 60px;
  right: -60px;
  padding: 12px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  animation: notif-slide 4s ease-in-out infinite;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.notif-icon {
  flex-shrink: 0;
}

.notif-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.notif-text strong { font-size: 0.75rem; }
.notif-text span { font-size: 0.7rem; color: var(--text-secondary); }

@keyframes notif-slide {
  0% { transform: translateX(20px); opacity: 0; }
  15%, 85% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(-20px); opacity: 0; }
}

/* ── App Store Buttons ── */
.app-stores {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  transition: border-color 0.3s, background 0.3s;
}

.store-btn:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
}

.store-btn small {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
}

.store-btn strong {
  display: block;
  font-size: 0.95rem;
}

/* ── App Stats ── */
.app-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

/* ── CTA Section ── */
.cta-section {
  padding-bottom: 40px;
}

.cta-card {
  text-align: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.cta-bg-orb {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,229,160,0.15), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  pointer-events: none;
}

.cta-card h2 {
  position: relative;
  z-index: 1;
}

.cta-card p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  position: relative;
  z-index: 1;
}

/* ── Footer ── */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.3s;
}

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

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-sub { margin: 0 auto 32px; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }

  .dashboard-preview {
    transform: none;
    max-width: 500px;
    margin: 0 auto;
  }

  .dashboard-preview:hover { transform: none; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .security-layout,
  .app-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .security-text { order: 1; }
  .security-visual { order: 2; }

  .app-visual { order: 1; }
  .app-text { order: 2; text-align: center; }
  .app-text .section-sub { margin: 0 auto; }
  .app-stores { justify-content: center; }
  .app-stats { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }

  .features-grid { grid-template-columns: 1fr; }

  .hero h1 { font-size: 2.2rem; }

  .card-row { grid-template-columns: 1fr; }

  .app-stores { flex-direction: column; align-items: center; }

  .app-stats {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .stat-divider { width: 40px; height: 1px; }

  .phone-notif { display: none; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .shield-container {
    width: 260px;
    height: 260px;
  }

  .ring-1 { width: 180px; height: 180px; }
  .ring-2 { width: 220px; height: 220px; }
  .ring-3 { width: 260px; height: 260px; }
}
