:root {
  --bg-dark: #07111f;
  --bg-darker: #030712;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --text-dark: #101828;
  --text-muted: #667085;
  --border-light: #e5e7eb;
  --accent: #4f8cff;
  --accent-2: #22d3ee;
  --accent-3: #8b5cf6;
  --container: 1180px;
  --shadow-soft: 0 20px 60px rgba(15, 23, 42, 0.12);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(3, 7, 18, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 102;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 30px rgba(34, 211, 238, 0.25);
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: #fff;
}

.header-actions {
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 102;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 101;
  display: none;
  padding: 110px 24px 32px;
  background: rgba(3, 7, 18, 0.96);
  backdrop-filter: blur(18px);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu nav {
  display: grid;
  gap: 20px;
}

.mobile-menu a {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 28px;
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  box-shadow: 0 16px 36px rgba(79, 140, 255, 0.35);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.city-hero {
  min-height: 100svh;
  padding: 126px 0 76px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(79, 140, 255, 0.34), transparent 34%),
    radial-gradient(circle at 78% 20%, rgba(34, 211, 238, 0.2), transparent 28%),
    radial-gradient(circle at 70% 78%, rgba(139, 92, 246, 0.24), transparent 32%),
    linear-gradient(180deg, #030712 0%, #07111f 58%, #0a1423 100%);
  position: relative;
  overflow: hidden;
}

.city-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 84%);
}

.city-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 72px;
  align-items: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 22px var(--accent-2);
}

.city-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.city-hero h1 strong {
  color: transparent;
  background: linear-gradient(135deg, #fff 15%, #9ed8ff 48%, #b8a8ff 82%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-trust {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  font-weight: 700;
}

.city-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(20px);
}

.city-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 8px 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.status {
  color: #99f6e4;
}

.wireframe {
  display: grid;
  gap: 14px;
}

.wire-block {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.wire-block.large {
  min-height: 150px;
}

.wire-title {
  display: block;
  width: 55%;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.wire-line {
  display: block;
  height: 9px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.wire-line.accent {
  width: 82%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(3, 7, 18, 0.54);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 96px 0;
}

.section.white {
  background: #fff;
}

.section.dark {
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(79, 140, 255, 0.18), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.18), transparent 34%),
    var(--bg-darker);
}

.section-title {
  max-width: 860px;
  margin: 0;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-text {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
}

.dark .section-text {
  color: rgba(255, 255, 255, 0.68);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.local-grid {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--border-light);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.dark .card {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
}

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(79, 140, 255, 0.1);
  margin-bottom: 22px;
}

.dark .icon-box {
  color: var(--accent-2);
  background: rgba(34, 211, 238, 0.12);
}

.card h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.card p {
  margin: 12px 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.dark .card p {
  color: rgba(255, 255, 255, 0.68);
}

.nearby-links {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.nearby-links a {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.nearby-links a:hover {
  color: var(--accent-3);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.faq-card {
  padding: 28px;
  border: 1px solid var(--border-light);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.faq-card h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.faq-card p {
  margin: 12px 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.cta-section {
  padding: 96px 0;
  color: #fff;
  background: linear-gradient(135deg, #07111f, #030712);
}

.cta-box {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.cta-box h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.cta-box p {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.7;
}

.cta-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.footer {
  padding: 72px 0 36px;
  color: #fff;
  background: var(--bg-darker);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer h3 {
  margin: 0 0 18px;
  font-size: 15px;
}

.footer p,
.footer a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.58);
}

.footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.34);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

@media (max-width: 1024px) {
  .city-hero-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .city-panel {
    max-width: 620px;
  }

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

@media (max-width: 820px) {
  .desktop-nav,
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .city-hero {
    padding: 112px 0 64px;
  }

  .city-hero h1 {
    font-size: clamp(34px, 9.8vw, 48px);
  }

  .city-panel {
    display: none;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 76px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
