/* =====================================================================
   NUBENET — diseño moderno (inspirado en dgo.nubenet.com.ar)
   ===================================================================== */

@font-face {
  font-family: 'Guton';
  src: url('fonts/Guton-Bold.woff2') format('woff2'),
       url('fonts/Guton-Bold.woff')  format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-0:   #07142d;
  --bg-1:   #0a1f44;
  --bg-2:   #122e5f;
  --accent: #66b2e5;
  --accent-2: #75b8e4;
  --accent-grad: linear-gradient(135deg, #66b2e5 0%, #3679c5 100%);
  --highlight-grad: linear-gradient(135deg, #66b2e5, #9bd3ff);
  --text:   #f1f5fb;
  --text-dim: #a9b8cf;
  --card-bg: rgba(255,255,255,.04);
  --card-bg-hover: rgba(255,255,255,.07);
  --border: rgba(255,255,255,.08);
  --shadow: 0 18px 40px rgba(0,0,0,.35);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;        /* clip + hidden = compatible con iOS viejo y nuevo */
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: radial-gradient(ellipse at top, var(--bg-2) 0%, var(--bg-1) 35%, var(--bg-0) 100%) fixed;
  background-attachment: fixed;
  min-height: 100vh;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: clip;
  max-width: 100vw;
  line-height: 1.5;
  transition: opacity .4s ease;
}
body.fade-out { opacity: 0; }

a { color: var(--text); text-decoration: none; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { font-family: 'Guton', 'Inter', sans-serif; letter-spacing: -.01em; }

/* ----- fondo decorativo (orbes de luz) ----- */
.bg-orbs {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-width: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  contain: strict;
}
.bg-orbs::before, .bg-orbs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.bg-orbs::before {
  width: 40vw; height: 40vw;
  max-width: 500px; max-height: 500px;
  background: #66b2e5;
  top: 0;
  left: 0;
  transform: translate(-25%, -25%);
}
.bg-orbs::after {
  width: 50vw; height: 50vw;
  max-width: 600px; max-height: 600px;
  background: #3679c5;
  bottom: 0;
  right: 0;
  transform: translate(25%, 25%);
  opacity: .25;
}

/* =================== TOP NAV =================== */
.top-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 1.5rem;
  background: rgba(7, 20, 45, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: transform .35s ease;
}
.top-nav.hidden { transform: translateY(-100%); }
.top-nav .nav-left, .top-nav .nav-right { display: flex; align-items: center; gap: 1.25rem; }
.top-nav img.brand { height: 32px; }
.menu-items { list-style: none; display: flex; gap: 1.25rem; flex-wrap: wrap; }
.menu-items a { font-size: .9rem; color: var(--text-dim); transition: color .25s; }
.menu-items a:hover { color: var(--text); }
.social-icons-nav { display: flex; gap: .25rem; }
.social-icons-nav a {
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-dim);
  transition: color .25s, background .25s, transform .25s;
}
.social-icons-nav a:hover {
  color: var(--accent);
  background: rgba(102,178,229,.12);
  transform: scale(1.08);
}
.social-icons-nav svg { width: 18px; height: 18px; }

/* =================== HERO =================== */
.hero {
  width: 100%;
  padding: 7rem 1.5rem 3rem;
  text-align: center;
  position: relative;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #9bd3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
.hero p { color: var(--text-dim); font-size: 1.1rem; max-width: 600px; margin: 0 auto 1.25rem; }
.city-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  font-size: .9rem;
  color: var(--text-dim);
}
.city-badge svg { width: 16px; height: 16px; fill: var(--accent); }

/* =================== SLIDER =================== */
.slider {
  width: min(1100px, 95%);
  margin: 0 auto 3rem;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.slider .slide.active { opacity: 1; }
.slider .slide img { width: 100%; height: 100%; object-fit: cover; }
.slider .dots {
  position: absolute;
  bottom: 1rem;
  left: 0; right: 0;
  text-align: center;
  z-index: 2;
}
.slider .dot {
  display: inline-block;
  width: 10px; height: 10px;
  margin: 0 4px;
  background: rgba(255,255,255,.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background .25s, transform .25s;
}
.slider .dot.active, .slider .dot:hover { background: #fff; transform: scale(1.15); }

/* =================== SECTION =================== */
section.section {
  width: 100%;
  max-width: 1200px;
  padding: 3rem 1.5rem;
  margin: 0 auto;
}
.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: .5rem;
}
.section .lead {
  text-align: center;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* =================== TABS =================== */
.tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin: 0 auto 2.5rem;
  background: rgba(255,255,255,.04);
  padding: .35rem;
  border-radius: 999px;
  width: fit-content;
  border: 1px solid var(--border);
}
.tab {
  padding: .65rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-dim);
  transition: all .3s ease;
  white-space: nowrap;
  border: none;
  background: transparent;
  font-family: inherit;
}
.tab:hover { color: var(--text); }
.tab.active {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 6px 20px rgba(102,178,229,.4);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =================== PLAN CARDS =================== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.plan-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(102,178,229,.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.plan-card:hover {
  transform: translateY(-6px);
  background: var(--card-bg-hover);
  border-color: rgba(102,178,229,.4);
}
.plan-card:hover::before { opacity: 1; }

.plan-card.highlight {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(102,178,229,.12) 0%, rgba(255,255,255,.03) 100%);
  box-shadow: 0 20px 50px rgba(102,178,229,.18);
}
.plan-card .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--highlight-grad);
  color: #0a1f44;
  padding: .25rem .7rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.plan-speed {
  display: flex;
  align-items: baseline;
  gap: .4rem;
}
.plan-speed .num {
  font-family: 'Guton', sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  background: linear-gradient(180deg, #fff, #9bd3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plan-speed .unit { font-size: 1rem; color: var(--text-dim); }
.plan-tag {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.plan-price .amount {
  font-family: 'Guton', sans-serif;
  font-size: 2rem;
  color: #fff;
}
.plan-price .per { color: var(--text-dim); font-size: .9rem; }
.plan-no-tax {
  font-size: .75rem;
  color: var(--text-dim);
  margin-top: -.5rem;
}

.plan-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; flex-grow: 1; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .9rem;
  color: var(--text);
}
.plan-features li svg { width: 16px; height: 16px; flex-shrink: 0; }
.plan-features li svg path { fill: var(--accent); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--accent-grad);
  color: #fff;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  font-family: inherit;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(102,178,229,.4);
  color: #fff;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: transparent;
  color: var(--text);
  padding: .85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  font-family: inherit;
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(255,255,255,.06); border-color: var(--accent); color: var(--text); }

/* =================== AVISO PRECIO DE LISTA =================== */
.price-notice {
  display: flex;
  align-items: center;
  gap: .9rem;
  max-width: 760px;
  margin: 1rem auto 1.8rem;
  padding: .9rem 1.15rem;
  background: linear-gradient(135deg, rgba(40,167,69,.12), rgba(102,178,229,.08));
  border: 1px solid rgba(40,167,69,.45);
  border-radius: .8rem;
  text-align: left;
  font-size: .92rem;
  line-height: 1.45;
  color: var(--text);
}
.price-notice-tag {
  flex-shrink: 0;
  background: #28a745;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .35rem .65rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-notice-text strong { color: #5fd47a; }
@media (max-width: 560px) {
  .price-notice {
    flex-direction: column;
    align-items: flex-start;
    gap: .55rem;
    text-align: left;
    font-size: .88rem;
    padding: .85rem 1rem;
  }
}

/* =================== DGO PLAN CARD =================== */
.dgo-card { gap: 1rem; }

.dgo-brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .25rem;
}
.dgo-logo { display: inline-flex; align-items: center; }
.dgo-logo img { height: 28px; width: auto; display: block; }
.dgo-logo-text { display: none; font-family: 'Guton', sans-serif; font-size: 1.6rem; line-height: 1; letter-spacing: -.02em; color: #fff; }
.dgo-logo-text .dgo-d { color: #ff8a3d; }
.dgo-logo.fallback .dgo-logo-text { display: inline; }
.dgo-tier {
  font-family: 'Guton', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .04em;
}
.dgo-tier-tv   { color: #ff8a3d; }
.dgo-tier-full { color: #ff8a3d; }

.dgo-combo-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.dgo-speed-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  align-self: flex-start;
  padding: .35rem .8rem;
  background: rgba(102,178,229,.12);
  border: 1px solid rgba(102,178,229,.3);
  border-radius: 999px;
  font-size: .8rem;
  color: var(--accent-2);
  font-weight: 600;
}
.dot-accent {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.incluye-tambien {
  margin-top: .25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.incluye-label {
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--text-dim);
  margin-bottom: .65rem;
  font-weight: 600;
}
.incluye-logos {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.partner-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  padding: 4px 10px;
  min-height: 32px;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.partner-chip img { height: 24px; width: auto; object-fit: contain; display: block; }
.partner-chip-text {
  display: none;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 0 4px;
  color: var(--chip-fg, #fff);
}
.partner-chip.fallback {
  background: var(--chip-bg, #1b3155);
  padding: 4px 12px;
}
.partner-chip.fallback .partner-chip-text { display: inline; }

/* =================== COMBO SELECTOR =================== */
.combo-selector {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.combo-btn {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: .65rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 600;
  font-family: inherit;
  transition: all .3s;
  white-space: nowrap;
}
.combo-btn:hover { color: var(--text); border-color: var(--accent); }
.combo-btn.active {
  background: var(--accent-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(102,178,229,.35);
}

.combo-info {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  backdrop-filter: blur(8px);
}
.combo-logos {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: center;
}
.combo-logos img {
  height: 44px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.combo-info ul { list-style: none; display: grid; gap: .55rem; }
.combo-info ul li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .92rem;
  color: var(--text);
}
.combo-info ul li svg { width: 16px; height: 16px; flex-shrink: 0; }
.combo-info ul li svg path { fill: var(--accent); }

@media (max-width: 640px) {
  .combo-info { grid-template-columns: 1fr; }
}

/* =================== NEGOCIOS / EMPRESAS =================== */
.empresas-card {
  background: linear-gradient(135deg, rgba(102,178,229,.1), rgba(54,121,197,.05));
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 3rem auto;
}
.empresas-card h3 { font-size: 1.8rem; margin-bottom: .75rem; }
.empresas-card p { color: var(--text-dim); margin-bottom: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* =================== FORM CONTACTO =================== */
#subite { width: 100%; padding: 3rem 1.5rem; }
.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-legend h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.contact-legend p { color: var(--text-dim); margin-bottom: 1rem; }
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--accent-grad);
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .25s;
}
.contact-email:hover { transform: translateY(-2px); color: #fff; }

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .contact-form .row { grid-template-columns: 1fr; } }
.contact-form label {
  display: block;
  font-size: .82rem;
  color: var(--text-dim);
  margin: 1rem 0 .4rem;
  font-weight: 600;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: .75rem;
  padding: .75rem 1rem;
  font-size: .95rem;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color .25s, background .25s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,.07);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.submit-wrap { text-align: right; margin-top: 1.25rem; }

/* =================== LOGOS CAROUSEL =================== */
.logos-section {
  width: 100%;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logos-section h3 { text-align: center; font-size: 1rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 1.5rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.logos-container {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}
.logos-track { display: flex; gap: 3rem; animation: scroll-logos 25s linear infinite; }
.logos-slide { display: flex; gap: 3rem; flex-shrink: 0; align-items: center; }
.logos-slide img { max-height: 50px; width: auto; opacity: .8; filter: grayscale(.3); transition: opacity .3s, filter .3s; }
.logos-slide img:hover { opacity: 1; filter: none; }
@keyframes scroll-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =================== SOCIAL =================== */
#social {
  width: 100%;
  padding: 3rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(102,178,229,.06));
  border-top: 1px solid var(--border);
}
#social h2 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.social-icons { display: inline-flex; gap: 1rem; }
.social-icons a {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  transition: all .25s;
}
.social-icons a:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: rgba(102,178,229,.15);
  color: var(--accent);
}
.social-icons svg { width: 26px; height: 26px; }

/* =================== AFIP / FOOTER =================== */
.afip-badge {
  width: 100%;
  text-align: center;
  padding: 1rem;
  background: rgba(0,0,0,.3);
}
.afip-badge img { display: inline-block; width: 80px; }
footer {
  width: 100%;
  text-align: center;
  padding: 1.5rem;
  font-size: .85rem;
  color: var(--text-dim);
  background: rgba(0,0,0,.4);
  border-top: 1px solid var(--border);
}
footer a { color: var(--text-dim); }
footer a:hover { color: var(--accent); }

/* =================== SELECTOR DE CIUDAD =================== */
.selector-hero {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 4rem 1rem 2rem;
  text-align: center;
  box-sizing: border-box;
}
/* En pantallas altas centramos vertical, en chicas el contenido fluye desde arriba */
@media (min-height: 900px) and (min-width: 768px) {
  .selector-hero { justify-content: center; }
}
.selector-hero .brand-logo { margin-bottom: 1.75rem; }
.selector-hero .brand-logo img { height: 56px; max-width: 70vw; }
.selector-hero h1 {
  font-size: clamp(2rem, 8vw, 4rem);
  background: linear-gradient(180deg, #fff, #9bd3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: .5rem;
  padding: 0 .5rem;
}
.selector-hero p {
  color: var(--text-dim);
  margin-bottom: 2rem;
  font-size: 1rem;
  padding: 0 .5rem;
  max-width: 520px;
}
/* Apiladas verticalmente hasta 1023px (todos los celulares y tablets portrait).
   A partir de 1024px (laptop/desktop) muestra las 4 en fila. */
.city-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem;
  width: 100%;
  max-width: 560px;
}
@media (min-width: 1024px) {
  .city-grid {
    display: grid !important;
    flex-direction: unset !important;
    grid-template-columns: repeat(4, 1fr) !important;
    max-width: 980px;
  }
}
.city-card { width: 100%; max-width: 100%; }
.city-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: 1.4rem 1.25rem;
  padding-right: 3.25rem;            /* deja espacio para la flecha */
  cursor: pointer;
  transition: all .3s ease;
  text-align: left;
  overflow: hidden;
  font-family: inherit;
  color: var(--text);
  backdrop-filter: blur(8px);
  width: 100%;
  min-width: 0;
  -webkit-tap-highlight-color: transparent;
}
.city-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-grad);
  opacity: 0;
  transition: opacity .3s;
  z-index: -1;
}
.city-card:hover, .city-card:active {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 15px 35px rgba(102,178,229,.25);
}
.city-card .city-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-grad);
  margin-bottom: .9rem;
}
.city-card .city-icon svg { width: 22px; height: 22px; fill: #fff; }
.city-card h3 {
  font-size: 1.25rem;
  margin-bottom: .35rem;
  word-break: break-word;
  line-height: 1.2;
}
.city-card .city-meta {
  font-size: .8rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.city-card .arrow {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--text-dim);
  transition: transform .25s, color .25s;
}
.city-card:hover .arrow,
.city-card:active .arrow {
  transform: translateY(-50%) translateX(4px);
  color: var(--accent);
}

.coming-tag {
  display: inline-block;
  background: rgba(255,200,80,.18);
  color: #ffcb5b;
  border: 1px solid rgba(255,200,80,.3);
  font-size: .7rem;
  padding: .15rem .55rem;
  border-radius: 999px;
  letter-spacing: .03em;
}

.selector-footer {
  margin-top: 2.5rem;
  color: var(--text-dim);
  font-size: .82rem;
  padding: 0 1rem;
  line-height: 1.7;
}
.selector-footer a { color: var(--text-dim); }
.selector-footer a:hover { color: var(--accent); }

@media (max-width: 480px) {
  .selector-hero { padding: 2rem .75rem 1.5rem; }
  .selector-hero .brand-logo { margin-bottom: 1.25rem; }
  .selector-hero .brand-logo img { height: 44px; }
  .selector-hero h1 { font-size: 1.8rem; margin-bottom: .35rem; }
  .selector-hero p { font-size: .9rem; margin-bottom: 1.25rem; }
  .city-grid { gap: .65rem; }
  .city-card { padding: 1rem; padding-right: 2.5rem; border-radius: .9rem; }
  .city-card .city-icon { width: 36px; height: 36px; margin-bottom: .55rem; border-radius: 8px; }
  .city-card .city-icon svg { width: 18px; height: 18px; }
  .city-card h3 { font-size: 1.05rem; }
  .city-card .city-meta { font-size: .75rem; }
  .city-card .arrow { right: 1rem; font-size: 1.2rem; }
  .selector-footer { margin-top: 1.5rem; font-size: .75rem; }
}

/* =================== COMING SOON CITY =================== */
.coming-soon-screen {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.coming-soon-screen img.brand { height: 60px; margin-bottom: 2rem; }
.coming-soon-screen h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(180deg, #fff, #9bd3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
.coming-soon-screen p { color: var(--text-dim); max-width: 500px; margin-bottom: 2rem; font-size: 1.1rem; }

/* =================== UTILS =================== */
.center { text-align: center; }
.spacer { height: 2rem; }
