/* ============================================
   Tokens — match the app's design system
============================================ */
:root {
  --brand-50:  #EBF7FA;
  --brand-100: #CCEBF2;
  --brand-200: #9CD7E3;
  --brand-500: #0E8FA8;
  --brand-600: #0A7186;
  --brand-700: #07566A;
  --brand-gradient: linear-gradient(135deg, #1B4FB8 0%, #14A4B8 50%, #4DBE54 100%);
  --brand-accent: #4DBE54;

  --bg:           #F7F8FA;
  --surface:      #FFFFFF;
  --surface-2:    #F4F5F8;
  --surface-3:    #EBEDF1;
  --border:       #E4E7EC;
  --border-strong:#D0D5DD;
  --text:         #101828;
  --text-2:       #475467;
  --text-3:       #6C7689;
  --text-4:       #98A2B3;

  --success:    #079455; --success-bg: #ECFDF3; --success-bd: #ABEFC6;
  --warning:    #B54708; --warning-bg: #FFFAEB; --warning-bd: #FEDF89;
  --danger:     #B42318; --danger-bg:  #FEF3F2; --danger-bd:  #FECDCA;
  --info:       #175CD3; --info-bg:    #EFF8FF; --info-bd:    #B2DDFF;

  --r-sm: 6px; --r-md: 8px; --r-lg: 12px; --r-xl: 16px; --r-2xl: 24px;
  --shadow-sm: 0 1px 2px rgba(16,24,40,.04);
  --shadow-md: 0 4px 12px rgba(16,24,40,.06), 0 1px 2px rgba(16,24,40,.04);
  --shadow-lg: 0 18px 40px rgba(16,24,40,.10), 0 4px 12px rgba(16,24,40,.06);
  --shadow-xl: 0 32px 80px rgba(16,24,40,.12), 0 8px 20px rgba(16,24,40,.08);

  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: inherit;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Container */
.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* Eyebrow / utility text */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand-700);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--brand-500); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 20px;
  border-radius: 8px;
  font-size: 14px; font-weight: 500;
  border: 1px solid transparent;
  transition: background .15s, border-color .15s, color .15s, transform .12s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand-500); color: white; }
.btn-primary:hover { background: var(--brand-600); }
.btn-ghost   { background: transparent; color: var(--text-2); border-color: var(--border); }
.btn-ghost:hover { background: var(--surface-2); color: var(--text); }
.btn-soft    { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn-soft:hover { background: var(--surface-2); }
.btn-light   { background: rgba(255,255,255,.92); color: var(--text); }
.btn-light:hover { background: white; }
.btn-link    { background: transparent; color: var(--brand-600); padding: 0; height: auto; }
.btn-sm      { height: 36px; padding: 0 14px; font-size: 13px; }

/* Icon */
.icon { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 28px; height: 28px; }

/* Brand gradient stripe used at the top */
.gradient-stripe { height: 3px; background: var(--brand-gradient); }

/* ============================================
   Top nav
============================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-row {
  display: flex; align-items: center; gap: 32px;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 17px; letter-spacing: 0.02em;
}
.nav-logo img { width: 32px; height: 32px; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  flex: 1; margin-left: 16px;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  transition: color .12s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ============================================
   Hero
============================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 120px;
  background-color: #FFF7EA;
  background-image: url('../assets/landing_hero_bg.png');
  background-size: cover;
  background-position: center;
}
.hero::after {
  /* subtle fade to next section */
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 120px;
  background: linear-gradient(180deg, transparent, var(--surface));
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}
@media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.hero-title {
  font-size: 56px; line-height: 1.05;
  font-weight: 600; letter-spacing: -0.03em;
  color: var(--text); margin: 18px 0 22px;
  text-wrap: balance;
}
.hero-title .accent {
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub {
  font-size: 18px; line-height: 1.55; color: var(--text-2);
  max-width: 540px; margin-bottom: 32px;
}
.hero-cta { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-3);
}
.hero-trust b { color: var(--text); font-weight: 600; }
@media (max-width: 640px) {
  .hero { padding: 56px 0 88px; }
  .hero-title { font-size: 40px; }
  .hero-sub { font-size: 16px; }
}

/* Hero device mockup — small dashboard preview */
.hero-mockup {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  width: 100%; max-width: 580px;
  margin-left: auto;
}
.hero-mockup-chrome {
  height: 32px; background: var(--surface-2); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px; padding: 0 14px;
}
.hero-mockup-chrome i { width: 9px; height: 9px; border-radius: 999px; display: block; }
.hero-mockup-chrome i:nth-child(1) { background: #FF5F57; }
.hero-mockup-chrome i:nth-child(2) { background: #FEBC2E; }
.hero-mockup-chrome i:nth-child(3) { background: #28C840; }
.hero-mockup-chrome .url {
  height: 18px; background: white; border: 1px solid var(--border);
  border-radius: 999px; margin-left: 12px; padding: 0 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--text-3);
  display: flex; align-items: center; flex: 1; max-width: 220px;
}

.mockup-body { background: var(--surface); padding: 18px; }
.mockup-kpis {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 14px;
}
.mockup-kpi {
  background: var(--surface);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 10px 12px; position: relative; overflow: hidden;
}
.mockup-kpi::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: var(--accent, var(--success));
}
.mockup-kpi .lab { font-size: 9px; color: var(--text-3); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.mockup-kpi .val { font-size: 18px; font-weight: 600; margin-top: 3px; font-variant-numeric: tabular-nums; }

.mockup-map {
  height: 220px; border-radius: 8px;
  background: linear-gradient(180deg, #DDE3EA, #E6EAF1);
  background-image:
    linear-gradient(0deg, rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  position: relative; overflow: hidden; border: 1px solid var(--border);
}
.mockup-map svg.route { position: absolute; inset: 0; width: 100%; height: 100%; }
.mockup-pin {
  position: absolute; transform: translate(-50%, -100%);
}
.mockup-tag {
  position: absolute; transform: translate(-50%, -130%);
  background: var(--text); color: white; font-family: 'JetBrains Mono', monospace;
  font-size: 9px; padding: 2px 6px; border-radius: 4px; white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.mockup-live {
  position: absolute; top: 12px; left: 12px;
  background: white; border: 1px solid var(--border);
  border-radius: 999px; padding: 4px 10px;
  font-size: 10px; color: var(--text-2); font-weight: 500;
  display: flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-sm);
}
.mockup-live .pulse {
  width: 6px; height: 6px; border-radius: 999px; background: var(--success);
  box-shadow: 0 0 0 0 rgba(7,148,85,.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(7,148,85,.5); }
  70% { box-shadow: 0 0 0 8px rgba(7,148,85,0); }
  100% { box-shadow: 0 0 0 0 rgba(7,148,85,0); }
}

/* Floating mini-card on the mockup */
.mockup-float {
  position: absolute;
  background: white; border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 14px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
}
.mockup-float.alert {
  bottom: -16px; right: -16px;
}
.mockup-float .ic {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--danger-bg); color: var(--danger);
  display: flex; align-items: center; justify-content: center;
}
.mockup-float .title { font-size: 12px; font-weight: 600; color: var(--text); }
.mockup-float .sub { font-size: 10px; color: var(--text-3); margin-top: 1px; }

/* ============================================
   Logo strip
============================================ */
.logo-strip {
  padding: 36px 0 24px;
  border-bottom: 1px solid var(--border);
}
.logo-strip-label {
  text-align: center; font-size: 12px; font-weight: 500;
  color: var(--text-3); text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 24px;
}
.logo-strip-row {
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 32px 48px;
  opacity: .8;
}
.logo-strip-row .l {
  font-size: 22px; font-weight: 700; color: var(--text-3);
  letter-spacing: -0.02em;
  font-family: 'Outfit', sans-serif;
}
.logo-strip-row .l.serif { font-family: Georgia, serif; font-weight: 400; font-style: italic; letter-spacing: 0; }
.logo-strip-row .l.mono  { font-family: 'JetBrains Mono', monospace; font-size: 18px; }

/* ============================================
   Section base
============================================ */
.section {
  padding: 100px 0;
}
.section-head {
  text-align: center; max-width: 720px; margin: 0 auto 56px;
}
.section-head h2 {
  font-size: 40px; line-height: 1.15;
  font-weight: 600; letter-spacing: -0.025em;
  color: var(--text); margin: 14px 0 18px;
  text-wrap: balance;
}
.section-head p {
  font-size: 17px; color: var(--text-2); line-height: 1.55;
  margin: 0;
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .section-head h2 { font-size: 30px; }
}

/* ============================================
   Feature grid
============================================ */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 1024px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .feature-grid { grid-template-columns: 1fr; } }

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.feature:hover {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature .ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--brand-50); color: var(--brand-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature h3 { font-size: 18px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em; }
.feature p  { font-size: 14px; line-height: 1.55; color: var(--text-2); margin: 0; }

/* ============================================
   Split section — "Two products in one"
============================================ */
.split-bg {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
@media (max-width: 1024px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
}
.split-text h2 { font-size: 36px; font-weight: 600; letter-spacing: -0.025em; margin: 12px 0 18px; line-height: 1.15; text-wrap: balance; }
.split-text p { font-size: 16px; color: var(--text-2); margin: 0 0 24px; line-height: 1.6; max-width: 520px; }
.split-text ul { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.split-text ul li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--text);
}
.split-text ul li span.tick {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--success-bg); color: var(--success);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  margin-top: 1px;
}

/* Split visual: dashboard preview card */
.split-visual {
  background: white; border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.split-visual.dark {
  background: #0B0F19; border-color: #1F2937;
}
.split-visual-head {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  background: var(--surface-2);
}
.split-visual.dark .split-visual-head {
  border-color: #1F2937; background: #161E2E;
}
.split-visual-head .tabs {
  display: flex; gap: 4px; margin-left: 16px;
}
.split-visual-head .tabs button {
  background: transparent; border: 0; padding: 6px 12px; border-radius: 6px;
  font-size: 12px; color: var(--text-3); font-weight: 500;
}
.split-visual-head .tabs button.active { background: white; color: var(--text); box-shadow: var(--shadow-sm); }
.split-visual.dark .split-visual-head .tabs button { color: #8B95A7; }
.split-visual.dark .split-visual-head .tabs button.active { background: #1F2937; color: white; }
.split-visual-body { padding: 20px; }

/* white-label preview — branded variants */
.wl-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 16px;
}
.wl-card {
  border: 1px solid var(--border); border-radius: 8px;
  padding: 14px 12px; background: white;
  display: flex; align-items: center; gap: 10px;
}
.wl-card .swatch { width: 26px; height: 26px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 13px; }
.wl-card .name { font-size: 12px; font-weight: 600; }
.wl-card .biz  { font-size: 10px; color: var(--text-3); }

/* ============================================
   Stats band
============================================ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding: 64px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) { .stats { grid-template-columns: 1fr 1fr; gap: 24px; } }
.stat-num {
  font-size: 48px; font-weight: 600; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  line-height: 1;
}
.stat-lab { font-size: 13px; color: var(--text-3); margin-top: 10px; }

/* ============================================
   White label — deep-dive section
============================================ */
.wl-deep {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start;
}
@media (max-width: 1024px) { .wl-deep { grid-template-columns: 1fr; } }

.wl-checklist {
  display: flex; flex-direction: column; gap: 16px;
}
.wl-check {
  display: flex; gap: 14px; padding: 18px; background: white;
  border: 1px solid var(--border); border-radius: 10px;
}
.wl-check .ic {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--brand-50); color: var(--brand-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wl-check h4 { font-size: 15px; font-weight: 600; margin: 0 0 4px; }
.wl-check p { font-size: 13px; color: var(--text-2); margin: 0; line-height: 1.5; }

/* "Branded portal" preview */
.wl-preview {
  background: white;
  border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.wl-preview-head {
  padding: 16px 20px; display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--border);
}
.wl-preview-head .lo {
  width: 30px; height: 30px; border-radius: 7px;
  background: var(--wl-color, var(--brand-500)); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
.wl-preview-head .nm { font-weight: 600; font-size: 14px; letter-spacing: -0.01em; }
.wl-preview-head .stripe {
  margin-left: auto; height: 3px; width: 60px; border-radius: 999px;
  background: linear-gradient(90deg, var(--wl-color, var(--brand-500)), var(--wl-color2, var(--brand-200)));
}
.wl-preview-body {
  padding: 20px; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 10px;
}
.wl-mini-kpi {
  border: 1px solid var(--border); border-radius: 6px;
  padding: 10px 12px; position: relative;
}
.wl-mini-kpi::before {
  content: ''; position: absolute; left: 0; top: 0; width: 3px; height: 100%;
  background: var(--wl-color, var(--brand-500));
}
.wl-mini-kpi .l { font-size: 9px; color: var(--text-3); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.wl-mini-kpi .v { font-size: 18px; font-weight: 600; margin-top: 3px; font-variant-numeric: tabular-nums; }

.wl-switcher {
  display: flex; gap: 6px; padding: 12px 20px; border-top: 1px solid var(--border);
  background: var(--surface-2);
}
.wl-switcher button {
  flex: 1; background: white; border: 1px solid var(--border);
  border-radius: 6px; padding: 8px;
  font-size: 11px; font-weight: 500; color: var(--text-2);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: all .15s;
}
.wl-switcher button.active {
  border-color: var(--text);
  color: var(--text);
}
.wl-switcher button .sw {
  width: 12px; height: 12px; border-radius: 4px; flex-shrink: 0;
}

/* ============================================
   Pricing
============================================ */
.pricing {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 1024px) { .pricing { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.plan {
  background: white; border: 1px solid var(--border); border-radius: 14px;
  padding: 32px; display: flex; flex-direction: column;
  position: relative;
}
.plan.featured {
  border: 1px solid var(--brand-500);
  box-shadow: 0 0 0 4px var(--brand-100), var(--shadow-lg);
}
.plan-tag {
  position: absolute; top: -12px; left: 32px;
  background: var(--brand-500); color: white;
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  padding: 5px 10px; border-radius: 999px; text-transform: uppercase;
}
.plan-name { font-size: 14px; color: var(--text-3); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.plan-price { font-size: 44px; font-weight: 600; letter-spacing: -0.025em; margin: 14px 0 4px; font-variant-numeric: tabular-nums; }
.plan-price small { font-size: 16px; font-weight: 500; color: var(--text-3); }
.plan-blurb { font-size: 14px; color: var(--text-2); margin-bottom: 24px; min-height: 42px; }
.plan-cta { margin-bottom: 24px; }
.plan-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: var(--text-2); }
.plan-features li { display: flex; gap: 10px; align-items: flex-start; }
.plan-features li .tick {
  width: 18px; height: 18px; border-radius: 999px;
  background: var(--success-bg); color: var(--success);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}

/* ============================================
   FAQ
============================================ */
.faq {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  font-size: 17px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; width: 20px; height: 20px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475467' stroke-width='2' stroke-linecap='round'><polyline points='6 9 12 15 18 9'/></svg>") center/contain no-repeat;
  flex-shrink: 0; transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p { font-size: 15px; color: var(--text-2); line-height: 1.6; margin: 12px 0 0; max-width: 700px; }

/* ============================================
   CTA band
============================================ */
.cta {
  position: relative; overflow: hidden;
  padding: 96px 0;
  background-color: #F2C99B;
  background-image: url('../assets/landing_cta_bg.png');
  background-size: cover; background-position: center;
  color: var(--text);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  flex-wrap: wrap;
  position: relative;
}
.cta h2 { font-size: 40px; font-weight: 600; letter-spacing: -0.025em; margin: 0 0 14px; line-height: 1.1; text-wrap: balance; }
.cta p { font-size: 17px; color: rgba(16,24,40,.78); margin: 0; max-width: 560px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-actions .btn-primary { background: var(--text); border-color: var(--text); color: white; }
.cta-actions .btn-primary:hover { background: #0B0F19; }
@media (max-width: 640px) {
  .cta { padding: 72px 0; }
  .cta h2 { font-size: 30px; }
}

/* ============================================
   Footer
============================================ */
.footer {
  background: #0B0F19; color: #B6BECC;
  padding: 72px 0 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px; border-bottom: 1px solid #1F2937;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-brand .lo { display: flex; align-items: center; gap: 10px; color: white; font-weight: 600; font-size: 17px; letter-spacing: 0.02em; }
.footer-brand .lo img { width: 32px; height: 32px; }
.footer-brand p { font-size: 13px; color: #8B95A7; margin: 0; max-width: 320px; line-height: 1.55; }
.footer-brand .stripe { height: 3px; width: 80px; border-radius: 999px; background: var(--brand-gradient); }
.footer h5 { color: white; font-size: 14px; font-weight: 600; margin: 0 0 16px; letter-spacing: -.01em; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: #B6BECC; font-size: 13px; transition: color .15s; }
.footer a:hover { color: white; }
.footer-meta {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 28px; font-size: 12px; color: #67718A;
  flex-wrap: wrap;
}
.footer-meta .right { display: flex; gap: 18px; }
