:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-darker: #1E40AF;
  --primary-soft: #EFF6FF;
  --primary-soft-2: #DBEAFE;
  --accent-blue: #3B82F6;
  --accent-orange: #F59E0B;
  --accent-pink: #EC4899;
  --accent-purple: #8B5CF6;
  --accent-red: #EF4444;
  --accent-cyan: #06B6D4;
  --bg: #FFFFFF;
  --bg-soft: #F9FAFB;
  --bg-section: #F5F7F9;
  --text: #0B1220;
  --text-strong: #020617;
  --text-muted: #64748B;
  --text-subtle: #94A3B8;
  --border: #E5E7EB;
  --border-soft: #F1F5F9;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06), 0 10px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 50px rgba(37, 99, 235, 0.20), 0 6px 16px rgba(15, 23, 42, 0.08);
  --shadow-phone: 0 30px 60px rgba(15, 23, 42, 0.18), 0 8px 24px rgba(37, 99, 235, 0.18);
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

main { flex: 1; }

a { color: var(--primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: border-color .25s ease, background .25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.95);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}

.brand:hover { text-decoration: none; }

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.18);
}

.brand-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
}

.nav a {
  color: var(--text-muted);
  font-weight: 500;
  transition: color .15s ease;
}

.nav a:hover { color: var(--primary-dark); text-decoration: none; }
.nav a.active { color: var(--text-strong); }

.nav .nav-cta {
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.30);
}

.nav .nav-cta:hover { background: var(--primary-dark); color: #fff; }

@media (max-width: 720px) {
  .nav { gap: 14px; font-size: 14px; }
  .nav a:not(.nav-cta) { display: none; }
  .nav a.active { display: inline; }
  .brand span:not(.brand-logo) { font-size: 17px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.30);
}

.btn:hover {
  background: var(--primary-dark);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.40);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text-strong);
  border: 1.5px solid var(--border);
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--bg-soft);
  color: var(--text-strong);
  border-color: var(--text-subtle);
  box-shadow: var(--shadow-sm);
}

.play-badge { display: inline-block; transition: transform .2s ease; }
.play-badge img { height: 64px; width: auto; }
.play-badge:hover { transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 48px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.10), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text { max-width: 560px; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-darker);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text-strong);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary) 20%, var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lead {
  margin: 0 0 28px;
  font-size: clamp(17px, 2.2vw, 19px);
  color: var(--text-muted);
  max-width: 520px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text-muted);
  font-size: 14px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-meta svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

@media (min-width: 920px) {
  .hero { padding: 96px 0 80px; }
  .hero .container { grid-template-columns: 1.1fr 0.9fr; gap: 64px; }
}

/* ---------- Phone mockup ---------- */
.phone-stage {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone {
  width: 280px;
  aspect-ratio: 9 / 19;
  background: #0B1220;
  border-radius: 38px;
  padding: 10px;
  box-shadow: var(--shadow-phone);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.phone::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #0B1220;
  border-radius: 14px;
  z-index: 3;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 30%);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 14px 14px;
  font-size: 11px;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 10px;
  padding: 0 4px 12px;
  color: var(--text-strong);
}

.status-icons { display: inline-flex; gap: 4px; align-items: center; }
.status-icons span {
  width: 12px; height: 8px;
  background: var(--text-strong);
  border-radius: 2px;
  opacity: 0.75;
}

.greeting { font-size: 12px; color: var(--text-muted); padding: 0 4px; }
.greeting-name { font-size: 16px; font-weight: 700; color: var(--text-strong); padding: 0 4px; margin-bottom: 12px; letter-spacing: -0.01em; }

.balance-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 18px;
  padding: 14px;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.balance-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
}

.balance-label { font-size: 10px; opacity: 0.85; margin-bottom: 4px; }
.balance-amount {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}
.balance-amount span { font-size: 14px; opacity: 0.7; font-weight: 600; }

.balance-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 10px;
  position: relative;
}

.balance-stat-label { opacity: 0.85; }
.balance-stat-value { font-weight: 700; font-size: 11px; margin-top: 2px; }
.up::before { content: "↑ "; }
.down::before { content: "↓ "; }

.section-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0 4px;
  margin-bottom: 6px;
}

.accounts-strip {
  display: flex;
  gap: 6px;
  overflow: hidden;
  margin-bottom: 12px;
  padding: 0 4px;
}

.account-chip {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 12px;
  background: #F1F5F9;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 64px;
}

.account-chip .acc-name { color: var(--text-strong); font-size: 9px; }
.account-chip .acc-amount { font-size: 10px; }
.account-chip.bcp { background: linear-gradient(135deg, #DBEAFE, #BFDBFE); }
.account-chip.bcp .acc-name { color: #1E40AF; }
.account-chip.interbank { background: linear-gradient(135deg, #FEF3C7, #FDE68A); }
.account-chip.interbank .acc-name { color: #92400E; }
.account-chip.falabella { background: linear-gradient(135deg, #DCFCE7, #BBF7D0); }
.account-chip.falabella .acc-name { color: #065F46; }

.tx-list { padding: 0 4px; flex: 1; }

.tx-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-soft);
}
.tx-item:last-child { border-bottom: none; }

.tx-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.tx-icon.food { background: #FEF3C7; }
.tx-icon.salary { background: #DCFCE7; }
.tx-icon.transport { background: #DBEAFE; }
.tx-icon.fun { background: #FCE7F3; }

.tx-info { flex: 1; min-width: 0; }
.tx-title { font-size: 11px; font-weight: 600; color: var(--text-strong); }
.tx-cat { font-size: 9px; color: var(--text-muted); margin-top: 1px; }
.tx-amount { font-size: 11px; font-weight: 700; }
.tx-amount.neg { color: var(--accent-red); }
.tx-amount.pos { color: var(--primary-dark); }

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

@media (max-width: 480px) {
  .phone { width: 240px; }
}

/* Real screenshots wrapped in a phone bezel */
.hero-phone-img,
.screenshot {
  width: 290px;
  padding: 10px;
  background: linear-gradient(160deg, #1a1f2e 0%, #0B1220 60%, #1a1f2e 100%);
  border-radius: 44px;
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 30px 60px rgba(15, 23, 42, 0.22),
    0 10px 24px rgba(37, 99, 235, 0.18);
  position: relative;
}

.hero-phone-img img,
.screenshot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 34px;
}

/* Side buttons hint */
.hero-phone-img::before,
.screenshot::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 90px;
  width: 3px;
  height: 36px;
  background: #0a0e18;
  border-radius: 2px 0 0 2px;
}
.hero-phone-img::after,
.screenshot::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 110px;
  width: 3px;
  height: 56px;
  background: #0a0e18;
  border-radius: 0 2px 2px 0;
}

.hero-phone-img {
  margin: 0;
  animation: float 6s ease-in-out infinite;
}

.screenshot {
  margin: 0;
  transition: transform .3s ease;
}
.screenshot:hover { transform: translateY(-6px); }

@media (max-width: 480px) {
  .hero-phone-img,
  .screenshot { width: 250px; border-radius: 38px; padding: 8px; }
  .hero-phone-img img,
  .screenshot img { border-radius: 30px; }
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--bg-section);
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-item-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.trust-item-icon svg { width: 22px; height: 22px; }

.trust-item-title { font-weight: 700; font-size: 14px; color: var(--text-strong); }
.trust-item-sub { font-size: 13px; color: var(--text-muted); }

@media (min-width: 720px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Generic section ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-section); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-soft-2);
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}

.feature-icon svg { width: 26px; height: 26px; }

.feature-icon.green { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.feature-icon.blue { background: linear-gradient(135deg, #60A5FA, var(--accent-blue)); }
.feature-icon.orange { background: linear-gradient(135deg, #FBBF24, var(--accent-orange)); }
.feature-icon.purple { background: linear-gradient(135deg, #A78BFA, var(--accent-purple)); }
.feature-icon.pink { background: linear-gradient(135deg, #F472B6, var(--accent-pink)); }
.feature-icon.cyan { background: linear-gradient(135deg, #22D3EE, var(--accent-cyan)); }

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}

.feature-card p { margin: 0; color: var(--text-muted); font-size: 15px; }

/* ---------- Cómo funciona ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

@media (min-width: 800px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .steps-grid::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--primary-soft-2) 0, var(--primary-soft-2) 6px, transparent 6px, transparent 14px);
    z-index: 0;
  }
}

.step { text-align: center; position: relative; z-index: 1; }

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary-soft-2);
  color: var(--primary-dark);
  font-size: 24px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.14);
}

.step h3 { margin: 0 0 8px; font-size: 19px; font-weight: 700; color: var(--text-strong); }
.step p { margin: 0 auto; max-width: 320px; color: var(--text-muted); font-size: 15px; }

/* ---------- Screenshots gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: end;
  justify-items: center;
}

@media (min-width: 800px) {
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .gallery .phone:nth-child(2),
  .gallery .screenshot:nth-child(2) { transform: translateY(-24px); }
  .gallery .screenshot:nth-child(2):hover { transform: translateY(-30px); }
}

.gallery .phone { animation: none; }
.gallery .phone:hover { transform: translateY(-6px); transition: transform .3s ease; }

.plan-card {
  background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
  border-radius: 18px;
  padding: 14px;
  color: #fff;
  margin-bottom: 12px;
}
.plan-name { font-size: 13px; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.plan-progress {
  height: 8px;
  background: rgba(255,255,255,0.25);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 8px;
}
.plan-progress-bar { height: 100%; background: #fff; border-radius: 99px; width: 65%; }
.plan-stats { display: flex; justify-content: space-between; font-size: 10px; opacity: 0.95; }
.plan-amount { font-size: 18px; font-weight: 800; margin: 4px 0 6px; letter-spacing: -0.02em; }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 0 4px;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: 6px;
  background: #F1F5F9;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 600;
}
.cal-day.done { background: var(--primary-soft-2); color: var(--primary-darker); }
.cal-day.today { background: var(--primary); color: #fff; box-shadow: 0 0 0 2px var(--primary-soft); }

.search-bar {
  background: #F1F5F9;
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 11px;
  color: var(--text-muted);
  margin: 0 4px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.filter-chips { display: flex; gap: 4px; padding: 0 4px; margin-bottom: 8px; flex-wrap: wrap; }
.filter-chip {
  padding: 4px 8px;
  border-radius: 999px;
  background: #F1F5F9;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
}
.filter-chip.active { background: var(--primary); color: #fff; }

/* ---------- CTA section ---------- */
.cta-section { position: relative; padding: 80px 0; text-align: center; overflow: hidden; }

.cta-card {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 60%, #14B8A6 100%);
  border-radius: var(--radius-lg);
  padding: 56px 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.25);
}

.cta-card::before, .cta-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-card::before {
  top: -80px; left: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 60%);
}

.cta-card::after {
  bottom: -100px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 60%);
}

.cta-card h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
}

.cta-card p {
  margin: 0 auto 28px;
  max-width: 540px;
  font-size: 17px;
  opacity: 0.95;
  position: relative;
}

.cta-card .play-badge { position: relative; }

.cta-card .secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  opacity: 0.95;
}
.cta-card .secondary svg { width: 18px; height: 18px; }
.cta-card .secondary:hover { text-decoration: underline; opacity: 1; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 28px;
  color: var(--text-muted);
  font-size: 14px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.footer-brand p { margin: 12px 0 0; max-width: 320px; }

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-strong);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col a { color: var(--text-muted); }
.footer-col a:hover { color: var(--primary-dark); }

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 32px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}

.footer-bottom .made { display: inline-flex; align-items: center; gap: 4px; }

/* ---------- Legal pages ---------- */
.legal { padding: 56px 0 64px; max-width: 760px; }

.legal h1 {
  font-size: clamp(28px, 4vw, 38px);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text-strong);
}

.legal .updated { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }

.legal h2 {
  font-size: 22px;
  margin: 36px 0 12px;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}

.legal h3 { font-size: 17px; margin: 24px 0 8px; font-weight: 600; }
.legal p, .legal li { color: var(--text); font-size: 16px; }
.legal ul, .legal ol { padding-left: 22px; }
.legal li { margin-bottom: 6px; }

.callout {
  background: var(--primary-soft);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 20px 0;
  color: var(--text);
}
.callout strong { color: var(--primary-darker); }

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.steps li {
  counter-increment: step;
  padding: 14px 16px 14px 56px;
  position: relative;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.email-link { font-weight: 600; word-break: break-all; }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

.reveal.is-visible { opacity: 1; transform: none; }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .phone { animation: none !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
