/* ============================================================
   DATA PAY — style.css  (Logo-themed: Cyan-Blue + Lime-Green)
   Fonts: Outfit (display) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  /* Backgrounds — unchanged */
  --bg-0: #050816;
  --bg-1: #0B1020;
  --bg-2: #111827;
  --bg-3: #1E293B;

  /* Logo-matched palette */
  --cyan:   #29B6F6;   /* logo "Data" sky-blue */
  --blue:   #0288D1;   /* deeper logo blue */
  --lime:   #76C442;   /* logo "Pay" lime-green */
  --green:  #56AB2F;   /* deeper logo green */
  --teal:   #00E5C8;   /* blue-green bridge accent */
  --violet: #1565C0;   /* dark blue depth accent */
  --pink:   #43EA80;   /* replaced pink → fresh green */

  --text:   #E8F4FD;
  --muted:  #90B8D0;
  --border: rgba(41,182,246,0.10);
  --glass-bg: rgba(5,12,28,0.58);
  --glass-border: rgba(41,182,246,0.14);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-blue:  0 0 40px rgba(41,182,246,0.20);
  --shadow-lime:  0 0 40px rgba(118,196,66,0.22);
  --shadow-teal:  0 0 40px rgba(0,229,200,0.18);
  --shadow-deep:  0 0 40px rgba(2,136,209,0.25);

  --sp-xs: clamp(8px,2vw,12px);
  --sp-sm: clamp(12px,3vw,20px);
  --sp-md: clamp(20px,4vw,36px);
  --sp-lg: clamp(40px,7vw,80px);
  --sp-xl: clamp(60px,10vw,120px);
  --nav-h: 72px;

  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 48px);
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(11px,1.2vw,12px);
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(41,182,246,0.09);
  border: 1px solid rgba(41,182,246,0.22);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: var(--sp-sm);
}

/* Gradient text — blue → lime (logo colours) */
.grad-text {
  background: linear-gradient(110deg, var(--cyan) 0%, var(--teal) 45%, var(--lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-pink {
  background: linear-gradient(110deg, var(--lime) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.10;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-sm);
  color: var(--text);
}
.section-desc {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--muted);
  max-width: 580px;
  line-height: 1.75;
  font-weight: 400;
}
.section-head { text-align: center; margin-bottom: var(--sp-lg); }
.section-head .section-desc { margin: 0 auto; }

/* ── BG Canvas ── */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Noise */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

nav, section, footer, .mobile-nav { position: relative; z-index: 2; }

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(5,8,22,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(41,182,246,0.10), 0 8px 32px rgba(0,0,0,0.45);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo image */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  height: 44px;
}
.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(41,182,246,0.35));
  transition: filter 0.3s;
}
.nav-logo img:hover { filter: drop-shadow(0 0 18px rgba(118,196,66,0.55)); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
  letter-spacing: 0.01em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.btn-nav {
  background: linear-gradient(110deg, var(--cyan), var(--lime));
  color: #050816;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
  box-shadow: 0 0 22px rgba(41,182,246,0.30);
  letter-spacing: 0.01em;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(118,196,66,0.50); }
.btn-nav:active { transform: translateY(0); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s, opacity 0.35s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(5,8,22,0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(22px, 6vw, 34px);
  font-weight: 700;
  color: var(--muted);
  transform: translateY(20px);
  opacity: 0;
  transition: color 0.25s, transform 0.4s, opacity 0.4s;
  letter-spacing: -0.01em;
}
.mobile-nav.open a { transform: translateY(0); opacity: 1; }
.mobile-nav.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.10s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.20s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.open a:nth-child(6) { transition-delay: 0.30s; }
.mobile-nav.open a:nth-child(7) { transition-delay: 0.35s; }
.mobile-nav a:hover { color: var(--cyan); }
.mobile-nav .btn-nav { margin-top: 8px; font-size: 16px; padding: 14px 44px; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + clamp(40px, 8vw, 80px));
  padding-bottom: var(--sp-xl);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(41,182,246,0.10);
  border: 1px solid rgba(41,182,246,0.25);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: var(--sp-sm);
  width: fit-content;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 8px var(--lime); }
  50% { box-shadow: 0 0 18px var(--lime), 0 0 28px rgba(118,196,66,0.4); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-sm);
  color: var(--text);
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  margin-bottom: var(--sp-sm);
  letter-spacing: -0.01em;
}
.hero-desc {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--muted);
  line-height: 1.80;
  max-width: 500px;
  margin-bottom: var(--sp-md);
  font-weight: 400;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

.btn-primary {
  background: linear-gradient(110deg, var(--cyan) 0%, var(--lime) 100%);
  color: #050816;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(14px,1.5vw,15px);
  padding: clamp(12px,2vw,16px) clamp(24px,3vw,34px);
  border-radius: 100px;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 0 26px rgba(41,182,246,0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 44px rgba(118,196,66,0.55); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(14px,1.5vw,15px);
  padding: clamp(12px,2vw,16px) clamp(24px,3vw,34px);
  border-radius: 100px;
  border: 1px solid rgba(41,182,246,0.25);
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  letter-spacing: 0.01em;
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(41,182,246,0.07);
  transform: translateY(-3px);
}

/* Hero stats */
.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 40px); margin-top: var(--sp-md); }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
}
.hero-stat .lbl {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 400;
}

/* Phone mockup */
.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.phone-wrap { position: relative; width: clamp(200px, 30vw, 320px); }
.phone-body {
  width: 100%;
  aspect-ratio: 9/18;
  background: linear-gradient(160deg, #0d1e38 0%, #070e20 100%);
  border-radius: 44px;
  border: 2px solid rgba(41,182,246,0.22);
  padding: 24px 16px;
  box-shadow: 0 0 80px rgba(41,182,246,0.14), 0 40px 80px rgba(0,0,0,0.65);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phone-body::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 90px; height: 28px;
  background: #050816;
  border-radius: 0 0 20px 20px;
  z-index: 1;
}
.phone-screen-bar {
  height: 6px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  transition: width 1.2s ease;
}
.phone-card {
  background: rgba(41,182,246,0.07);
  border: 1px solid rgba(41,182,246,0.14);
  border-radius: 14px;
  padding: 11px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.phone-card-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.phone-card-icon.c { background: rgba(41,182,246,0.15); }
.phone-card-icon.g { background: rgba(118,196,66,0.15); }
.phone-card-icon.v { background: rgba(2,136,209,0.20); }
.phone-card-text .t { font-family: var(--font-body); font-size: 10px; color: var(--muted); font-weight: 400; }
.phone-card-text .v { font-family: var(--font-display); font-size: 14px; font-weight: 700; }

/* Orbit */
.orbit {
  position: absolute;
  width: clamp(280px, 45vw, 520px);
  height: clamp(280px, 45vw, 520px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.orbit-ring { position: absolute; border-radius: 50%; border: 1px dashed rgba(41,182,246,0.10); }
.orbit-ring.r1 { inset: 0; }
.orbit-ring.r2 { inset: 12%; }
.orbit-icon {
  position: absolute;
  width: 44px; height: 44px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(41,182,246,0.13);
  animation: orbit-spin 12s linear infinite;
  top: 50%; left: 50%;
  margin-top: -22px; margin-left: -22px;
}
.orbit-icon:nth-child(2) { animation-duration: 16s; animation-direction: reverse; }
.orbit-icon:nth-child(3) { animation-duration: 10s; }
.orbit-icon:nth-child(4) { animation-duration: 14s; animation-direction: reverse; }
@keyframes orbit-spin {
  0%   { transform: rotate(0deg)   translateX(clamp(120px,18vw,220px)) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(clamp(120px,18vw,220px)) rotate(-360deg); }
}

/* ════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
.about { padding: var(--sp-xl) 0; }
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 28px);
  margin-top: var(--sp-lg);
}
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: clamp(22px, 4vw, 36px);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(41,182,246,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.glass-card:hover { transform: translateY(-6px); border-color: rgba(41,182,246,0.30); box-shadow: var(--shadow-blue); }
.card-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.card-icon-wrap.cyan   { background: rgba(41,182,246,0.12);  box-shadow: 0 0 20px rgba(41,182,246,0.15); }
.card-icon-wrap.green  { background: rgba(118,196,66,0.12);  box-shadow: 0 0 20px rgba(118,196,66,0.15); }
.card-icon-wrap.violet { background: rgba(2,136,209,0.18);   box-shadow: 0 0 20px rgba(2,136,209,0.20); }
.card-icon-wrap.pink   { background: rgba(0,229,200,0.12);   box-shadow: 0 0 20px rgba(0,229,200,0.15); }

.glass-card h3 {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.glass-card p {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.5vw, 15px);
  color: var(--muted);
  line-height: 1.75;
  font-weight: 400;
}

/* ════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════ */
.how { padding: var(--sp-xl) 0; background: linear-gradient(180deg, transparent 0%, rgba(11,16,32,0.6) 50%, transparent 100%); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--teal), var(--lime));
  z-index: 0;
}
.step-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2vw, 24px);
  text-align: center;
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-blue); }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: 0 0 24px rgba(41,182,246,0.35);
  color: #050816;
}
.step-card i { font-size: 24px; color: var(--cyan); margin-bottom: 14px; }
.step-card h3 {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.step-card p { font-family: var(--font-body); font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ════════════════════════════════════════════
   WHY CHOOSE
════════════════════════════════════════════ */
.why { padding: var(--sp-xl) 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2.5vw, 22px);
}
.why-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: clamp(20px, 3vw, 28px);
  backdrop-filter: blur(16px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.why-card:hover { transform: translateY(-5px); border-color: rgba(41,182,246,0.25); box-shadow: var(--shadow-blue); }
.why-card:hover::after { transform: scaleX(1); }
.why-card i { font-size: 26px; color: var(--cyan); margin-bottom: 14px; }
.why-card h4 {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.why-card p { font-family: var(--font-body); font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ════════════════════════════════════════════
   WHO CAN JOIN
════════════════════════════════════════════ */
.who { padding: var(--sp-xl) 0; background: linear-gradient(180deg, transparent 0%, rgba(2,136,209,0.04) 50%, transparent 100%); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(12px, 2vw, 18px);
}
.who-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: clamp(18px, 2.5vw, 28px) clamp(10px, 1.5vw, 16px);
  text-align: center;
  backdrop-filter: blur(16px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.who-card:hover { transform: translateY(-6px) scale(1.03); border-color: rgba(118,196,66,0.30); box-shadow: var(--shadow-lime); }
.who-card .icon { font-size: clamp(28px, 4vw, 40px); margin-bottom: 12px; }
.who-card h4 {
  font-family: var(--font-display);
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ════════════════════════════════════════════
   BENEFITS
════════════════════════════════════════════ */
.benefits { padding: var(--sp-xl) 0; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 28px);
  margin-top: 0;
  margin-bottom: var(--sp-lg);
}
.stat-box {
  text-align: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 32px);
  backdrop-filter: blur(16px);
}
.stat-box .counter {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.stat-box .stat-lbl { font-family: var(--font-body); font-size: 13px; color: var(--muted); margin-top: 4px; font-weight: 400; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 28px);
}
.benefit-card {
  border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 36px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-card:hover { transform: translateY(-6px); }
.benefit-card.bc0 { background: linear-gradient(135deg, rgba(41,182,246,0.13), rgba(41,182,246,0.04));  border: 1px solid rgba(41,182,246,0.22); }
.benefit-card.bc1 { background: linear-gradient(135deg, rgba(118,196,66,0.13), rgba(118,196,66,0.04));  border: 1px solid rgba(118,196,66,0.22); }
.benefit-card.bc2 { background: linear-gradient(135deg, rgba(2,136,209,0.18), rgba(2,136,209,0.06));   border: 1px solid rgba(2,136,209,0.25); }
.benefit-card.bc3 { background: linear-gradient(135deg, rgba(0,229,200,0.13), rgba(0,229,200,0.04));   border: 1px solid rgba(0,229,200,0.22); }
.benefit-card.bc4 { background: linear-gradient(135deg, rgba(41,182,246,0.10), rgba(118,196,66,0.08)); border: 1px solid rgba(41,182,246,0.17); }
.benefit-card.bc5 { background: linear-gradient(135deg, rgba(118,196,66,0.10), rgba(41,182,246,0.07)); border: 1px solid rgba(118,196,66,0.18); }
.benefit-card i { font-size: 32px; margin-bottom: 16px; }
.benefit-card h4 {
  font-family: var(--font-display);
  font-size: clamp(16px,2vw,20px);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.benefit-card p { font-family: var(--font-body); font-size: 14px; color: var(--muted); line-height: 1.68; }

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testimonials { padding: var(--sp-xl) 0; }
.testimonial-carousel { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 40px);
  backdrop-filter: blur(20px);
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 28px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(41,182,246,0.12);
  line-height: 1;
}
.test-stars { color: #FFD700; font-size: 18px; margin-bottom: 16px; }
.test-text {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text);
  line-height: 1.80;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 400;
}
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.test-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--text); letter-spacing: -0.01em; }
.test-role { font-family: var(--font-body); font-size: 13px; color: var(--muted); font-weight: 400; }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: var(--sp-md); }
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.carousel-btn:hover { background: rgba(41,182,246,0.10); border-color: var(--cyan); color: var(--cyan); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(41,182,246,0.2);
  transition: background 0.3s, width 0.3s;
  border: none;
  cursor: pointer;
}
.carousel-dot.active { background: var(--cyan); width: 24px; border-radius: 4px; }

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq { padding: var(--sp-xl) 0; background: linear-gradient(180deg, transparent, rgba(11,16,32,0.5) 50%, transparent); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(41,182,246,0.30); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: clamp(16px, 2.5vw, 22px) clamp(18px, 3vw, 28px);
  font-family: var(--font-display);
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
  color: var(--text);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  transition: color 0.25s;
  letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--cyan); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(41,182,246,0.20);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.35s, border-color 0.3s, color 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--cyan); color: var(--cyan); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.4s;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.5vw, 15px);
  color: var(--muted);
  line-height: 1.78;
  padding: 0 clamp(18px, 3vw, 28px);
  font-weight: 400;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 clamp(18px, 3vw, 28px) clamp(16px, 2.5vw, 22px);
}

/* ════════════════════════════════════════════
   CTA
════════════════════════════════════════════ */
.cta-section { padding: var(--sp-xl) 0; text-align: center; position: relative; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(2,136,209,0.18) 0%, rgba(41,182,246,0.07) 50%, transparent 70%);
  pointer-events: none;
}
.cta-section .section-title { max-width: 700px; margin: 0 auto var(--sp-sm); }
.cta-section .section-desc  { margin: 0 auto var(--sp-md); }
.cta-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer {
  background: var(--bg-1);
  border-top: 1px solid rgba(41,182,246,0.10);
  padding: var(--sp-lg) 0 var(--sp-md);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(24px, 5vw, 60px);
  margin-bottom: var(--sp-md);
}
.footer-logo-img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(41,182,246,0.30));
  margin-bottom: 12px;
}
.footer-brand p { font-family: var(--font-body); font-size: 14px; color: var(--muted); line-height: 1.72; max-width: 300px; font-weight: 400; }
.footer-contact { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  display: flex; align-items: center; gap: 8px;
  transition: color 0.25s;
  font-weight: 400;
}
.footer-contact a:hover { color: var(--cyan); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--muted);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.social-icon:hover { color: var(--lime); border-color: rgba(118,196,66,0.30); background: rgba(118,196,66,0.07); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-family: var(--font-body); font-size: 14px; color: var(--muted); transition: color 0.25s; font-weight: 400; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid rgba(41,182,246,0.08);
  padding-top: var(--sp-sm);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-family: var(--font-body); font-size: 13px; color: var(--muted); font-weight: 400; }

/* ════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* ════════════════════════════════════════════
   RESPONSIVE — Tablet ≤ 1024px
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .btn-nav-desktop { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto var(--sp-md); }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: var(--sp-md); }
  .about-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — Mobile ≤ 640px
════════════════════════════════════════════ */
@media (max-width: 640px) {
  .about-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .orbit { display: none; }
  .phone-wrap { width: clamp(180px, 55vw, 240px); }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; align-items: center; }
}

/* ── Custom cursor (desktop) ── */
@media (pointer: fine) {
  .cursor {
    position: fixed; width: 12px; height: 12px;
    border-radius: 50%; background: var(--cyan);
    pointer-events: none; z-index: 9999;
    mix-blend-mode: screen;
    transition: transform 0.15s, opacity 0.15s;
    transform: translate(-50%, -50%);
  }
  .cursor-trail {
    position: fixed; width: 36px; height: 36px;
    border-radius: 50%; border: 1px solid rgba(41,182,246,0.4);
    pointer-events: none; z-index: 9998;
    transition: transform 0.4s ease, opacity 0.3s;
    transform: translate(-50%, -50%);
  }
}
