/* ============================================================
   USA POS Providers — Design System
   Palette: near-black #0A0B0D, off-white #FAFAFA, soft gray #EDEEF1,
            blue accent #3D7DFF, ribbon accent #6EA1FF
   Type: "Space Grotesk" (display) + "Inter" (body/UI)
   Signature: the logo's upward ribbon-arrow reused as an ambient
   motion motif and as the underline for the 1.5% statistic.
   ============================================================ */

:root {
  --ink: #0a0b0d;
  --ink-soft: #14161a;
  --paper: #fafafa;
  --paper-dim: #eef0f3;
  --line: rgba(10, 11, 13, 0.09);
  --line-strong: rgba(10, 11, 13, 0.16);
  --blue: #3d7dff;
  --blue-soft: #6ea1ff;
  --blue-dim: rgba(61, 125, 255, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-dark: rgba(20, 22, 26, 0.55);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-border-dark: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 20px 60px -25px rgba(10, 11, 13, 0.35);
  --shadow-lift: 0 30px 80px -30px rgba(10, 11, 13, 0.45);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --maxw: 1200px;
  --nav-h: 76px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--blue);
  display: inline-block;
  border-radius: 2px;
}

.section { padding: 108px 0; position: relative; }
.section-tight { padding: 72px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p.lead { font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 12px 30px -12px rgba(10, 11, 13, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -14px rgba(10, 11, 13, 0.55); }
.btn-outline {
  background: rgba(255, 255, 255, 0.5);
  border-color: var(--line-strong);
  color: var(--ink);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light {
  background: var(--paper);
  color: var(--ink);
}
.btn-light:hover { transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ---------- Glass surfaces ---------- */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
.glass-dark {
  background: var(--glass-bg-dark);
  border: 1px solid var(--glass-border-dark);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  color: var(--paper);
}

/* ---------- Ambient background ---------- */
.ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.ambient span {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  background: radial-gradient(circle, var(--blue-soft), transparent 70%);
  animation: drift 22s ease-in-out infinite;
}
.ambient span:nth-child(1) { width: 420px; height: 420px; top: -120px; right: -80px; animation-delay: 0s; }
.ambient span:nth-child(2) { width: 320px; height: 320px; bottom: -100px; left: -60px; background: radial-gradient(circle, rgba(10,11,13,0.18), transparent 70%); animation-delay: -8s; }
.ambient span:nth-child(3) { width: 260px; height: 260px; top: 40%; left: 40%; opacity: 0.18; animation-delay: -14s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -25px) scale(1.08); }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(250, 250, 250, 0.72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 8px 30px -20px rgba(10,11,13,0.4);
  border-bottom-color: var(--line);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: "Space Grotesk"; font-weight: 700; font-size: 1.05rem; }
.brand img { height: 64px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(250,250,250,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s ease, opacity .3s ease;
  z-index: 99;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu .container { padding: 24px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  padding: 14px 4px;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 64px) 0 90px;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 82% -8%, rgba(61,125,255,0.14), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy .rate-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.rate-pill .dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
}
.hero-copy .lead { font-size: 1.15rem; max-width: 480px; }
.hero-copy .rate-highlight {
  font-family: "Space Grotesk";
  font-weight: 700;
  color: var(--ink);
  font-size: 1.15rem;
  margin: 22px 0 30px;
  display: inline-block;
  position: relative;
}
.hero-copy .rate-highlight b { color: var(--blue); font-size: 1.3em; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.device-halo {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,125,255,0.22), transparent 68%);
  filter: blur(10px);
}
.device {
  position: relative;
  width: 260px;
  z-index: 2;
}
.device-body {
  background: linear-gradient(160deg, #1a1c20, #0a0b0d 70%);
  border-radius: 26px;
  padding: 18px 18px 26px;
  box-shadow: var(--shadow-lift), inset 0 1px 0 rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.06);
}
.device-screen {
  background: linear-gradient(150deg, #eaf1ff, #ffffff);
  border-radius: 16px;
  aspect-ratio: 3 / 4;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 0 0 1px rgba(10,11,13,0.05);
}
.device-screen .ds-top { display: flex; justify-content: space-between; font-size: 0.62rem; font-weight: 700; color: var(--ink-soft); letter-spacing: 0.06em;}
.device-screen .ds-amount { font-family: "Space Grotesk"; font-size: 1.7rem; font-weight: 700; color: var(--ink); }
.device-screen .ds-sub { font-size: 0.68rem; color: var(--ink-soft); margin-top: 4px; }
.device-screen .ds-wave { display: flex; align-items: flex-end; gap: 3px; height: 28px; }
.device-screen .ds-wave i { width: 4px; background: var(--blue); border-radius: 3px; opacity: 0.85; }
.device-screen .ds-check {
  align-self: flex-start;
  background: var(--blue-dim);
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
}
.device-base { width: 92%; margin: -6px auto 0; height: 14px; background: #0a0b0d; border-radius: 0 0 14px 14px; opacity: 0.9; }

.float-card {
  position: absolute;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: floaty 6s ease-in-out infinite;
}
.float-card svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }
.float-card.fc1 { top: 6%; left: -4%; animation-delay: 0s; }
.float-card.fc2 { top: 20%; right: -8%; animation-delay: -1.4s; }
.float-card.fc3 { bottom: 22%; left: -10%; animation-delay: -3s; }
.float-card.fc4 { bottom: 4%; right: -4%; animation-delay: -4.4s; background: var(--ink); color: var(--paper); }
.float-card.fc4 svg { color: var(--blue-soft); }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip { padding: 54px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item .ico {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--blue-dim);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item h4 { font-size: 0.98rem; margin-bottom: 4px; }
.trust-item p { font-size: 0.88rem; margin: 0; }

/* ============================================================
   CARD GRIDS
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card {
  padding: 30px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: rgba(61,125,255,0.35); }
.card .ico {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.93rem; margin-bottom: 14px; }
.card .learn { font-size: 0.85rem; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.card .learn svg { width: 14px; height: 14px; transition: transform .2s ease; }
.card:hover .learn svg { transform: translateX(3px); }

/* ============================================================
   RATE / STAT SECTION
   ============================================================ */
.rate-section {
  background: var(--ink);
  color: var(--paper);
  border-radius: 36px;
  margin: 0 24px;
  padding: 88px 6vw;
  position: relative;
  overflow: hidden;
}
.rate-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 380px at 15% 10%, rgba(61,125,255,0.25), transparent 60%);
}
.rate-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.rate-figure { text-align: left; }
.rate-figure .big {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: clamp(4.5rem, 9vw, 7.5rem);
  line-height: 0.9;
  position: relative;
  display: inline-block;
}
.rate-figure .ribbon {
  display: block;
  width: 100%;
  height: 10px;
  margin-top: 10px;
}
.rate-figure .cap { font-size: 0.95rem; color: rgba(250,250,250,0.7); margin-top: 14px; font-weight: 500; }
.rate-section p { color: rgba(250,250,250,0.78); }
.rate-section h2 { color: var(--paper); }
.rate-disclaimer {
  margin-top: 22px;
  font-size: 0.8rem;
  color: rgba(250,250,250,0.55);
  border-left: 2px solid var(--blue-soft);
  padding-left: 14px;
}

/* ============================================================
   TIMELINE / HOW IT WORKS
   ============================================================ */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.timeline-item { padding: 28px 22px; position: relative; }
.timeline-item .num {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  display: block;
}
.timeline-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.timeline-item p { font-size: 0.9rem; margin: 0; }

/* ============================================================
   PRODUCT SHOWCASE
   ============================================================ */
.showcase { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
.showcase-visual { position: relative; display: flex; justify-content: center; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 32px; }
.feature-item { display: flex; gap: 12px; align-items: flex-start; }
.feature-item .ico { width: 34px; height: 34px; border-radius: 10px; background: var(--blue-dim); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-item span { font-size: 0.9rem; font-weight: 600; }

/* ============================================================
   BUSINESS TYPES
   ============================================================ */
.chip-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.chip {
  padding: 22px 16px;
  text-align: center;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform .25s ease, border-color .25s ease;
}
.chip:hover { transform: translateY(-4px); border-color: rgba(61,125,255,0.4); }
.chip .ico { margin: 0 auto 10px; width: 34px; height: 34px; color: var(--blue); }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-strip { padding: 60px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-dim); }
.partners-head { text-align: center; max-width: 560px; margin: 0 auto 36px; }
.partners-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.partner-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 16px;
  border-radius: var(--radius-sm);
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  transition: transform .25s ease, color .25s ease, border-color .25s ease;
}
.partner-badge:hover { transform: translateY(-4px); color: var(--ink); border-color: rgba(61,125,255,0.4); }
.partner-badge small { display: block; font-family: "Inter"; font-weight: 500; font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); opacity: 0.6; margin-top: 4px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  border-radius: 36px;
  margin: 0 24px;
  padding: 80px 6vw;
  text-align: center;
  background: linear-gradient(150deg, #10131a, #0a0b0d 60%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 320px at 85% 100%, rgba(61,125,255,0.25), transparent 60%);
}
.cta-band h2 { color: var(--paper); }
.cta-band p { color: rgba(250,250,250,0.75); max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.faq-q .plus { width: 22px; height: 22px; position: relative; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease;
}
.faq-q .plus::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-q .plus::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.open .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 26px;
}
.faq-item.open .faq-a { max-height: 320px; padding: 0 26px 24px; }
.faq-a p { font-size: 0.92rem; margin: 0; }

/* ============================================================
   LEAD FORM
   ============================================================ */
.lead-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.lead-form { padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); }
.form-field input, .form-field select, .form-field textarea {
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.7);
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--ink);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-dim);
}
.form-field .err { font-size: 0.78rem; color: #d64545; min-height: 16px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success .check {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue-dim); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
#leadFormEl.hide { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(250,250,250,0.75);
  padding: 76px 0 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 54px; filter: brightness(0) invert(1); }
.footer p { color: rgba(250,250,250,0.6); font-size: 0.9rem; }
.footer h4 { color: var(--paper); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 0.9rem; color: rgba(250,250,250,0.7); transition: color .2s ease; }
.footer ul a:hover { color: var(--blue-soft); }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(250,250,250,0.5);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero { padding: calc(var(--nav-h) + 70px) 0 50px; background: var(--paper-dim); }
.legal-body { padding: 60px 0 100px; }
.legal-body .container { max-width: 820px; }
.legal-body h2 { margin-top: 2.2em; font-size: 1.5rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--ink-soft); font-size: 0.97rem; }
.legal-body ul { list-style: disc; padding-left: 1.2em; margin-bottom: 1em; }
.legal-body ul li { margin-bottom: 6px; }
.legal-note {
  margin-top: 40px;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  background: var(--blue-dim);
  border: 1px solid rgba(61,125,255,0.25);
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.legal-placeholder { color: var(--blue); font-weight: 600; }
.updated-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line-strong);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

/* ============================================================
   SKIP LINK / FOCUS
   ============================================================ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .chip-grid { grid-template-columns: repeat(3, 1fr); }
  .rate-inner { grid-template-columns: 1fr; text-align: left; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .partners-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 340px; }
  .device { width: 210px; }
  .showcase { grid-template-columns: 1fr; }
  .showcase-visual { order: -1; }
  .lead-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .partners-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .section { padding: 72px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .chip-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr; }
  .rate-section, .cta-band { margin: 0 14px; padding: 56px 26px; border-radius: 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .float-card { display: none; }
  .lead-form { padding: 26px; }
  .rate-figure { text-align: center; }
  .rate-inner { text-align: center; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  h1 { font-size: 2.1rem; }
}
