/* ═══════════════════════════════════════
   NÓMADE — styles.css
   Tema oscuro · Syne + DM Sans
═══════════════════════════════════════ */

:root {
  --bg:         #0A0A0A;
  --bg-2:       #111111;
  --bg-3:       #181818;
  --bg-4:       #222222;
  --fg:         #F5F5F0;
  --fg-muted:   #888880;
  --fg-subtle:  #444440;
  --accent:     #F26522;
  --accent-dim: rgba(242,101,34,0.15);
  --accent-glow:rgba(242,101,34,0.35);
  --border:     rgba(255,255,255,0.07);
  --border-2:   rgba(255,255,255,0.12);
  --radius:     12px;
  --radius-lg:  20px;
  --nav-h:      68px;
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --transition:   0.2s ease;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
em { font-style: italic; color: var(--accent); }
a  { color: inherit; text-decoration: none; }
p  { color: var(--fg-muted); line-height: 1.7; }
small { font-size: 0.65em; color: var(--fg-muted); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav.scrolled { background: rgba(10,10,10,0.97); }

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 0.25rem; }
.nav-link {
  padding: 0.4rem 0.85rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--fg-muted);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--fg); background: var(--bg-3);
}
.nav-actions { display: flex; gap: 0.75rem; align-items: center; }

.btn-ghost {
  padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.9rem; font-weight: 500;
  color: var(--fg-muted); border: 1px solid var(--border-2);
  transition: color var(--transition), border-color var(--transition);
}
.btn-ghost:hover { color: var(--fg); border-color: var(--fg-subtle); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.25rem; border-radius: 8px;
  background: var(--accent); color: #fff;
  font-size: 0.9rem; font-weight: 600; font-family: var(--font-body);
  border: none; cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary.btn-lg { padding: 0.85rem 1.75rem; font-size: 1rem; border-radius: 10px; }
.btn-primary.btn-full { width: 100%; justify-content: center; padding: 0.9rem; font-size: 1rem; border-radius: 10px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 10px;
  border: 1px solid var(--border-2); color: var(--fg);
  font-size: 0.95rem; font-weight: 500;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover { border-color: var(--accent); background: var(--accent-dim); }
.btn-outline.btn-lg { padding: 0.85rem 1.75rem; font-size: 1rem; }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--fg); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu {
  display: none; flex-direction: column; gap: 0.5rem;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--bg-2); padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border); z-index: 99;
}
.mobile-menu.open { display: flex; }

/* ── SECTION TAGS ── */
.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '—'; color: var(--fg-subtle);
}
.tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.4); }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 4rem) 2rem 5rem;
  position: relative; overflow: hidden;
  gap: 4rem;
  max-width: 1200px; margin: 0 auto;
}
.hero-bg {
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.12;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -200px; right: -100px;
  animation: float1 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: #E05010;
  bottom: 0; left: -100px;
  animation: float2 15s ease-in-out infinite;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, transparent 20%, black 80%);
}
@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,30px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-40px)} }

.hero-content { flex: 1; min-width: 0; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--fg-muted);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(3rem, 6.5vw, 6rem);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-sub {
  font-size: 1.1rem; color: var(--fg-muted); max-width: 500px;
  margin-bottom: 2.5rem; line-height: 1.7;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  animation: fadeUp 0.8s 0.3s ease both;
}
.stat-num {
  display: block; font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700; color: var(--fg);
}
.stat-label { font-size: 0.8rem; color: var(--fg-muted); }
.stat-divider { width: 1px; height: 32px; background: var(--border-2); }

/* MACHINE CARD */
.hero-visual {
  flex: 0 0 340px; position: relative;
  animation: fadeUp 0.8s 0.2s ease both;
}
.machine-card {
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
}
.machine-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem;
}
.machine-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
.machine-status { font-size: 0.75rem; color: #4ade80; }
.machine-slots {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-bottom: 1rem;
}
.slot {
  height: 48px; border-radius: 8px; border: 1px solid var(--border-2);
  position: relative; overflow: hidden;
}
.slot-available {
  background: var(--bg-3);
  border-color: var(--accent);
}
.slot-available::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 3px; background: var(--accent); border-radius: 2px;
}
.slot-empty { background: var(--bg-3); }
.slot-charging {
  background: var(--accent-dim);
  border-color: var(--accent);
  animation: charging 1.5s ease-in-out infinite;
}
@keyframes charging {
  0%,100%{opacity:1} 50%{opacity:0.5}
}
.machine-info {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--fg-muted); margin-bottom: 1rem;
}
.machine-avail { color: #4ade80; font-weight: 600; }
.machine-qr {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 1rem; background: var(--bg-3); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.qr-placeholder { opacity: 0.7; }
.machine-qr span { font-size: 0.78rem; color: var(--fg-muted); }

.float-badge {
  position: absolute;
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: 20px; padding: 0.4rem 0.85rem;
  font-size: 0.8rem; font-weight: 500; white-space: nowrap;
  display: flex; align-items: center; gap: 0.4rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.float-badge span { color: var(--accent); }
.float-1 { top: -16px; right: -16px; animation: floatB1 4s ease-in-out infinite; }
.float-2 { bottom: -16px; left: -16px; animation: floatB2 5s ease-in-out infinite; }
@keyframes floatB1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes floatB2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ── STEPS PREVIEW ── */
.steps-preview {
  padding: 6rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-title { margin-bottom: 3rem; }
.section-title span { color: var(--accent); }

.steps-grid {
  display: flex; align-items: flex-start; gap: 0;
  overflow-x: auto; padding-bottom: 1rem;
}
.step-card {
  flex: 1; min-width: 180px; padding: 1.75rem;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--bg-3);
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
}
.step-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.step-card::before {
  content: attr(data-step);
  position: absolute; top: 1rem; right: 1.25rem;
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
  color: var(--fg-subtle); letter-spacing: 0.05em;
}
.step-icon { margin-bottom: 1rem; }
.step-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.875rem; }
.step-arrow {
  padding: 0 0.75rem; margin-top: 3rem;
  color: var(--accent); font-size: 1.2rem; flex-shrink: 0;
}
.steps-cta { margin-top: 2.5rem; }

/* ── PRICING ── */
.pricing { padding: 6rem 0; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem;
}
.pricing-card {
  padding: 2rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-2);
  background: var(--bg-2);
}
.pricing-card.pricing-featured {
  background: var(--bg-3);
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
  transform: scale(1.03);
}
.pricing-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}
.pricing-amount {
  font-family: var(--font-display); font-size: 3rem; font-weight: 800;
  color: var(--fg); margin-bottom: 1rem; line-height: 1;
}
.pricing-card p { font-size: 0.875rem; }

/* ── FOR LOCALS ── */
.for-locals { padding: 6rem 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.for-locals-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.for-locals-text h2 { margin-bottom: 1rem; }
.for-locals-text p { margin-bottom: 1.5rem; }
.locals-list { list-style: none; margin-bottom: 2rem; }
.locals-list li {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.locals-list li span { color: var(--accent); font-weight: 600; }

.locals-card {
  background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); padding: 2rem;
}
.locals-card-header {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.locals-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.locals-stats div { display: flex; flex-direction: column; gap: 0.25rem; }
.locals-num {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--accent);
}
.locals-stats span:last-child { font-size: 0.8rem; color: var(--fg-muted); }
.locals-bar {
  height: 6px; background: var(--bg-4); border-radius: 3px; margin-bottom: 0.4rem;
}
.locals-bar-fill {
  height: 100%; border-radius: 3px; background: var(--accent);
  transition: width 1s ease;
}
.locals-bar-label { font-size: 0.78rem; color: var(--fg-muted); }

/* ── PAGE HERO ── */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 2rem 4rem;
  max-width: 1200px; margin: 0 auto;
}
.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero p { font-size: 1.1rem; max-width: 560px; }

/* ── STEPS DETAIL ── */
.steps-detail { padding: 2rem 0 6rem; }
.step-detail-item {
  display: grid; grid-template-columns: 80px 1fr 1fr;
  gap: 3rem; align-items: center;
  padding: 4rem 0; border-bottom: 1px solid var(--border);
  max-width: 1200px; margin: 0 auto; padding-left: 2rem; padding-right: 2rem;
}
.step-detail-item:last-child { border-bottom: none; }
.step-detail-reverse { direction: rtl; }
.step-detail-reverse > * { direction: ltr; }

.step-detail-number {
  font-family: var(--font-display); font-size: 4rem; font-weight: 800;
  color: var(--fg-subtle); line-height: 1;
}
.step-detail-content h2 { font-size: 2rem; margin-bottom: 1rem; }
.step-detail-content p { margin-bottom: 1.5rem; }

.step-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.tag {
  padding: 0.3rem 0.75rem; border-radius: 20px;
  border: 1px solid var(--border-2); font-size: 0.8rem; font-weight: 500;
  color: var(--fg-muted);
}

.step-detail-visual {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  min-height: 180px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

/* Visual step 1 — map pins */
.step-visual-1 { flex-direction: column; gap: 1rem; }
.visual-pin {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: var(--radius); padding: 0.75rem 1rem; width: 100%;
}
.pin-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--accent); flex-shrink: 0;
  box-shadow: 0 0 8px var(--accent-glow);
}
.pin-label { font-size: 0.85rem; line-height: 1.3; }
.pin-label small { color: var(--accent); font-size: 0.75rem; }

/* Visual step 2 — phone */
.phone-mock {
  width: 160px;
  background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.phone-header {
  padding: 0.5rem 0.75rem;
  background: var(--bg-4); border-bottom: 1px solid var(--border);
  font-size: 0.65rem; color: var(--fg-muted); text-align: center;
}
.phone-content { padding: 1rem 0.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
.phone-logo { font-weight: 700; font-size: 0.9rem; text-align: center; }
.phone-msg { font-size: 0.75rem; color: var(--fg-muted); text-align: center; }
.phone-input {
  background: var(--bg-4); border: 1px solid var(--border-2);
  border-radius: 6px; padding: 0.4rem 0.5rem;
  font-size: 0.75rem; color: var(--fg-muted);
}
.phone-btn {
  background: var(--accent); color: #fff;
  border-radius: 6px; padding: 0.4rem; text-align: center;
  font-size: 0.7rem; font-weight: 600;
}

/* Visual step 3 — power bank */
.powerbank-mock { text-align: center; }
.pb-body {
  width: 80px; height: 140px; margin: 0 auto 1rem;
  background: var(--bg-3); border: 2px solid var(--accent);
  border-radius: 12px; position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.pb-indicator {
  width: 40px; height: 8px; background: var(--accent); border-radius: 4px;
  box-shadow: 0 0 12px var(--accent-glow);
}
.pb-cables { display: flex; flex-direction: column; gap: 2px; font-size: 0.6rem; color: var(--fg-muted); text-align: center; }

/* Visual step 4 — return */
.return-mock { text-align: center; }
.return-check {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(74,222,128,0.15); border: 2px solid #4ade80;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #4ade80; margin: 0 auto 1rem;
}
.return-text { font-weight: 600; margin-bottom: 0.5rem; }
.return-cost { font-size: 0.85rem; color: var(--fg-muted); }

/* ── FAQ ── */
.faq { padding: 6rem 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  color: var(--fg); text-align: left; gap: 1rem;
}
.faq-question span {
  font-size: 1.2rem; color: var(--accent); transition: transform var(--transition); flex-shrink: 0;
}
.faq-item.open .faq-question span { transform: rotate(45deg); }
.faq-answer {
  display: none; padding-bottom: 1.25rem;
  font-size: 0.925rem; color: var(--fg-muted); line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── LOCATIONS ── */
.locations-section { padding-top: 0; }
.locations-layout {
  display: grid; grid-template-columns: 360px 1fr;
  height: calc(100vh - var(--nav-h) - 280px);
  min-height: 500px;
}
.locations-sidebar {
  background: var(--bg-2); border-right: 1px solid var(--border);
  overflow-y: auto; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.locations-search input {
  width: 100%; padding: 0.65rem 1rem;
  background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: var(--radius); color: var(--fg); font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none; transition: border-color var(--transition);
}
.locations-search input:focus { border-color: var(--accent); }
.locations-search input::placeholder { color: var(--fg-subtle); }

.filter-group { display: flex; flex-direction: column; gap: 0.5rem; }
.filter-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-subtle); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chip {
  padding: 0.3rem 0.7rem; border-radius: 20px;
  border: 1px solid var(--border-2); background: none;
  font-size: 0.8rem; color: var(--fg-muted); cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.chip:hover, .chip.active {
  background: var(--accent-dim); border-color: var(--accent); color: var(--fg);
}
.locations-count { font-size: 0.8rem; color: var(--fg-subtle); padding: 0.25rem 0; }
.locations-list { display: flex; flex-direction: column; gap: 0.5rem; overflow-y: auto; flex: 1; }

.location-item {
  padding: 0.85rem 1rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--bg-3); cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.location-item:hover, .location-item.active {
  border-color: var(--accent); background: var(--accent-dim);
}
.location-item-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.25rem;
}
.location-name { font-weight: 600; font-size: 0.9rem; }
.location-type-badge {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem; border-radius: 4px;
  background: var(--bg-4); color: var(--fg-muted);
}
.location-address { font-size: 0.78rem; color: var(--fg-muted); margin-bottom: 0.35rem; }
.location-avail { font-size: 0.78rem; color: #4ade80; font-weight: 500; }
.location-avail::before { content: '● '; }

/* Map */
.locations-map { background: var(--bg-3); position: relative; overflow: hidden; }
.map-placeholder {
  height: 100%; display: flex; flex-direction: column;
  padding: 1.5rem;
}
.map-header-stats {
  display: flex; gap: 2rem; margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.map-stat { display: flex; flex-direction: column; gap: 2px; }
.map-stat span { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
.map-stat small { font-size: 0.7rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.map-content {
  flex: 1; position: relative;
  background:
    radial-gradient(circle at 40% 50%, rgba(242,101,34,0.04) 0%, transparent 60%),
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: auto, 50px 50px, 50px 50px;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
}
.map-note {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; align-items: flex-start; gap: 0.5rem;
  background: rgba(10,10,10,0.9); border: 1px solid var(--border-2);
  border-radius: var(--radius); padding: 0.75rem 1rem;
  font-size: 0.8rem; color: var(--fg-muted); max-width: 400px;
  backdrop-filter: blur(8px); z-index: 2;
}
.map-pin {
  position: absolute; transform: translate(-50%, -50%);
  cursor: pointer;
}
.pin-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 0 16px var(--accent-glow);
  transition: transform var(--transition);
}
.map-pin:hover .pin-icon { transform: scale(1.2); }
.pin-tooltip {
  position: absolute; bottom: 110%; left: 50%; transform: translateX(-50%);
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: 8px; padding: 0.4rem 0.75rem;
  font-size: 0.75rem; white-space: nowrap;
  opacity: 0; transition: opacity var(--transition); pointer-events: none;
}
.map-pin:hover .pin-tooltip { opacity: 1; }
.map-legend {
  display: flex; gap: 1.5rem; margin-top: 1rem;
  font-size: 0.78rem; color: var(--fg-muted); align-items: center;
}
.legend-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  margin-right: 4px;
}
.legend-active { background: var(--accent); }
.legend-selected { background: #fff; }

/* ── CONTACT ── */
.contact-section { padding: 2rem 0 6rem; }
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }

.form-type-selector {
  display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.form-type-btn {
  padding: 0.45rem 1rem; border-radius: 20px;
  border: 1px solid var(--border-2); background: none;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
  color: var(--fg-muted); cursor: pointer;
  transition: all var(--transition);
}
.form-type-btn:hover, .form-type-btn.active {
  background: var(--accent); border-color: var(--accent); color: #fff;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.825rem; font-weight: 500; color: var(--fg-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: var(--radius); color: var(--fg);
  font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--fg-subtle); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg-2); }
.form-note { font-size: 0.8rem; color: var(--fg-subtle); text-align: center; margin-top: -0.5rem; }

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.contact-info-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-info-card strong { display: block; font-size: 0.9rem; margin-bottom: 0.25rem; }
.contact-info-card p { font-size: 0.8rem; margin-bottom: 0.35rem; }
.contact-info-card a { font-size: 0.825rem; color: var(--accent); }
.contact-info-card a:hover { text-decoration: underline; }

.contact-social { margin-top: 0.5rem; }
.social-links { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.social-link {
  padding: 0.4rem 1rem; border-radius: 20px;
  border: 1px solid var(--border-2); font-size: 0.8rem; color: var(--fg-muted);
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }

/* ── FOOTER ── */
.footer {
  padding: 4rem 0 2rem;
  background: var(--bg-2); border-top: 1px solid var(--border);
}
.footer-top {
  display: grid; grid-template-columns: 1fr auto;
  gap: 4rem; margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }
.footer-links { display: flex; gap: 3rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col-title {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--fg-subtle); margin-bottom: 0.25rem;
}
.footer-col a { font-size: 0.875rem; color: var(--fg-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--border);
  font-size: 0.8rem; color: var(--fg-subtle);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding-top: calc(var(--nav-h) + 2rem); }
  .hero-visual { width: 100%; max-width: 340px; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.pricing-featured { transform: none; }
  .for-locals-inner { grid-template-columns: 1fr; }
  .step-detail-item { grid-template-columns: 60px 1fr; }
  .step-detail-visual { display: none; }
  .step-detail-reverse { direction: ltr; }
  .locations-layout { grid-template-columns: 1fr; height: auto; }
  .locations-map { min-height: 400px; }
  .map-placeholder { height: 400px; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 2rem; }
}
@media (max-width: 640px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .stat-divider { display: none; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

svg, svg * {
  stroke: #ff6b00 !important;
  fill: #ff6b00 !important;
}
