/* ==============================
   FinPay Ultra — Landing CSS
   ============================== */
:root {
  --primary: #0B5FFF;
  --primary-2: #3D82FF;
  --secondary: #00AEEF;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-alt: #F1F5F9;
  --text: #0F172A;
  --text-2: #475569;
  --text-3: #64748B;
  --border: #E2E8F0;
  --border-2: #EEF2F7;
  --success: #10B981;
  --danger: #EF4444;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 40px rgba(11, 95, 255, 0.10), 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 10px 30px rgba(11, 95, 255, 0.35);
  --grad-primary: linear-gradient(135deg, #0B5FFF 0%, #00AEEF 100%);
  --grad-soft: linear-gradient(135deg, rgba(11,95,255,0.08), rgba(0,174,239,0.08));
  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Poppins', 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* Layout */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 820px; }
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg-soft); }

/* Section head */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(11, 95, 255, 0.08);
  margin-bottom: 14px;
}
.section-head .eyebrow.light { color: #fff; background: rgba(255,255,255,0.18); }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}
.section-head p {
  margin-top: 14px;
  color: var(--text-2);
  font-size: 17px;
}

.grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn i { width: 18px; height: 18px; }
.btn-sm { padding: 9px 16px; font-size: 14px; border-radius: 10px; }
.btn-lg { padding: 15px 26px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; margin-top: 8px; }

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(11,95,255,0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11,95,255,0.10);
}

.btn-ghost { color: var(--text-2); }
.btn-ghost:hover { color: var(--primary); }

.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,0.18); }

.btn-ghost-light {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.15); }

.btn-prime {
  background: linear-gradient(135deg, #F59E0B 0%, #EF4444 55%, #8B5CF6 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(139, 92, 246, 0.30);
}
.btn-prime:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(139, 92, 246, 0.45); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.75);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.9);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}
.brand-mark {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-primary);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(11,95,255,0.30);
}
.brand-mark i { width: 20px; height: 20px; }
.brand-name span { color: var(--primary); }
.brand-logo {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}
.brand-logo-footer {
  height: 52px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
@media (max-width: 720px) {
  .brand-logo { height: 36px; }
}

.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  color: var(--text-2);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color .2s;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  border-radius: 2px;
}
.nav a:hover { color: var(--primary); }
.nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--text);
  align-items: center;
  justify-content: center;
}
.menu-toggle i { width: 22px; height: 22px; }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 20px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 8px; color: var(--text-2); border-bottom: 1px solid var(--border-2); font-weight: 500; }
.mobile-menu a.btn { margin-top: 10px; border: 0; }

/* Hero */
.hero {
  position: relative;
  padding: 90px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 100%);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: floaty 10s ease-in-out infinite;
}
.blob-1 { width: 480px; height: 480px; background: rgba(11,95,255,0.25); top: -140px; left: -120px; }
.blob-2 { width: 420px; height: 420px; background: rgba(0,174,239,0.22); top: 40px; right: -100px; animation-delay: -3s; }
.blob-3 { width: 360px; height: 360px; background: rgba(139,92,246,0.15); bottom: -160px; left: 30%; animation-delay: -6s; }
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,23,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(20px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}
.badge-pill i { width: 16px; height: 16px; color: var(--primary); }

.hero-title {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.hero-sub {
  margin: 20px auto 0;
  max-width: 640px;
  color: var(--text-2);
  font-size: clamp(16px, 1.6vw, 19px);
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.stat {
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 4px;
}

/* Plans */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.plan-card {
  position: relative;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
.plan-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,95,255,0.04), transparent 60%);
  pointer-events: none;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11,95,255,0.25);
}
.plan-card.highlight {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad-primary) border-box;
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(11,95,255,0.18);
}
.plan-card.highlight:hover { transform: translateY(-12px); }

.plan-card.prime {
  background:
    linear-gradient(180deg, #FFFBEB 0%, #FFF 60%);
  border-color: #FDE68A;
}
.plan-card.prime::before {
  background: linear-gradient(180deg, rgba(245,158,11,0.08), transparent 60%);
}

.ribbon {
  position: absolute;
  top: 16px;
  right: -34px;
  transform: rotate(35deg);
  background: var(--grad-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 40px;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 16px rgba(11,95,255,0.35);
}

.plan-head { position: relative; z-index: 1; }
.plan-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(11,95,255,0.10);
  margin-bottom: 14px;
}
.plan-badge.popular { color: #fff; background: var(--grad-primary); }
.plan-badge.value { color: #0F766E; background: rgba(20, 184, 166, 0.12); }
.plan-badge.prime-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #92400E;
  background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(239,68,68,0.14));
}
.plan-badge.prime-badge i { width: 14px; height: 14px; }

.plan-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.plan-desc {
  color: var(--text-2);
  font-size: 14px;
  margin-top: 6px;
  min-height: 42px;
}
.plan-price {
  margin-top: 18px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--border);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.price-amount.small { font-size: 20px; }
.price-per { color: var(--text-3); font-size: 14px; }

.plan-features {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-2);
  font-size: 14.5px;
}
.plan-features li i {
  width: 18px; height: 18px;
  color: var(--success);
  padding: 2px;
  background: rgba(16, 185, 129, 0.12);
  border-radius: 999px;
  flex-shrink: 0;
}

.margin-block {
  margin-top: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 14px;
}
.margin-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.margin-title i { width: 14px; height: 14px; }
.margin-table {
  display: grid;
  gap: 6px;
}
.mrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 4px;
  font-size: 13.5px;
  color: var(--text-2);
  border-bottom: 1px dashed transparent;
}
.mrow + .mrow { border-top: 1px dashed var(--border-2); }
.mrow b { color: var(--text); font-weight: 700; }

.alert-info {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(11, 95, 255, 0.06);
  border: 1px solid rgba(11, 95, 255, 0.15);
  color: #1E3A8A;
  font-size: 13.5px;
  margin-top: 18px;
}
.alert-info i { color: var(--primary); flex-shrink: 0; margin-top: 2px; width: 18px; height: 18px; }

/* Comparison */
.compare-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  min-width: 640px;
}
.compare-table thead th {
  padding: 20px 18px;
  text-align: center;
  background: var(--bg-soft);
  color: var(--text);
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.compare-table thead th:first-child { text-align: left; }
.compare-table thead th.prime-col {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  color: #92400E;
}
.compare-table tbody td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border-2);
  color: var(--text-2);
}
.compare-table tbody td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 600;
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr { transition: background .2s ease, transform .2s ease; }
.compare-table tbody tr:hover { background: rgba(11,95,255,0.03); }
.compare-table i { width: 20px; height: 20px; display: inline-block; }
.compare-table i.ok {
  color: var(--success);
  background: rgba(16,185,129,0.12);
  border-radius: 999px;
  padding: 3px;
}
.compare-table i.no {
  color: #94A3B8;
  background: rgba(148,163,184,0.15);
  border-radius: 999px;
  padding: 3px;
}

/* Prime section */
.prime-card {
  position: relative;
  padding: 56px 48px;
  border-radius: var(--radius-lg);
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #0B5FFF 0%, #6366F1 50%, #8B5CF6 100%);
  box-shadow: 0 30px 60px rgba(11,95,255,0.30);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: center;
}
.prime-icon {
  width: 96px; height: 96px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  color: #fff;
  box-shadow: 0 12px 30px rgba(245,158,11,0.4);
  z-index: 2;
  position: relative;
}
.prime-icon i { width: 48px; height: 48px; }
.prime-body { position: relative; z-index: 2; }
.prime-body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 8px 0 14px;
}
.prime-body p { color: rgba(255,255,255,0.9); font-size: 16px; margin-bottom: 10px; max-width: 640px; }
.prime-body b { color: #FDE68A; }
.prime-actions {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.prime-bg { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.p-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; }
.p-blob.p1 { width: 320px; height: 320px; background: rgba(255,255,255,0.25); top: -120px; right: -80px; }
.p-blob.p2 { width: 260px; height: 260px; background: rgba(245,158,11,0.35); bottom: -120px; left: 20%; }
.p-blob.p3 { width: 220px; height: 220px; background: rgba(0,174,239,0.30); top: 30%; right: 30%; }

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .2s ease;
}
.faq-item:hover { border-color: rgba(11,95,255,0.35); box-shadow: 0 6px 20px rgba(11,95,255,0.06); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  color: var(--text);
  font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
  width: 22px; height: 22px;
  color: var(--primary);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-body {
  padding: 0 22px 22px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
  animation: fadeSlide .3s ease;
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTA */
.cta-section { padding-bottom: 120px; }
.cta-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 72px 40px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top left, rgba(11,95,255,0.10), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(0,174,239,0.10), transparent 60%),
    #F8FAFF;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.cta-shapes { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.cta-shapes span {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.cta-shapes span:nth-child(1) { width: 260px; height: 260px; background: rgba(11,95,255,0.25); top: -80px; left: -60px; }
.cta-shapes span:nth-child(2) { width: 220px; height: 220px; background: rgba(0,174,239,0.25); top: -40px; right: -40px; }
.cta-shapes span:nth-child(3) { width: 220px; height: 220px; background: rgba(139,92,246,0.18); bottom: -80px; left: 40%; }

.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.cta-inner p {
  margin: 16px auto 0;
  max-width: 620px;
  color: var(--text-2);
  font-size: 17px;
}
.cta-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: #0B1220;
  color: #94A3B8;
  padding: 72px 0 24px;
}
.site-footer .brand { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand p { margin-top: 14px; max-width: 320px; font-size: 14.5px; color: #94A3B8; }
.socials { margin-top: 18px; display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  color: #CBD5E1;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.socials a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.socials i { width: 16px; height: 16px; }
.site-footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { color: #94A3B8; font-size: 14.5px; transition: color .2s; }
.site-footer ul a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: #64748B;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .nav, .header-cta .btn-ghost { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .prime-card { grid-template-columns: 1fr; text-align: center; padding: 44px 28px; }
  .prime-icon { margin: 0 auto; }
  .prime-body p { margin-left: auto; margin-right: auto; }
  .prime-actions { justify-content: center; }
}
@media (max-width: 720px) {
  .plans-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero { padding: 60px 0 70px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .cta-card { padding: 52px 22px; }
}
@media (max-width: 460px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 24px; }
  .price-amount { font-size: 34px; }
}

/* Focus states / a11y */
a:focus-visible, button:focus-visible, .btn:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(11, 95, 255, 0.35);
  outline-offset: 3px;
  border-radius: 12px;
}
