/* ===== Fonts ===== */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/archivo-variable.woff2") format("woff2");
}
@font-face {
  font-family: "Archivo";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/archivo-variable-italic.woff2") format("woff2");
}

/* ===== Tokens ===== */
:root {
  --bg-dark: #101013;
  --bg-cream: #faf9f5;
  --pink: #f13b8c;
  --green: #00b375;
  --ink: #101013;
  --ink-soft: rgba(16, 16, 19, 0.68);
  --ink-faint: rgba(16, 16, 19, 0.45);
  --paper: #ffffff;
  --line: rgba(16, 16, 19, 0.1);
  --on-dark: #faf9f5;
  --on-dark-soft: rgba(250, 249, 245, 0.7);
  --on-dark-faint: rgba(250, 249, 245, 0.5);
  --line-dark: rgba(250, 249, 245, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --wrap: 1160px;
  --font: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

/* El atributo [hidden] es de baja prioridad (UA stylesheet) — cualquier
   regla nuestra con `display` (ej. .btn, .chat-input-row) le gana y el
   elemento se sigue viendo aunque tenga `hidden`. Esto lo neutraliza de
   raíz para todo el sitio, en vez de parchear caso por caso. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
.btn-primary {
  background: var(--pink);
  color: #fff;
}
.btn-primary:hover { opacity: 0.92; }
.btn-ghost {
  background: transparent;
  color: var(--pink);
  border: 1.5px solid var(--pink);
}
.btn-large { padding: 16px 32px; font-size: 1.05rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 16, 19, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.brand-mark { display: block; }
.brand-word {
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--on-dark);
  letter-spacing: -0.02em;
}
.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--on-dark-soft);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--on-dark); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--on-dark);
  display: block;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--bg-dark);
  color: var(--on-dark);
  overflow: hidden;
  padding: 64px 0 40px;
}
.hero-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 90%;
  background: radial-gradient(circle, rgba(241, 59, 140, 0.55) 0%, rgba(241, 59, 140, 0.18) 45%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}
.eyebrow {
  color: var(--pink);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--pink);
  display: inline-block;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.hero-description {
  color: var(--on-dark-soft);
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 32px;
}
.address-form {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
  max-width: 520px;
}
.address-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--on-dark);
  font-family: inherit;
  font-size: 0.98rem;
  padding: 10px 16px;
}
.address-form input::placeholder { color: var(--on-dark-faint); }
.form-hint {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--on-dark-faint);
}

.hero-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.hero-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.hero-card-lines { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.hero-card-lines li {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.98rem;
}
.hero-card-lines li .amount { color: var(--green); font-weight: 700; }
.hero-card-lines li .amount.paid { color: var(--ink); }
.hero-card-total {
  background: var(--bg-dark);
  color: var(--on-dark);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hero-card-total-label { font-weight: 700; }
.hero-card-total-note { font-size: 0.78rem; color: var(--on-dark-faint); margin-top: 2px; }
.hero-card-total-amount { font-size: 1.6rem; font-weight: 900; white-space: nowrap; }

.trust-badges {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}
.trust-badge .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--on-dark-faint);
  margin-bottom: 6px;
}
.trust-badge .value { font-size: 1.1rem; font-weight: 800; }

/* ===== Sections ===== */
.section { padding: 88px 0; }
.section-dark { background: var(--bg-dark); color: var(--on-dark); }
.section-heading { max-width: 640px; margin-bottom: 48px; }
.section-heading h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin-bottom: 14px;
}
.section-heading p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.section-dark .section-heading p { color: var(--on-dark-soft); }
.section-dark .eyebrow { display: block; border: none; padding: 0; margin-bottom: 12px; }

/* ===== Plans ===== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.plan-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(16,16,19,0.08); }
.plan-card.is-highlight { border-color: var(--pink); box-shadow: 0 16px 40px rgba(241, 59, 140, 0.14); }
.plan-badge {
  position: absolute;
  top: -12px;
  left: 22px;
  background: var(--pink);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
}
.plan-name { font-size: 1.1rem; font-weight: 800; }
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.plan-price .amount { font-size: 1.9rem; font-weight: 900; }
.plan-price .period { color: var(--ink-faint); font-weight: 600; font-size: 0.9rem; }
.plan-description { color: var(--ink-soft); font-size: 0.92rem; min-height: 3.2em; }
.plan-card .btn { margin-top: auto; }

.streams-compare h3 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-bottom: 20px;
}
.streams-bars {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  height: 180px;
  padding: 0 4px 8px;
  border-bottom: 1px solid var(--line);
}
.streams-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.streams-bar .bar-fill {
  width: 100%;
  max-width: 64px;
  background: var(--line);
  border-radius: 8px 8px 0 0;
  transition: background 0.15s ease;
}
.streams-bar.is-active .bar-fill { background: var(--pink); }
.streams-bar .bar-value { font-weight: 800; font-size: 0.95rem; }
.streams-bar .bar-label { font-size: 0.78rem; color: var(--ink-faint); }
.streams-hint { margin-top: 16px; font-size: 0.85rem; color: var(--ink-faint); }

/* ===== Trap grid (FAQ hero) ===== */
.trap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.trap-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 22px;
}
.trap-item h4 { font-size: 1.02rem; font-weight: 800; margin-bottom: 10px; }
.trap-item p { color: var(--on-dark-soft); font-size: 0.92rem; }

/* ===== Stats ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.stat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.stat-card .stat-value { font-size: 2rem; font-weight: 900; color: var(--pink); margin-bottom: 6px; }
.stat-card .stat-label { font-size: 0.85rem; color: var(--ink-soft); }
.ops-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ops-feature h4 { font-weight: 800; margin-bottom: 8px; }
.ops-feature p { color: var(--ink-soft); font-size: 0.9rem; }

.section-cta { text-align: center; }
.section-cta h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); font-weight: 900; margin-bottom: 12px; }
.section-cta p { color: var(--on-dark-soft); margin-bottom: 28px; }
.section-cta .address-form { margin: 0 auto; }

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.steps li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--paper);
}
.step-number {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 16px;
}
.steps h4 { font-weight: 800; margin-bottom: 8px; }
.steps p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 12px; }
.step-duration { font-size: 0.78rem; font-weight: 700; color: var(--green); }

/* ===== TV ===== */
.tv-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.tv-bullets { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 28px; }
.tv-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--on-dark-soft);
  font-size: 0.95rem;
}
.tv-bullets .tv-bullet-index {
  flex-shrink: 0;
  font-weight: 800;
  color: var(--green);
}
.tv-visual { text-align: center; }
.tv-frame {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.tv-screen-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(0,179,117,0.25), transparent 70%);
  pointer-events: none;
}
.tv-partner-logo { max-width: 220px; margin: 0 auto; position: relative; z-index: 1; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4)); }
.tv-visual-caption { margin-top: 14px; font-size: 0.82rem; color: var(--on-dark-faint); }

/* ===== Cobertura ===== */
.cobertura-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.cobertura-copy .address-form { margin-top: 24px; max-width: 480px; background: var(--paper); border-color: var(--line); }
.cobertura-copy .address-form input { color: var(--ink); }
.cobertura-copy .address-form input::placeholder { color: var(--ink-faint); }
.cobertura-map { text-align: center; }
.chile-outline { width: 90px; margin: 0 auto; }
.cobertura-caption { margin-top: 10px; font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); }

/* ===== FAQ accordion ===== */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
}
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--pink);
  color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p { padding: 0 4px 22px; color: var(--ink-soft); font-size: 0.95rem; max-width: 70ch; }
.faq-item.is-open .faq-answer { max-height: 400px; }

/* ===== Footer ===== */
.site-footer { background: var(--bg-dark); color: var(--on-dark); padding: 56px 0 24px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand p { color: var(--on-dark-faint); font-size: 0.88rem; margin-top: 12px; max-width: 32ch; }
.footer-col h5 { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--on-dark-faint); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--on-dark-soft); font-size: 0.92rem; margin-bottom: 10px; }
.footer-legal { padding-top: 20px; font-size: 0.8rem; color: var(--on-dark-faint); }

/* ===== Chat widget ===== */
.chat-widget { position: fixed; right: 24px; bottom: 24px; z-index: 200; }
.chat-fab {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--pink);
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(241,59,140,0.4);
  cursor: pointer;
}
.chat-panel {
  display: none;
  flex-direction: column;
  position: fixed;
  right: 24px;
  bottom: 96px;
  width: 380px;
  max-width: calc(100vw - 48px);
  height: 520px;
  max-height: calc(100vh - 140px);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  overflow: hidden;
}
.chat-widget.is-open .chat-panel { display: flex; }
.chat-widget.is-open .chat-fab { display: none; }
.chat-header {
  background: var(--bg-dark);
  color: var(--on-dark);
  padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.chat-title { font-weight: 800; }
.chat-subtitle { font-size: 0.75rem; color: var(--green); font-weight: 600; }
.chat-close { background: none; border: none; color: var(--on-dark); font-size: 1.1rem; cursor: pointer; }
.chat-messages { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.chat-bubble { padding: 12px 14px; border-radius: 14px; font-size: 0.92rem; max-width: 85%; line-height: 1.45; }
.chat-bubble-assistant { background: var(--bg-cream); color: var(--ink); border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-bubble-user { background: var(--pink); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-bubble-error { background: #fdecea; color: #b3261e; align-self: flex-start; }
.chat-bubble p { margin: 0; }
.chat-bubble p + p { margin-top: 8px; }
.chat-bubble ul { margin: 0; padding-left: 18px; }
.chat-bubble li { margin: 3px 0; }
.chat-bubble strong { font-weight: 800; }
.chat-suggestions { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.chat-suggestion {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
}
.chat-suggestion:hover { border-color: var(--pink); color: var(--pink); }
.chat-gate { padding: 14px; border-top: 1px solid var(--line); }
.chat-gate-label { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 6px; }
.chat-gate-question { font-weight: 800; font-size: 1rem; margin-bottom: 10px; }
.chat-gate-row { display: flex; gap: 8px; }
.chat-gate-row input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}
.chat-gate-row input:focus { border-color: var(--pink); }
.chat-gate-error { margin-top: 8px; font-size: 0.82rem; color: #b3261e; }
.chat-input-row { display: flex; gap: 8px; padding: 14px; border-top: 1px solid var(--line); }
.chat-input-row[hidden], .chat-gate[hidden] { display: none; }
.chat-input-row input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}
.chat-input-row input:focus { border-color: var(--pink); }
.chat-typing { display: flex; gap: 4px; padding: 4px 0; align-self: flex-start; }
.chat-typing span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--ink-faint);
  animation: chat-typing-bounce 1.2s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chat-typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ===== Verificación de identidad ===== */
.verify-body {
  background: var(--bg-cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.verify-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.verify-header-note {
  font-size: 0.85rem;
  color: var(--ink-faint);
  font-weight: 600;
}
.verify-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}
.verify-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 16px 40px rgba(16, 16, 19, 0.06);
}
.verify-card h1 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.verify-card > p { color: var(--ink-soft); }
.verify-card > .btn { margin-top: 20px; }
.verify-card > .btn + .btn { margin-top: 10px; }
.verify-eyebrow {
  color: var(--pink);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.verify-hint { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 22px; }
.verify-form { display: flex; flex-direction: column; gap: 16px; }
.verify-text-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}
.verify-text-field input {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
}
.verify-text-field input:focus { border-color: var(--pink); outline: none; }
.verify-error { color: #b3261e; font-size: 0.85rem; }
.verify-form .btn { margin-top: 8px; }
.verify-cancel-link {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: none;
  color: var(--ink-faint);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px;
}
.verify-cancel-link:hover { color: #b3261e; }

.upload-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.upload-tile:hover { border-color: var(--pink); }
.upload-tile.is-filled {
  border-style: solid;
  border-color: var(--green);
  background: rgba(0, 179, 117, 0.06);
}
.upload-tile-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.upload-tile-text { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.upload-tile-text strong { font-size: 0.95rem; }
.upload-tile-hint {
  font-size: 0.8rem;
  color: var(--ink-faint);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.upload-tile.is-filled .upload-tile-hint { color: var(--green); font-weight: 600; }
.upload-tile-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}
.upload-tile.is-filled .upload-tile-check { display: flex; }

.verify-card-camera { max-width: 420px; }
.camera-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-dark);
  margin-bottom: 16px;
}
.camera-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}
.camera-oval {
  position: absolute;
  inset: 12% 18%;
  border: 3px dashed rgba(255, 255, 255, 0.75);
  border-radius: 50% / 40%;
  pointer-events: none;
}
.camera-instruction {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(16, 16, 19, 0.85);
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 1rem;
  text-align: center;
  line-height: 1.25;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.camera-instruction-arrow {
  font-size: 1.5rem;
  line-height: 1;
  animation: instruction-pulse 0.9s infinite ease-in-out;
}
@keyframes instruction-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner, .tv-inner, .cobertura-inner { grid-template-columns: 1fr; }
  .plans-grid, .trap-grid, .stats-grid, .ops-features, .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .plans-grid, .trap-grid, .stats-grid, .ops-features, .steps, .trust-badges { grid-template-columns: 1fr; }
  .address-form { flex-direction: column; border-radius: var(--radius-sm); }
  .address-form .btn { width: 100%; }
  .chat-panel { right: 12px; bottom: 88px; }
  .chat-widget { right: 12px; bottom: 12px; }
}
