﻿/* ================================================================
   KABBOOTPZONE — style.css
   Premium landing page — West Africa focus
================================================================ */

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

:root {
  --bg:          #07101a;
  --bg-soft:     #0c1825;
  --surface:     #111e2a;
  --surface-2:   #172437;
  --surface-3:   #1e2f40;
  --line:        #25384d;
  --text-1:      #eef4f8;
  --text-2:      #b8c8d6;
  --text-3:      #7d95a8;
  --accent:      #1db67d;
  --accent-2:    #34d399;
  --accent-soft: rgba(29,182,125,.13);
  --accent-glow: rgba(29,182,125,.22);
  --good:        #1db67d;
  --good-soft:   rgba(29,182,125,.12);
  --blue:        #4ea8ff;
  --blue-soft:   rgba(78,168,255,.12);
  --purple:      #9b6dff;
  --purple-soft: rgba(155,109,255,.12);
  --pink:        #f06090;
  --pink-soft:   rgba(240,96,144,.12);
  --teal:        #14c0be;
  --teal-soft:   rgba(20,192,190,.12);
  --rose:        #f04f6e;
  --rose-soft:   rgba(240,79,110,.12);
  --r:           12px;
  --r-lg:        18px;
  --r-xl:        24px;
  --shadow:      0 4px 24px rgba(0,0,0,.4);
  --shadow-lg:   0 8px 48px rgba(0,0,0,.55);
}

[data-theme="light"] {
  --bg:          #f4f7fb;
  --bg-soft:     #edf1f7;
  --surface:     #ffffff;
  --surface-2:   #f0f4f9;
  --surface-3:   #e5ecf4;
  --line:        #d2dce8;
  --text-1:      #0e1b27;
  --text-2:      #3a5168;
  --text-3:      #6b86a0;
  --accent-soft: rgba(29,182,125,.09);
  --accent-glow: rgba(29,182,125,.15);
  --good-soft:   rgba(29,182,125,.08);
  --blue-soft:   rgba(78,168,255,.09);
  --purple-soft: rgba(155,109,255,.09);
  --pink-soft:   rgba(240,96,144,.09);
  --teal-soft:   rgba(20,192,190,.09);
  --rose-soft:   rgba(240,79,110,.09);
  --shadow:      0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 48px rgba(0,0,0,.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-2);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── FADE-IN ANIMATIONS ──────────────────────────────────────── */
html.js-enhanced .fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
html.js-enhanced .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  transition: all .22s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn--sm  { padding: 8px 18px; font-size: 13px; }
.btn--lg  { padding: 15px 32px; font-size: 16px; }

.btn--primary {
  background: var(--accent);
  color: #fff;
  padding: 11px 24px;
  font-size: 14px;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn--primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(29,182,125,.38); }

.btn--ghost {
  background: transparent;
  color: var(--text-2);
  border: 1.5px solid var(--line);
  padding: 9px 20px;
  font-size: 14px;
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn--hero-primary {
  background: var(--accent);
  color: #fff;
  padding: 15px 32px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 6px 32px var(--accent-glow);
}
.btn--hero-primary:hover { background: var(--accent-2); transform: translateY(-3px); box-shadow: 0 10px 40px rgba(29,182,125,.4); }

.btn--hero-ghost {
  background: rgba(255,255,255,.07);
  color: var(--text-1);
  border: 1.5px solid rgba(255,255,255,.16);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}
.btn--hero-ghost:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.3); }

.btn--cta-primary {
  background: var(--accent);
  color: #fff;
  padding: 15px 34px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 6px 32px var(--accent-glow);
}
.btn--cta-primary:hover { background: var(--accent-2); transform: translateY(-3px); }

.btn--cta-ghost {
  background: rgba(255,255,255,.08);
  color: var(--text-1);
  border: 1.5px solid rgba(255,255,255,.18);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
}
.btn--cta-ghost:hover { background: rgba(255,255,255,.14); }


/* ── ANNOUNCE BAR ────────────────────────────────────────────── */
.announce-bar {
  background: linear-gradient(90deg, #0f0702 0%, #1f1008 40%, #201106 60%, #0f0702 100%);
  border-bottom: 1px solid rgba(29,182,125,.2);
  padding: 9px 0;
  position: relative;
  z-index: 200;
}
.announce-bar.hidden { display: none; }
.announce-bar__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 13.5px;
  color: var(--text-2);
}
.announce-bar__pill {
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 50px;
  letter-spacing: .06em;
  flex-shrink: 0;
}
.announce-bar__inner strong { color: var(--accent-2); }
.announce-bar__close {
  margin-left: auto;
  color: var(--text-3);
  padding: 4px 8px;
  border-radius: 6px;
  transition: color .2s;
}
.announce-bar__close:hover { color: var(--text-1); }


/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,16,26,.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(7,16,26,.97);
  border-bottom-color: transparent;
  box-shadow: 0 1px 0 rgba(29,182,125,.12), 0 4px 32px rgba(0,0,0,.45);
}
[data-theme="light"] .nav { background: rgba(244,247,251,.88); }
[data-theme="light"] .nav.scrolled { background: rgba(244,247,251,.97); }

.nav__inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text-1);
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 900; color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(29,182,125,.35);
}
.nav__logo-text { letter-spacing: -.01em; }

.nav__links {
  display: flex;
  gap: 28px;
  flex: 1;
}
.nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-3);
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width .25s ease;
  border-radius: 2px;
}
.nav__links a:hover { color: var(--text-1); }
.nav__links a:hover::after { width: 100%; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Currency switch in nav */
.nav__currency-switch {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: 50px;
  border: 1.5px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
  cursor: pointer;
  transition: border-color .2s, color .2s;
  user-select: none;
}
.nav__currency-switch:hover { border-color: var(--accent); color: var(--accent); }
.nav__currency-switch i { font-size: 10px; transition: transform .2s; }
.nav__currency-switch:hover i { transform: rotate(180deg); }

.nav__currency-drop {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 6px;
  min-width: 150px;
  box-shadow: var(--shadow-lg);
  z-index: 300;
}
.nav__currency-switch:hover .nav__currency-drop { display: block; }
.nav__currency-drop button {
  display: flex;
  width: 100%;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  border-radius: 8px;
  transition: background .15s, color .15s;
  gap: 6px;
  align-items: center;
}
.nav__currency-drop button:hover { background: var(--surface-2); color: var(--text-1); }

.nav__theme-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3);
  font-size: 14px;
  transition: border-color .2s, color .2s, background .2s;
}
.nav__theme-btn:hover { border-color: var(--accent); color: var(--accent); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all .28s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__drawer {
  display: none;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}
.nav__drawer.open { display: block; }
.nav__drawer ul { display: flex; flex-direction: column; gap: 4px; }
.nav__drawer a {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
  transition: background .15s, color .15s;
}
.nav__drawer a:hover { background: var(--surface); color: var(--text-1); }
.nav__drawer-sep { height: 1px; background: var(--line); margin: 8px 0; }
.nav__drawer-cta-ghost {
  color: var(--text-2) !important;
  border: 1.5px solid var(--line);
  text-align: center;
}
.nav__drawer-cta {
  text-align: center;
  background: var(--accent) !important;
  color: #fff !important;
  padding: 12px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 20px var(--accent-glow);
}


/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(29,182,125,.14) 0%, transparent 68%);
  top: -260px; right: -120px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.hero__orb--2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(78,168,255,.09) 0%, transparent 68%);
  bottom: -180px; left: -100px;
  animation: orbFloat2 16s ease-in-out infinite;
}
.hero__orb--3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(155,109,255,.09) 0%, transparent 68%);
  top: 38%; left: 42%;
  animation: orbFloat3 11s ease-in-out infinite;
}

@keyframes orbFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,30px)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-25px)} }
@keyframes orbFloat3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-20px,20px)} }

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 24px;
}
.hero__eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 3px var(--good-soft);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 3px var(--good-soft)} 50%{box-shadow:0 0 0 6px var(--good-soft)} }

.hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 22px;
}
.hero__title-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 60%, #ffd580 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__title-region {
  font-size: .65em;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: -.01em;
  display: inline-block;
  margin-top: 4px;
}

.hero__lead {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
}
.hero__trust-item i { color: var(--accent); }
.hero__trust-sep { width: 1px; height: 16px; background: var(--line); }

.hero__countries {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero__country-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
}
.hero__country-pill img { border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.12); }

/* Hero visual */
.hero__visual {
  position: relative;
  height: 520px;
}

/* ── LIVE ORDERS TERMINAL ────────────────────────────────────── */
.hero__terminal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 344px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(29,182,125,.07), 0 0 0 1px rgba(255,255,255,.03);
}

.hero__terminal-hd {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}

.hero__terminal-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.hero__terminal-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero__terminal-dots span:nth-child(1) { background: #ff5f57; }
.hero__terminal-dots span:nth-child(2) { background: #febc2e; }
.hero__terminal-dots span:nth-child(3) { background: #28c840; }

.hero__terminal-title {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.hero__terminal-live {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 3px var(--good-soft);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.hero__terminal-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 10px;
  border-radius: 50px;
  flex-shrink: 0;
  border: 1px solid rgba(29,182,125,.18);
}

.hero__terminal-bd {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__orow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  transition: background .2s;
}
.hero__orow--new {
  background: rgba(29,182,125,.05);
  border-color: rgba(29,182,125,.22);
}
.hero__orow img {
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.2);
  flex-shrink: 0;
}
.hero__orow-info {
  flex: 1;
  min-width: 0;
}
.hero__orow-info span {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero__orow-info em {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: var(--text-3);
  margin-top: 1px;
}
.hero__orow-tick {
  font-size: 14px;
  color: var(--good);
  flex-shrink: 0;
}

.hero__terminal-ft {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 13px 16px;
  background: var(--surface-2);
  border-top: 1px solid var(--line);
}
.hero__tsub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hero__tsub strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-1);
}
.hero__tsub span {
  font-size: 10px;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.hero__tsep {
  width: 1px; height: 28px;
  background: var(--line);
}

/* ── FLOATING CHIPS ──────────────────────────────────────────── */
.hero__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 9px 13px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.hero__chip-ico {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.hero__chip-ico--orange { background: var(--accent-soft); color: var(--accent); }
.hero__chip-ico--green  { background: var(--good-soft); color: var(--good); }
.hero__chip-ico--blue   { background: var(--blue-soft); color: var(--blue); }
.hero__chip-text strong { display: block; font-size: 12.5px; font-weight: 700; color: var(--text-1); }
.hero__chip-text span   { display: block; font-size: 11px; color: var(--text-3); }

.hero__chip--1 {
  top: 2%;
  right: -6%;
  animation: chipFloat1 5s ease-in-out infinite;
}
.hero__chip--2 {
  bottom: 20%;
  right: -10%;
  animation: chipFloat2 6.5s ease-in-out infinite;
}
.hero__chip--3 {
  top: 20%;
  left: -14%;
  animation: chipFloat1 7.5s ease-in-out infinite reverse;
}
.hero__chip-flags {
  display: flex;
  gap: 4px;
  align-items: center;
}
.hero__chip-flags img {
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}
.hero__chip > span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
}

@keyframes chipFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes chipFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(9px)} }



/* ── TICKER ──────────────────────────────────────────────────── */
.ticker-wrap {
  background: rgba(29,182,125,.06);
  border-top: 1px solid rgba(29,182,125,.14);
  border-bottom: 1px solid rgba(29,182,125,.14);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 44px;
}
.ticker-label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  border-right: 1px solid var(--line);
  height: 100%;
  flex-shrink: 0;
  white-space: nowrap;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ticker-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 3px var(--good-soft);
  animation: pulse 2s ease-in-out infinite;
}
.ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.ticker-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
}
.ticker-event {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 28px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-3);
  border-right: 1px solid var(--line);
  height: 44px;
}
.ticker-event i { color: var(--accent); font-size: 11px; }
.ticker-event strong { color: var(--text-2); }

@keyframes tickerScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }


/* ── STATS BAR ───────────────────────────────────────────────── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 0 40px;
}
.stat-item { text-align: center; }
.stat-item__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--text-1);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-item__num .count-up { color: var(--good); }
.stat-item__lbl {
  font-size: 11.5px;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.stats-bar__sep {
  width: 1px;
  height: 44px;
  background: var(--line);
}


/* ── SECTIONS ────────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section--shaded { background: var(--bg-soft); }

.section-hdr { text-align: center; margin-bottom: 60px; }
.section-hdr--center { text-align: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.18;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}
.section-title--sm { font-size: clamp(22px, 2.8vw, 32px); }

.section-sub {
  font-size: 16px;
  color: var(--text-3);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.svc-trust-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.svc-trust-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
}
.svc-trust-pills span i { color: var(--accent); }


/* ── SERVICE CARDS ───────────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 900px) {
  .svc-grid { grid-template-columns: repeat(4, 1fr); }
}

.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  transition: border-color .25s, transform .28s cubic-bezier(.22,.61,.36,1), box-shadow .25s;
  position: relative;
  overflow: hidden;
  color: inherit;
}
.svc-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--accent-glow);
}

.svc-card--featured {
  border-color: rgba(29,182,125,.45);
  background: linear-gradient(150deg, var(--surface) 0%, rgba(29,182,125,.07) 100%);
  box-shadow: 0 4px 32px rgba(29,182,125,.12);
}
.svc-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.svc-card--featured:hover { box-shadow: 0 20px 56px rgba(29,182,125,.22); }

.svc-card__glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(29,182,125,.15) 0%, transparent 70%);
  pointer-events: none;
}

.svc-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.svc-card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.svc-card__icon--orange { background: var(--accent-soft); color: var(--accent); }
.svc-card__icon--pink   { background: var(--pink-soft);   color: var(--pink);   }
.svc-card__icon--blue   { background: var(--blue-soft);   color: var(--blue);   }
.svc-card__icon--teal   { background: var(--teal-soft);   color: var(--teal);   }

.svc-card__badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--surface-2);
  color: var(--text-3);
  border: 1px solid var(--line);
}
.svc-card__badge--live {
  background: var(--good-soft);
  color: var(--good);
  border-color: rgba(29,182,125,.25);
  display: flex;
  align-items: center;
  gap: 5px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--good);
  animation: pulse 2s ease-in-out infinite;
}

.svc-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}
.svc-card p {
  font-size: 13.5px;
  color: var(--text-3);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.svc-card__providers {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.svc-card__providers span {
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  background: var(--surface-2);
  color: var(--text-3);
  border: 1px solid var(--line);
}

.svc-card__features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.svc-card__features div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-2);
}
.svc-card__features i { color: var(--good); font-size: 11px; flex-shrink: 0; }

.svc-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: auto;
}
.svc-card__from { font-size: 11px; color: var(--text-3); }
.svc-card__price {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}
.svc-card__cta {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 5px;
}


/* ── PLATFORMS MARQUEE ───────────────────────────────────────── */
.platforms-section {
  padding: 64px 0;
  overflow: hidden;
  background: var(--bg-soft);
}
.marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}
.marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marquee__track {
  display: flex;
  gap: 12px;
  width: max-content;
}
.marquee--left  .marquee__track { animation: scrollLeft  35s linear infinite; }
.marquee--right .marquee__track { animation: scrollRight 38s linear infinite; }

@keyframes scrollLeft  { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes scrollRight { from{transform:translateX(-50%)} to{transform:translateX(0)} }

.marquee__item {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-2);
  white-space: nowrap;
  transition: border-color .2s;
  flex-shrink: 0;
}
.marquee__item i { font-size: 16px; }

/* Platform brand colors */
.marquee__item--ig i { color: #e1306c; }
.marquee__item--tk i { color: var(--text-1); }
.marquee__item--wa i { color: #25d366; }
.marquee__item--yt i { color: #ff0000; }
.marquee__item--fb i { color: #1877f2; }
.marquee__item--tg i { color: #2ca5e0; }
.marquee__item--tw i { color: var(--text-1); }
.marquee__item--dc i { color: #5865f2; }
.marquee__item--sp i { color: #1db954; }
.marquee__item--li i { color: #0a66c2; }
.marquee__item--sn i { color: #fffc00; }
.marquee__item--rd i { color: #ff4500; }
.marquee__item--gg i { color: #4285f4; }
.marquee__item--am i { color: #ff9900; }
.marquee__item--pp i { color: #0070ba; }
.marquee__item--bn i { color: #f0b90b; }
.marquee__item--tw2 i { color: #9146ff; }
.marquee__item--pt i { color: #e60023; }
.marquee__item--st i { color: #1b2838; }
.marquee__item--nf i { color: #e50914; }
.marquee__item--ap i { color: var(--text-1); }
.marquee__item--ms i { color: #0078d4; }
.marquee__item--td i { color: #fd297b; }
.marquee__item--ub i { color: var(--text-1); }


/* ── HOW IT WORKS ────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.step {
  flex: 1;
  text-align: center;
  padding: 40px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  transition: border-color .25s, transform .28s cubic-bezier(.22,.61,.36,1), box-shadow .25s;
  overflow: hidden;
}
.step:hover { border-color: var(--accent); transform: translateY(-6px); box-shadow: 0 14px 40px var(--accent-glow); }

.step__num {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 88px;
  font-weight: 900;
  color: var(--accent);
  opacity: .06;
  line-height: 1;
  margin-bottom: -18px;
  user-select: none;
  letter-spacing: -.04em;
}
.step__icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: var(--accent-soft);
  border: 1.5px solid rgba(29,182,125,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--accent);
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  transition: transform .25s, box-shadow .25s;
}
.step:hover .step__icon {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(29,182,125,.22);
}
.step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}
.step p { font-size: 14px; color: var(--text-3); line-height: 1.65; }

.step__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--line);
  flex-shrink: 0;
  margin-top: 80px;
}
.step__connector svg { width: 56px; }


/* ── PRICING ─────────────────────────────────────────────────── */
.currency-toggle {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 5px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.currency-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-3);
  transition: background .2s, color .2s;
}
.currency-btn.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 3px 12px var(--accent-glow);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.pricing-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 40px var(--accent-glow); }

.pricing-card--featured {
  border-color: rgba(29,182,125,.5);
  background: linear-gradient(160deg, var(--surface) 0%, rgba(29,182,125,.09) 100%);
  box-shadow: 0 12px 56px rgba(29,182,125,.2), 0 0 0 1px rgba(29,182,125,.18);
  transform: translateY(-12px);
  z-index: 1;
}
.pricing-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.pricing-card--featured:hover { transform: translateY(-16px); box-shadow: 0 16px 64px rgba(29,182,125,.28); }
.pricing-card__top-badge {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--accent);
  color: #fff;
  letter-spacing: .03em;
}

.pricing-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.pricing-card__icon--orange { background: var(--accent-soft); color: var(--accent); }
.pricing-card__icon--blue   { background: var(--blue-soft);   color: var(--blue);   }
.pricing-card__icon--teal   { background: var(--teal-soft);   color: var(--teal);   }

.pricing-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-1);
}
.pricing-card__price {
  font-size: 14px;
  color: var(--text-3);
}
.pricing-card__price strong, .price-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
}

.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}
.pricing-card__list i { color: var(--good); font-size: 12px; flex-shrink: 0; }

.pricing-card__btn { width: 100%; justify-content: center; margin-top: auto; }

.pricing-pay-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.pricing-pay-strip__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-3);
}
.pay-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}
.pay-pill i { color: var(--accent); }


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

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 26px;
  transition: border-color .25s, transform .28s cubic-bezier(.22,.61,.36,1), box-shadow .25s;
}
.feature:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px var(--accent-glow);
}

.feature__icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: transform .25s;
}
.feature:hover .feature__icon { transform: scale(1.1); }
.feature__icon--orange { background: var(--accent-soft); color: var(--accent); }
.feature__icon--green  { background: var(--good-soft);   color: var(--good);   }
.feature__icon--blue   { background: var(--blue-soft);   color: var(--blue);   }
.feature__icon--purple { background: var(--purple-soft); color: var(--purple); }
.feature__icon--teal   { background: var(--teal-soft);   color: var(--teal);   }
.feature__icon--rose   { background: var(--rose-soft);   color: var(--rose);   }

.feature h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}
.feature p { font-size: 14px; color: var(--text-3); line-height: 1.65; }


/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testi-score {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.testi-score__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}
.testi-score__right { flex: 1; }
.testi-score__stars { font-size: 24px; color: #f0b33f; letter-spacing: 3px; margin-bottom: 4px; }
.testi-score__lbl { font-size: 14px; color: var(--text-2); margin-bottom: 10px; }
.testi-score__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.testi-score__badges span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  background: var(--surface-2);
  color: var(--text-3);
  border: 1px solid var(--line);
}
.testi-score__badges i { color: var(--good); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .25s, transform .28s cubic-bezier(.22,.61,.36,1), box-shadow .25s;
}
.testi:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--accent-glow);
}

.testi--featured {
  border-color: rgba(29,182,125,.4);
  background: linear-gradient(150deg, var(--surface) 0%, rgba(29,182,125,.07) 100%);
  box-shadow: 0 6px 36px rgba(29,182,125,.13);
}
.testi--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.testi__top { display: flex; align-items: center; justify-content: space-between; }
.testi__verified {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--good);
  display: flex;
  align-items: center;
  gap: 5px;
}
.testi__verified--gold { color: #f0b33f; }
.testi__verified i { font-size: 12px; }

.testi__stars { font-size: 14px; color: #f0b33f; letter-spacing: 2px; }
.testi__qdeco {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 64px;
  line-height: .8;
  color: var(--accent);
  opacity: .22;
  user-select: none;
  margin-bottom: 4px;
}

.testi__quote {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testi__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.testi__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(29,182,125,.32);
}
.testi__author strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-1); }
.testi__meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}
.testi__meta img { border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.1); }


/* ── TRUST STRIP ─────────────────────────────────────────────── */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-3);
}
.trust-strip__inner i { color: var(--accent); font-size: 14px; }
.trust-strip__sep { width: 3px; height: 3px; border-radius: 50%; background: var(--line); }


/* ── FAQ ─────────────────────────────────────────────────────── */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq__item.open {
  border-color: rgba(29,182,125,.4);
  box-shadow: 0 4px 20px rgba(29,182,125,.08);
}
.faq__item.open .faq__btn { color: var(--accent); }

.faq__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
  text-align: left;
  gap: 12px;
  transition: color .2s;
}
.faq__btn i {
  font-size: 13px;
  color: var(--text-3);
  transition: transform .3s ease, color .2s;
  flex-shrink: 0;
}
.faq__item.open .faq__btn i { transform: rotate(180deg); color: var(--accent); }

.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq__item.open .faq__body { max-height: 300px; }

.faq__body p {
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--text-3);
  line-height: 1.7;
}


/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 120px 0;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,182,125,.16) 0%, transparent 55%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-section__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.cta-section__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}
.cta-section__sub {
  font-size: 16px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-section__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta-section__flags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-3);
  font-weight: 600;
}
.cta-section__flags img { border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.1); }


/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text-1);
  margin-bottom: 14px;
}
.footer__brand p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--text-3);
  transition: border-color .2s, color .2s, background .2s;
}
.footer__socials a:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

.footer__links { display: contents; }
.footer__col h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a {
  font-size: 14px;
  color: var(--text-3);
  transition: color .2s, padding-left .2s;
}
.footer__col a:hover { color: var(--accent); padding-left: 4px; }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: 13px;
  color: var(--text-3);
}
.footer__pay-icons {
  display: flex;
  gap: 12px;
  font-size: 18px;
  color: var(--text-3);
}


/* ── SCROLL-TO-TOP ───────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  box-shadow: 0 4px 20px var(--accent-glow);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 90;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); background: var(--accent-2); }


/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1060px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav__links, .nav__currency-switch, .nav__theme-btn,
  .nav__actions .btn { display: none; }
  .nav__hamburger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { height: 360px; }
  .hero__chip--1 { top: 5px; right: -4px; }
  .hero__chip--2 { bottom: 40px; right: -4px; }
  .hero__chip--3 { top: 18%; left: -4px; }

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

  .steps { flex-direction: column; }
  .step__connector { transform: rotate(90deg); padding: 8px 0; margin: -4px auto; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .hero { padding: 80px 0 60px; }
  .hero__title { font-size: 32px; }

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

  .stats-bar__sep { display: none; }
  .stats-bar__inner { justify-content: center; gap: 32px; }

  .testi-score { flex-direction: column; text-align: center; }
  .testi-score__badges { justify-content: center; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__links { display: flex; flex-direction: column; gap: 28px; }

  .hero__visual { display: none; }
  .hero__copy { text-align: center; }
  .hero__actions, .hero__trust, .hero__countries { justify-content: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }

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