@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --black: #060606;
  --dark: #0E0E0E;
  --card: #111111;
  --card2: #181818;
  --card3: #1F1F1F;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --lime: #CCFF57;
  --lime-dim: rgba(204,255,87,0.12);
  --lime-glow: rgba(204,255,87,0.25);
  --white: #FFFFFF;
  --gray: #525252;
  --gray2: #888888;
  --gray3: #B0B0B0;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: default;
}

/* Custom cursor */
*, a, button { cursor: inherit; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--lime); border-radius: 2px; }

/* ─── HEADER ─── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 0;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
.header.scrolled {
  background: rgba(6,6,6,0.92);
  backdrop-filter: blur(32px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 0 40px; height: 72px;
}
.logo {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: 1.05rem; color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 10px; letter-spacing: -0.01em;
}
.logo-mark {
  width: 32px; height: 32px; background: var(--lime);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.logo-mark svg { width: 18px; height: 18px; }
.nav {
  display: flex; align-items: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 5px;
  gap: 2px;
}
.nav a {
  font-size: 0.8rem; font-weight: 500; color: var(--gray2);
  text-decoration: none; padding: 7px 14px; border-radius: 10px;
  transition: all 0.2s; white-space: nowrap;
}
.nav a:hover { color: var(--white); background: var(--card2); }
.nav a.active { color: var(--white); background: var(--card3); }
.header-right { display: flex; align-items: center; gap: 10px; }
.btn-header {
  background: var(--lime); color: var(--black);
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.02em;
  padding: 10px 20px; border-radius: 10px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s;
}
.btn-header:hover { background: var(--white); transform: translateY(-1px); color: var(--black); }

.hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; inset: 0; top: 72px;
  background: rgba(6,6,6,0.97); backdrop-filter: blur(32px);
  z-index: 998; padding: 24px; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { display: block; padding: 13px 16px; border-radius: 10px; color: var(--gray3); font-size: 1rem; font-weight: 500; text-decoration: none; transition: all 0.2s; }
.mobile-menu a:hover { color: var(--white); background: var(--card); }

/* ─── MARQUEE ─── */
.marquee-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 12px 0; background: var(--dark);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 8px;
  padding: 0 32px; font-size: 0.78rem; color: var(--gray2);
  white-space: nowrap;
}
.marquee-item .dot { width: 5px; height: 5px; background: var(--lime); border-radius: 50%; }
.marquee-item strong { color: var(--gray3); font-weight: 600; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; padding: 100px 0 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}

/* Mesh gradient bg */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(204,255,87,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(204,255,87,0.04) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 480px;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}

.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.hero-label-dot {
  display: flex; align-items: center; gap: 6px;
  background: var(--lime-dim); border: 1px solid rgba(204,255,87,0.25);
  color: var(--lime); border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 12px;
}
.hero-label-dot::before {
  content: '';
  width: 6px; height: 6px; background: var(--lime);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(204,255,87,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(204,255,87,0); }
}

.hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.ht-line { display: block; }
.ht-lime { color: var(--lime); }
.ht-outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.3);
  color: transparent;
}

.hero-desc {
  font-size: 1rem; color: var(--gray2); line-height: 1.75;
  max-width: 460px; margin-bottom: 44px; font-weight: 400;
}
.hero-desc strong { color: var(--gray3); font-weight: 600; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

.btn-prime {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--lime); color: var(--black);
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.02em;
  padding: 16px 28px; border-radius: 14px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
}
.btn-prime::after {
  content: ''; position: absolute;
  inset: 0; background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn-prime:hover { transform: translateY(-2px); background: #DAFF70; box-shadow: 0 12px 32px var(--lime-glow); color: var(--black); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: var(--gray3);
  border: 1px solid var(--border2);
  font-size: 0.88rem; font-weight: 500;
  padding: 16px 28px; border-radius: 14px;
  text-decoration: none; cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }

/* Hero stats row */
.hero-stats {
  display: flex; gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  max-width: 480px;
}
.h-stat {
  flex: 1; padding: 18px 22px;
  border-right: 1px solid var(--border);
  position: relative;
}
.h-stat:last-child { border-right: none; }
.h-stat:first-child::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--lime);
}
.h-stat-val {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  color: var(--lime); line-height: 1; margin-bottom: 4px;
}
.h-stat-lbl { font-size: 0.7rem; color: var(--gray); }

/* ─── MAP WIDGET ─── */
.hero-right { position: relative; }

.map-widget {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 40px 80px rgba(0,0,0,0.6);
}
.mw-top {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.mw-dots { display: flex; gap: 6px; }
.mw-dots span { width: 11px; height: 11px; border-radius: 50%; }
.d-r { background: #FF5F57; } .d-y { background: #FFBD2E; } .d-g { background: #28C840; }
.mw-label {
  font-size: 0.72rem; font-weight: 600; color: var(--gray2);
  letter-spacing: 0.04em;
}
.mw-actions { display: flex; gap: 6px; }
.mw-btn {
  background: var(--card3); border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 10px;
  font-size: 0.65rem; color: var(--gray2); cursor: pointer; transition: all 0.2s;
}
.mw-btn:hover { color: var(--lime); border-color: var(--lime-dim); }

.map-canvas {
  height: 280px; position: relative; overflow: hidden;
  background: #080D14;
}
/* Grid */
.map-canvas::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(204,255,87,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,255,87,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}
/* Subtle vignette */
.map-canvas::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 40%, rgba(8,13,20,0.7) 100%);
}
/* Roads */
.road { position: absolute; border-radius: 3px; z-index: 1; }
.r1 { height: 2px; width: 100%; top: 35%; background: rgba(204,255,87,0.18); }
.r2 { height: 3px; width: 55%; top: 57%; left: 22%; background: rgba(204,255,87,0.28); }
.r3 { height: 2px; width: 35%; top: 74%; left: 33%; background: rgba(204,255,87,0.14); }
.r4 { width: 2px; height: 100%; left: 42%; background: rgba(204,255,87,0.18); }
.r5 { width: 3px; height: 65%; left: 67%; top: 0; background: rgba(204,255,87,0.28); }
.r6 { height: 2px; width: 30%; top: 46%; left: 0; background: rgba(204,255,87,0.12); }

/* Blocks (buildings) */
.blk {
  position: absolute; border-radius: 4px; z-index: 1;
  background: rgba(204,255,87,0.05); border: 1px solid rgba(204,255,87,0.08);
}
.b1 { width: 40px; height: 30px; top: 12%; left: 10%; }
.b2 { width: 28px; height: 22px; top: 18%; left: 22%; }
.b3 { width: 50px; height: 25px; top: 45%; left: 48%; }
.b4 { width: 34px; height: 40px; top: 62%; left: 72%; }
.b5 { width: 24px; height: 20px; top: 25%; left: 70%; }

/* Pins */
.mpin {
  position: absolute; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  animation: pinFloat 3s ease-in-out infinite;
}
.mpin-head {
  width: 22px; height: 22px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.mpin-head::after {
  content: ''; position: absolute;
  width: 8px; height: 8px; background: var(--black);
  border-radius: 50%;
}
.mpin-pulse {
  position: absolute;
  width: 40px; height: 40px; border-radius: 50%;
  top: -9px; left: -9px;
  animation: pinPulse 2.5s ease-out infinite;
}
.pin1 { top: 28%; left: 38%; }
.pin1 .mpin-head { background: var(--lime); box-shadow: 0 0 16px var(--lime-glow); }
.pin1 .mpin-pulse { background: var(--lime); }
.pin2 { top: 54%; left: 64%; animation-delay: 1.2s; }
.pin2 .mpin-head { background: #70C8FF; box-shadow: 0 0 16px rgba(112,200,255,0.4); }
.pin2 .mpin-pulse { background: #70C8FF; }
.pin3 { top: 71%; left: 45%; animation-delay: 2s; }
.pin3 .mpin-head { background: #FF8A65; box-shadow: 0 0 16px rgba(255,138,101,0.4); }
.pin3 .mpin-pulse { background: #FF8A65; }

@keyframes pinFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes pinPulse { 0% { transform: scale(0.8); opacity: 0.6; } 100% { transform: scale(1.8); opacity: 0; } }

/* Route line between pins */
.route-line {
  position: absolute; z-index: 1;
  pointer-events: none;
}

.mw-bottom {
  padding: 12px 18px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.mw-status { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--gray2); }
.mw-status-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #28C840;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.mw-chip {
  background: var(--lime-dim); color: var(--lime);
  border: 1px solid rgba(204,255,87,0.2);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 4px 10px; border-radius: 6px;
}

/* Floating cards */
.fc {
  position: absolute;
  background: rgba(17,17,17,0.95); border: 1px solid var(--border2);
  border-radius: 14px; padding: 12px 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.fc1 { top: -18px; right: -20px; animation: fcFloat 4s ease-in-out infinite; }
.fc2 { bottom: 36px; left: -28px; animation: fcFloat 5s ease-in-out infinite 1.5s; }
.fc3 { top: 50%; right: -24px; transform: translateY(-50%); animation: fcFloat 3.5s ease-in-out infinite 0.8s; }
.fc-title { font-size: 0.65rem; color: var(--gray); margin-bottom: 3px; }
.fc-val { font-family: 'Unbounded', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--white); }
.fc-val .lime { color: var(--lime); }
.fc-val .green { color: #4ADE80; }
@keyframes fcFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.fc3 { animation-name: fc3Float; }
@keyframes fc3Float { 0%,100% { transform: translateY(-50%); } 50% { transform: translateY(calc(-50% - 8px)); } }

/* ─── SECTION ─── */
.section { padding: 120px 0; }
.section-sm { padding: 70px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

.s-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--lime);
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.s-tag::before { content: ''; width: 24px; height: 1px; background: var(--lime); }

.s-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.1;
}

/* ─── FEATURES BENTO ─── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px;
  gap: 12px;
}
.bc { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 28px; overflow: hidden; position: relative; transition: border-color 0.3s, box-shadow 0.3s; }
.bc:hover { border-color: rgba(204,255,87,0.2); box-shadow: 0 0 0 1px rgba(204,255,87,0.05) inset; }

.bc-a { grid-column: span 7; grid-row: span 2; }
.bc-b { grid-column: span 5; grid-row: span 2; }
.bc-c { grid-column: span 4; grid-row: span 2; }
.bc-d { grid-column: span 4; grid-row: span 2; }
.bc-e { grid-column: span 4; grid-row: span 2; }

.bc-lime { background: var(--lime); border-color: var(--lime) !important; }
.bc-lime:hover { box-shadow: 0 12px 40px var(--lime-glow) !important; }

.bc-num {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 1;
  color: var(--lime); margin-bottom: 8px;
}
.bc-lime .bc-num { color: var(--black); }

.bc-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem; font-weight: 700; margin-bottom: 10px;
  line-height: 1.25;
}
.bc-lime .bc-heading { color: var(--black); }
.bc-lime .bc-text { color: rgba(0,0,0,0.55); }

.bc-text { font-size: 0.82rem; color: var(--gray2); line-height: 1.6; }

.bc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.bc-tag {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 4px 10px; border-radius: 6px;
}
.bc-tag-lime { background: var(--lime-dim); color: var(--lime); border: 1px solid rgba(204,255,87,0.2); }
.bc-tag-gray { background: rgba(255,255,255,0.05); color: var(--gray2); border: 1px solid var(--border); }

/* Decorative bg number */
.bc-decor {
  position: absolute; bottom: -10px; right: 10px;
  font-family: 'Unbounded', sans-serif; font-weight: 900;
  font-size: 7rem; line-height: 1; color: rgba(204,255,87,0.04);
  user-select: none; pointer-events: none; letter-spacing: -0.05em;
}
.bc-lime .bc-decor { color: rgba(0,0,0,0.08); }

.bc-icon { font-size: 2rem; margin-bottom: 14px; display: block; }

/* ─── STEPS ─── */
.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
}
.s-step {
  padding: 36px 32px; border-right: 1px solid var(--border);
  position: relative; transition: background 0.2s;
}
.s-step:hover { background: rgba(204,255,87,0.02); }
.s-step:last-child { border-right: none; }
.s-step-n {
  font-family: 'Unbounded', sans-serif; font-weight: 900;
  font-size: 2.5rem; line-height: 1; margin-bottom: 20px;
  color: rgba(204,255,87,0.15);
}
.s-step-title { font-family: 'Unbounded', sans-serif; font-size: 0.88rem; font-weight: 700; margin-bottom: 10px; }
.s-step-desc { font-size: 0.82rem; color: var(--gray2); line-height: 1.65; }
.s-step-action { margin-top: 16px; }
.s-step-link {
  font-size: 0.78rem; color: var(--lime); font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
}
.s-step-link:hover { color: var(--white); }

/* ─── REGIONS ─── */
.regions-wrap {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: 10px;
}
.reg {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 16px;
  text-decoration: none; display: block;
  transition: all 0.2s; position: relative; overflow: hidden;
}
.reg::after {
  content: ''; position: absolute;
  inset: 0; opacity: 0; transition: opacity 0.3s;
  background: radial-gradient(circle at 30% 30%, rgba(204,255,87,0.08) 0%, transparent 60%);
}
.reg:hover { border-color: rgba(204,255,87,0.3); transform: translateY(-2px); }
.reg:hover::after { opacity: 1; }
.reg-flag { font-size: 1.7rem; margin-bottom: 8px; display: block; }
.reg-name { font-size: 0.82rem; font-weight: 600; color: var(--white); margin-bottom: 3px; line-height: 1.3; }
.reg-size { font-size: 0.7rem; color: var(--gray); margin-bottom: 8px; }
.reg-badge {
  display: inline-block; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.05em; padding: 2px 7px; border-radius: 4px;
}
.rb-free { background: rgba(204,255,87,0.1); color: var(--lime); border: 1px solid rgba(204,255,87,0.2); }
.rb-pro { background: rgba(255,255,255,0.05); color: var(--gray2); border: 1px solid var(--border); }

/* ─── REVIEWS ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.rev {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px; transition: all 0.3s;
}
.rev:hover { border-color: rgba(204,255,87,0.2); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.rev-stars { color: var(--lime); font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 14px; }
.rev-text { font-size: 0.85rem; color: var(--gray2); line-height: 1.75; margin-bottom: 22px; }
.rev-author { display: flex; align-items: center; gap: 12px; }
.rev-av {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}
.av-a { background: rgba(204,255,87,0.12); color: var(--lime); }
.av-b { background: rgba(112,200,255,0.12); color: #70C8FF; }
.av-c { background: rgba(255,138,101,0.12); color: #FF8A65; }
.av-d { background: rgba(196,118,255,0.12); color: #C476FF; }
.rev-name { font-size: 0.83rem; font-weight: 600; margin-bottom: 2px; }
.rev-role { font-size: 0.72rem; color: var(--gray); }

/* ─── FAQ ─── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  color: var(--white); font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 600; text-align: left;
  padding: 24px 0; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; transition: color 0.2s;
}
.faq-q:hover { color: var(--lime); }
.faq-ico {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--lime); transition: all 0.3s;
}
.faq-item.open .faq-ico { transform: rotate(45deg); background: var(--lime); color: var(--black); border-color: var(--lime); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-ans { max-height: 240px; }
.faq-ans-p { padding: 0 0 22px; font-size: 0.87rem; color: var(--gray2); line-height: 1.8; }

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--lime); border-radius: 28px;
  padding: 72px 64px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: 'MAP';
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-family: 'Unbounded', sans-serif; font-weight: 900;
  font-size: 14rem; color: rgba(0,0,0,0.05);
  line-height: 1; pointer-events: none; letter-spacing: -0.05em;
}
.cta-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  font-weight: 900; color: var(--black);
  letter-spacing: -0.03em; line-height: 1.1;
  max-width: 500px; position: relative;
}
.cta-sub {
  font-size: 0.88rem; color: rgba(0,0,0,0.5);
  margin-top: 10px; max-width: 380px; line-height: 1.6;
}
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; position: relative; }
.btn-cta-dark {
  background: var(--black); color: var(--white);
  font-family: 'Unbounded', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.02em; padding: 16px 28px; border-radius: 14px;
  text-decoration: none; transition: all 0.2s; border: none; cursor: pointer;
}
.btn-cta-dark:hover { background: #1A1A1A; transform: translateY(-2px); color: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.btn-cta-ghost {
  background: rgba(0,0,0,0.1); color: rgba(0,0,0,0.7);
  border: 1px solid rgba(0,0,0,0.15);
  font-size: 0.88rem; font-weight: 500;
  padding: 16px 28px; border-radius: 14px;
  text-decoration: none; transition: all 0.2s;
}
.btn-cta-ghost:hover { background: rgba(0,0,0,0.15); color: var(--black); }

/* ─── TRUST ─── */
.trust-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0; overflow: hidden;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--gray2); }
.t-sep { width: 1px; height: 18px; background: var(--border); }

/* ─── DOWNLOAD LIST ─── */
.dl-list { border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.dl-item {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 18px 24px; border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.dl-item:last-child { border-bottom: none; }
.dl-item:hover { background: rgba(255,255,255,0.02); }
.dl-l { display: flex; align-items: center; gap: 14px; }
.dl-ico {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--lime-dim); border: 1px solid rgba(204,255,87,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.dl-name { font-weight: 600; font-size: 0.88rem; margin-bottom: 3px; }
.dl-meta { font-size: 0.74rem; color: var(--gray); display: flex; gap: 10px; }
.dl-r { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.badge-new {
  background: var(--lime-dim); color: var(--lime);
  border: 1px solid rgba(204,255,87,0.2);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 3px 8px; border-radius: 5px;
}
.badge-old { background: rgba(255,255,255,0.04); color: var(--gray); border: 1px solid var(--border); font-size: 0.65rem; font-weight: 600; padding: 3px 8px; border-radius: 5px; }
.btn-dl {
  background: var(--lime); color: var(--black);
  font-family: 'Unbounded', sans-serif; font-size: 0.7rem; font-weight: 700;
  padding: 9px 16px; border-radius: 9px; text-decoration: none;
  transition: all 0.2s; border: none; cursor: pointer;
}
.btn-dl:hover { background: var(--white); transform: translateY(-1px); color: var(--black); }
.btn-dl-ghost {
  background: transparent; color: var(--gray2);
  border: 1px solid var(--border); font-size: 0.78rem;
  padding: 9px 16px; border-radius: 9px; text-decoration: none;
  transition: all 0.2s;
}
.btn-dl-ghost:hover { color: var(--white); border-color: var(--border2); }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 140px 0 64px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(204,255,87,0.06) 0%, transparent 60%);
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--gray);
  margin-bottom: 24px; position: relative;
}
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb .sep { color: var(--gray); }
.p-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; letter-spacing: -0.04em;
  margin-bottom: 16px; line-height: 1.05; position: relative;
}
.p-sub { font-size: 0.95rem; color: var(--gray2); max-width: 560px; line-height: 1.75; position: relative; }

/* ─── POLICY ─── */
.policy-wrap { max-width: 720px; }
.policy-wrap h2 { font-family: 'Unbounded', sans-serif; font-size: 1.1rem; font-weight: 700; margin-top: 48px; margin-bottom: 14px; }
.policy-wrap h3 { font-size: 0.9rem; font-weight: 600; margin-top: 28px; margin-bottom: 10px; color: var(--gray3); }
.policy-wrap p { font-size: 0.86rem; color: var(--gray2); line-height: 1.85; margin-bottom: 12px; }
.policy-wrap ul, .policy-wrap ol { margin: 0 0 12px 18px; color: var(--gray2); font-size: 0.86rem; line-height: 1.85; }
.policy-wrap li { margin-bottom: 5px; }
.policy-wrap a { color: var(--lime); }
.policy-box {
  background: rgba(204,255,87,0.04); border: 1px solid rgba(204,255,87,0.15);
  border-radius: 14px; padding: 16px 20px; margin: 20px 0;
  font-size: 0.83rem; color: var(--gray2); line-height: 1.75;
}

/* ─── CONTACT ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.c-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.c-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--lime-dim); border: 1px solid rgba(204,255,87,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.c-lbl { font-size: 0.7rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.c-val { font-size: 0.88rem; color: var(--white); font-weight: 500; }
.c-sub { font-size: 0.74rem; color: var(--gray); margin-top: 2px; }

/* ─── FORM ─── */
.form-g { margin-bottom: 14px; }
.form-lbl { display: block; font-size: 0.75rem; font-weight: 600; color: var(--gray2); margin-bottom: 7px; letter-spacing: 0.03em; }
.form-inp, .form-ta, .form-sel {
  width: 100%; background: var(--card2);
  border: 1px solid var(--border); border-radius: 11px;
  color: var(--white); font-family: 'Inter', sans-serif;
  font-size: 0.88rem; padding: 12px 16px; outline: none;
  transition: all 0.2s; -webkit-appearance: none;
}
.form-inp:focus, .form-ta:focus, .form-sel:focus {
  border-color: var(--lime); box-shadow: 0 0 0 3px rgba(204,255,87,0.08);
}
.form-inp::placeholder, .form-ta::placeholder { color: var(--gray); }
.form-ta { height: 130px; resize: vertical; }
.form-sel option { background: var(--card2); }

/* ─── NOTIFICATION ─── */
.notif {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--card2); border: 1px solid rgba(204,255,87,0.3);
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.83rem; z-index: 9999; max-width: 300px;
  animation: nIn 0.4s ease;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.notif.hiding { animation: nOut 0.4s ease forwards; }
@keyframes nIn { from { transform: translateX(110%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes nOut { to { transform: translateX(110%); opacity: 0; } }
.notif-body { color: var(--gray2); }
.notif-body strong { color: var(--white); display: block; margin-bottom: 2px; }

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border); padding: 72px 0 36px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 56px;
}
.footer-desc {
  font-size: 0.82rem; color: var(--gray); line-height: 1.75;
  margin: 16px 0 24px; max-width: 240px;
}
.footer-socials { display: flex; gap: 8px; }
.soc {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--gray); text-decoration: none;
  transition: all 0.2s;
}
.soc:hover { border-color: var(--lime); color: var(--lime); }
.foot-col-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-links a { font-size: 0.82rem; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.foot-links a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.foot-copy { font-size: 0.78rem; color: var(--gray); }
.foot-legal { display: flex; gap: 20px; }
.foot-legal a { font-size: 0.78rem; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.foot-legal a:hover { color: var(--lime); }

/* ─── SEARCH ─── */
.search-box { display: flex; gap: 10px; max-width: 500px; margin: 0 auto 40px; }
.search-inp {
  flex: 1; background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; color: var(--white); font-family: 'Inter', sans-serif;
  font-size: 0.9rem; padding: 13px 18px; outline: none; transition: all 0.2s;
}
.search-inp:focus { border-color: var(--lime); }
.search-inp::placeholder { color: var(--gray); }

/* ─── REVEAL ANIMATION ─── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── 404 ─── */
.err-num {
  font-family: 'Unbounded', sans-serif; font-size: clamp(7rem, 22vw, 16rem);
  font-weight: 900; color: var(--lime); line-height: 1;
  letter-spacing: -0.05em; opacity: 0.15; user-select: none;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
}

/* ─── GRID HELPERS ─── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { max-width: 500px; margin: 0 auto; order: -1; }
  .bento { grid-auto-rows: auto; }
  .bc-a, .bc-b { grid-column: span 12; min-height: 200px; }
  .bc-c, .bc-d, .bc-e { grid-column: span 4; min-height: 180px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 24px; }
  .container { padding: 0 24px; }
  .hero-inner { padding: 0 24px; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .h-stat-val { font-size: 1.3rem; }
  .hero-stats { max-width: 100%; }
  .bc-c, .bc-d, .bc-e { grid-column: span 12; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-strip { padding: 44px 28px; flex-direction: column; align-items: flex-start; }
  .cta-strip::before { font-size: 8rem; bottom: -20px; top: auto; right: 10px; transform: none; }
  .section { padding: 80px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .marquee-bar { display: none; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-prime, .btn-ghost { width: 100%; justify-content: center; }
  .steps-row { grid-template-columns: 1fr; }
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
}
