:root {
  --adt-blue:         #005FA9; /* Color primario oficial ADT (Pantone 286 C) */
  --adt-blue-hover:   #00477F;
  --adt-dark:        #0b0b0c;
  --adt-gray:        #6b7280;
  --adt-light:       #f8f9fa;
  --success-green:  #10b981;
  --warning-yellow: #f59e0b;
  --error-red:      #dc2626;
  --max-width:      1200px;
  --header-border:  #d1d5db;
}

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

html { height: 100%; }

body {
  font-family: 'Roboto Condensed', 'Segoe UI', 'Roboto', -apple-system, sans-serif;
  color: #1a1a1a;
  overflow-x: hidden;
  line-height: 1.6;
  background: #fafafa;
  -webkit-overflow-scrolling: touch;
}

/* ── Grid ───────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  padding-right: 15px;
  padding-left: 15px;
  margin: 0 auto;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-lg-4, .col-lg-5, .col-lg-6, .col-lg-8, .col-lg-11,
.col-md-6, .col-lg-3, .col-lg-9, .col-md-4, .col-md-8,
.col-2, .col-4, .col-6, .col-8, .col-10 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-6  { flex: 0 0 50%;        max-width: 50%;        }
.col-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }

@media (min-width: 768px) {
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-6 { flex: 0 0 50%;        max-width: 50%;        }
  .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
}

@media (min-width: 992px) {
  .col-lg-3  { flex: 0 0 25%;        max-width: 25%;        }
  .col-lg-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6  { flex: 0 0 50%;        max-width: 50%;        }
  .col-lg-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-9  { flex: 0 0 75%;        max-width: 75%;        }
  .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
}

/* ── Utilidades de alineación ───────────────────────────── */
.align-items-center   { align-items: center; }
.align-items-stretch  { align-items: stretch; }
.justify-content-center  { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-md-end  { justify-content: flex-end; }
.text-center  { text-align: center; }
.text-md-start { text-align: center; }

@media (min-width: 768px) {
  .text-md-start { text-align: left; }
}

/* ── Utilidades de espaciado ────────────────────────────── */
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: 1.25rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.mb-md-0 { margin-bottom: 1rem; }

@media (min-width: 768px) {
  .mb-md-0 { margin-bottom: 0; }
}

.g-4 { margin-right: -0.75rem; margin-left: -0.75rem; }
.g-4 > * { padding-right: 0.75rem; padding-left: 0.75rem; margin-bottom: 1.5rem; }
.g-0 { margin-right: 0; margin-left: 0; }
.g-0 > * { padding-right: 0; padding-left: 0; }

.h-100   { height: 100%; }
.fw-bold { font-weight: 700; }

.bi {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-style: normal;
}

/* ── Utilidades de visibilidad ──────────────────────────── */
/*
   Sin !important: estas clases son las últimas en el HTML,
   por lo que ganan en especificidad mediante el orden en cascada.
   Si hay conflicto, usa un selector más específico en su sección.
*/
.d-none  { display: none;  }
.d-block { display: block; }

/* Por defecto en móvil */
.d-lg-none  { display: block; }
.d-lg-block { display: none;  }

@media (min-width: 992px) {
  .d-lg-none  { display: none;  }
  .d-lg-block { display: block; }
}

/* ============================================================
   HEADER
============================================================ */
.header-securitas {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-securitas .top-header {
  background: #fff;
  /* border-bottom removed */
  padding: 0.8rem 0;
}

.header-securitas .container {
  max-width: var(--max-width);
  padding-right: 0;
  padding-left: 0;
  margin: 0 auto;
}

.header-securitas .row {
  margin-right: 0;
  margin-left: 0;
}

.header-securitas .col-4,
.header-securitas .col-6,
.header-securitas .col-8 {
  padding-right: 0;
  padding-left: 0;
}

.logo-section-securitas {
  display: flex;
  align-items: flex-start;
  height: 100%;
  margin-left: 30px;
  gap: 1.8rem;
  padding-top: 0.5rem;
}

.logo-wrapper-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.logo-wrapper-centered img {
  height: 62px;
  width: auto;
}

.dealer-text-small {
  font-size: 0.5rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.2;
  display: block;
}

.header-title-wrapper {
  display: flex;
  align-items: flex-start;
  padding-top: 1.5rem;
}

.header-title {
  font-family: 'Roboto Condensed', 'Segoe UI', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--adt-dark);
  text-transform: capitalize;
  letter-spacing: 0.3px;
  line-height: 1.3;
  white-space: nowrap;
}

.header-dealer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 12px;
  gap: 2px;
}
.header-dealer-logo {
  height: 28px;
  width: auto;
  opacity: 0.85;
}
.header-dealer-name {
  font-size: 0.55rem;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding-top: 0.5rem;
}

/* Botones de teléfono: Nuevos clientes + Ya clientes */
.header__phones {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header__phones-divider {
  width: 1px;
  height: 36px;
  background: var(--adt-blue);
  opacity: 0.3;
  flex-shrink: 0;
}
.header__phone-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--adt-blue) 0%, var(--adt-blue-hover) 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 32px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 14px rgba(0,95,169,0.30);
}
.header__phone-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,95,169,0.40);
}
.header__phone-btn .header__phone-text {
  text-align: center;
}
.header__phone-btn .header__phone-text small {
  font-size: 12px;
  color: rgba(255,255,255,.85);
}
.header__phone-btn .header__phone-text strong {
  font-size: 22px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.header__client-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #f0f0f0;
  color: var(--adt-dark);
  padding: 14px 24px;
  border-radius: 32px;
  cursor: pointer;
  transition: transform .25s ease;
  border: 1px solid #e0e0e0;
}
.header__client-btn:hover { transform: scale(1.05); }
.header__client-btn .header__phone-text {
  text-align: center;
}
.header__client-btn .header__phone-text small {
  font-size: 12px;
  color: #888;
}
.header__client-btn .header__phone-text strong {
  font-size: 20px;
  color: var(--adt-dark);
  font-weight: 800;
  letter-spacing: 0.3px;
}
.header__phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

/* ============================================================
   HERO
============================================================ */
.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 2.5rem 0;
  margin-top: 95px;
}

.hero-section .container { max-width: var(--max-width); }

.hero-section .row {
  margin-right: 0;
  margin-left: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border-radius: 20px;
  overflow: hidden;
}

.hero-image {
  position: relative;
  height: 100%;
  min-height: 500px;
  max-height: 600px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Sellos de confianza sobre la imagen hero */
.hero-awards {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  background: linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.55) 100%);
}
.hero-awards__sellos {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.hero-awards__sellos img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.hero-awards__text {
  color: #fff;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.3;
  margin: 0;
}
.hero-awards__text strong {
  font-style: italic;
  font-weight: 800;
}

/* Sellos mobile — oculto en desktop, visible cuando hero-image desaparece */
.hero-awards-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 20px;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 100%);
  border-radius: 12px;
  margin-top: 12px;
}
.hero-awards-mobile .hero-awards__sellos img {
  height: 42px;
}
.hero-awards-mobile .hero-awards__text {
  font-size: 0.85rem;
}

.blockclickcall {
  height: 100%;
  display: flex;
  align-items: stretch;
}

.form-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 1.5rem 2rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

.form-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-card-header h2 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--adt-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  white-space: nowrap;
}

.form-subtitle-h3 {
  color: var(--adt-dark);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}

.form-mid-text {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}

.mid-text-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.mid-text-main {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--adt-dark);
}
@media (max-width: 480px) {
  .mid-text-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
  }
  .mid-text-main {
    font-size: 0.85rem;
    text-align: center;
    width: 100%;
  }
}

.badge-sin-compromiso {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(16,185,129,0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Controles del formulario ───────────────────────────── */
.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 3px solid #d1d5db;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-weight: 500;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), inset 0 1px 2px rgba(0,0,0,0.02);
  color: #1a1a1a;
}

.form-control:hover {
  border-color: #9ca3af;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08), inset 0 1px 2px rgba(0,0,0,0.02);
  transform: translateY(-1px);
}

.form-control:focus {
  outline: none;
  border-color: var(--adt-blue);
  border-width: 3px;
  box-shadow: 0 4px 16px rgba(0,95,169,0.15), 0 0 0 4px rgba(0,95,169,0.08);
  transform: translateY(-2px);
}

.form-control::placeholder {
  color: #9ca3af;
  font-weight: 400;
  opacity: 1;
}

.form-control.error {
  border-color: #dc2626;
  border-width: 3px;
  box-shadow: 0 2px 8px rgba(220,38,38,0.15);
}

.field-error {
  display: none;
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  align-items: center;
  gap: 0.35rem;
}

.field-error.show {
  display: flex;
}

.field-error i { font-size: 1rem; flex-shrink: 0; }

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  padding-right: 3rem;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #9ca3af;
}

.form-select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23e50914' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.form-select:valid { color: #1a1a1a; }
.form-select option { padding: 0.75rem; background: #fff; color: #1a1a1a; font-weight: 500; }
.form-select option[value=""] { color: #9ca3af; }

/* ── Botón submit ───────────────────────────────────────── */
.btn-submit {
  background: linear-gradient(135deg, var(--adt-blue) 0%, var(--adt-blue-hover) 100%);
  color: white;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 1.1rem 2rem;
  border-radius: 50px;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 6px 20px rgba(0,95,169,0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,95,169,0.4);
}

.btn-submit:hover::before { left: 100%; }
.btn-submit i { font-size: 1.3rem; }

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--adt-gray);
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}
.consent-check input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--adt-blue);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  cursor: pointer;
}
.consent-check a {
  color: var(--adt-blue);
  font-weight: 700;
  text-decoration: underline;
}
.consent-check.has-error {
  color: #dc2626;
}
.consent-check.has-error input[type="checkbox"] {
  outline: 2px solid #dc2626;
  outline-offset: 1px;
}

.consent-text {
  font-size: 0.75rem;
  color: var(--adt-gray);
  margin-top: 1rem;
  margin-bottom: 0;
  text-align: center;
  line-height: 1.5;
}

.consent-text a {
  color: var(--adt-gray);
  font-weight: 700;
  text-decoration: underline;
}

.consent-text a:hover { color: var(--adt-blue); }

/* ============================================================
   PANTALLA DE ÉXITO EN EL FORMULARIO
============================================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

@keyframes successPop {
  0%   { transform: scale(0);   opacity: 0; }
  50%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1);   opacity: 1; }
}

.success-screen {
  text-align: center;
  padding: 2rem 1rem;
  animation: fadeIn 0.5s ease;
}

.success-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(16,185,129,0.3);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon-large i { font-size: 3.5rem; color: white; }
.success-title  { font-weight: 900; font-size: 2rem; color: var(--adt-dark); margin-bottom: 0.75rem; line-height: 1.2; }
.success-subtitle { font-weight: 800; font-size: 1.3rem; color: #10b981; margin-bottom: 1.25rem; line-height: 1.3; }
.success-text   { color: var(--adt-gray); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; padding: 0 1rem; }

/* ============================================================
   ATENCIÓN AL CLIENTE (cuando seleccionan "ya soy cliente - ayuda")
============================================================ */
@keyframes slideInFromBottom {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.customer-service-info { animation: slideInFromBottom 0.5s ease; margin-top: 1.5rem; }

.customer-service-info-box {
  background: linear-gradient(135deg, var(--adt-blue) 0%, var(--adt-blue-hover) 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,95,169,0.3);
}

.customer-service-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.customer-service-icon i { font-size: 2rem; }
.customer-service-info-box h3 { font-weight: 900; font-size: 1.4rem; margin-bottom: 1rem; color: white; }
.customer-service-info-box p  { font-size: 1rem; margin-bottom: 1.5rem; opacity: 0.95; }

@keyframes phonePulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.1); }
}

.customer-service-phone {
  background: white;
  color: var(--adt-blue);
  font-weight: 900;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.customer-service-phone:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  color: var(--adt-blue);
  text-decoration: none;
}

.customer-service-phone i { font-size: 1.5rem; animation: phonePulse 2s ease-in-out infinite; flex-shrink: 0; }

/* ============================================================
   MODALES
============================================================ */
.modal-overlay-new {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay-new.show {
  display: flex;
  opacity: 1;
}

.modal-box-new {
  background: #fff;
  color: #333;
  padding: 0;
  border-radius: 20px;
  max-width: 550px;
  width: 90%;
  max-height: 90vh;            /* Limita altura para que quepa en viewport */
  display: flex;               /* Header fijo arriba, body scrolleable */
  flex-direction: column;
  box-shadow: 0 25px 70px rgba(0,0,0,0.4);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.modal-overlay-new.show .modal-box-new { transform: scale(1); }

.modal-header-new {
  background: linear-gradient(135deg, var(--adt-blue) 0%, var(--adt-blue-hover) 100%);
  color: white;
  padding: 2rem 2.5rem 1.5rem;
  position: relative;
  flex-shrink: 0;              /* Cabecera no se comprime */
}

.modal-header-new h3 { font-weight: 900; font-size: 1.6rem; margin: 0 0 0.5rem; line-height: 1.3; }
.modal-header-new p  { margin: 0; font-size: 0.95rem; opacity: 0.95; font-weight: 500; }

.modal-body-new {
  padding: 2rem 2.5rem;
  overflow-y: auto;            /* Scroll vertical cuando el contenido excede */
  -webkit-overflow-scrolling: touch; /* Smooth scroll en iOS */
  flex: 1;
  min-height: 0;               /* Necesario para que flex calcule bien el overflow */
}

@media (max-width: 600px) {
  .modal-box-new {
    width: 92%;
    max-height: 92vh;
    border-radius: 14px;
  }
  .modal-header-new { padding: 1.5rem 1.5rem 1.2rem; }
  .modal-body-new   { padding: 1.5rem 1.5rem; }
}

.modal-close-new {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.25);
  border: 1.5px solid rgba(255,255,255,0.5);
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-weight: 300;
  line-height: 1;
  z-index: 10;
}

.modal-close-new:hover {
  background: rgba(255,255,255,0.42);
  transform: rotate(90deg);
}

/* Close button inside header (llamada modal) */
.llamada-header-close {
  position: absolute;
  top: 1rem; right: 1rem;
}

/* Modales tipo Bootstrap (cookies, privacidad) */
.modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  overflow: auto;
  backdrop-filter: blur(3px);
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-dialog {
  max-width: 600px;
  width: 90%;
  margin: 2rem auto;
}

.modal-lg { max-width: 800px; }

.modal-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--adt-blue) 0%, var(--adt-blue-hover) 100%);
  color: white;
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 70px;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0;
  text-align: center;
  flex: 1;
}

.btn-close {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.btn-close:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) rotate(90deg);
}

.btn-close::before {
  content: "\00d7";
  font-size: 2rem;
  line-height: 1;
}

.modal-body {
  padding: 2rem 1.5rem;
}

.modal-body--scroll {
  max-height: 70vh;
  overflow-y: auto;
  padding: 2rem;
}

.modal-body--scroll ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.modal-body--scroll li { margin-bottom: 0.4rem; }
.modal-body--scroll p  { margin-bottom: 1rem; }

/* Botón volver dentro del modal tipo Bootstrap */
.btn-back {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 8px;
  width: 36px; height: 36px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.btn-back.show { display: flex; }
.btn-back:hover { background: rgba(255,255,255,0.3); }

/* ── Opciones del modal tipo cliente ────────────────────── */
.customer-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.customer-option:hover { border-color: var(--adt-blue); background: #fff5f5; }
.customer-option input[type="radio"] { accent-color: var(--adt-blue); flex-shrink: 0; }
.customer-option label { cursor: pointer; font-weight: 500; color: var(--adt-dark); }

.response-content {
  display: none;
  background: #f0fdf4;
  border: 2px solid #10b981;
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 1rem;
  animation: slideInFromBottom 0.4s ease;
}

.response-content.show { display: block; }
.response-content h4    { color: var(--adt-dark); font-weight: 800; margin-bottom: 0.5rem; }
.response-content p     { color: var(--adt-gray); font-size: 0.9rem; margin-bottom: 0.5rem; }

.contact-info { background: #fff; border-radius: 8px; padding: 1rem; margin-top: 0.75rem; }
.contact-info strong { display: block; margin-bottom: 0.25rem; }
.textotelefono { font-size: 1.3rem; font-weight: 800; color: var(--adt-blue); }

/* ── Modales overlay nuevos ─────────────────────────────── */
.modal-options-new { display: flex; flex-direction: column; gap: 0.75rem; }

.modal-option-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-option-new:hover { border-color: var(--adt-blue); background: #fff5f5; }
.modal-option-new input[type="radio"] { accent-color: var(--adt-blue); flex-shrink: 0; }

.modal-option-content-new strong { display: block; font-weight: 700; color: var(--adt-dark); }
.modal-option-content-new span   { font-size: 0.85rem; color: var(--adt-gray); }

.modal-actions-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.modal-back-btn-new {
  background: none;
  border: 2px solid #e5e7eb;
  color: var(--adt-gray);
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.modal-back-btn-new:hover { border-color: var(--adt-dark); color: var(--adt-dark); }

.form-submit-btn-new {
  background: linear-gradient(135deg, var(--adt-blue) 0%, var(--adt-blue-hover) 100%);
  color: white;
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
}

.form-submit-btn-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,95,169,0.35);
}

.form-group-new { margin-bottom: 1.25rem; }

.form-group-new label {
  display: block;
  font-weight: 700;
  color: var(--adt-dark);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.form-group-new input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid #d1d5db;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  color: var(--adt-dark);
  background: #f8faff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06), inset 0 1px 3px rgba(0,0,0,0.04);
}

.form-group-new input:focus {
  outline: none;
  border-color: var(--adt-blue);
  box-shadow: 0 0 0 3px rgba(0,95,169,0.08);
}

.form-group-new input.error { border-color: #dc2626; }

.field-error-new {
  display: none;
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 0.4rem;
  align-items: center;
  gap: 0.3rem;
}

.field-error-new.show { display: flex; }

.form-consent-new {
  font-size: 0.75rem;
  color: var(--adt-gray);
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
}

.form-consent-new a { color: var(--adt-blue); font-weight: 700; text-decoration: none; }
.form-consent-new a:hover { text-decoration: underline; }

/* ── Uso de información dentro de overlay ───────────────── */
.uso-info-text { color: #555; font-size: 0.88rem; line-height: 1.6; margin: 0 0 16px; }
.uso-info-text a { color: var(--adt-blue); font-weight: 700; text-decoration: none; }
.uso-info-text a:hover { text-decoration: underline; }

/* ── Banner persuasivo sobre los toggles ──────────────── */
.consent-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1.5px solid #fdba74;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.consent-banner__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(34,197,94,.3);
}
.consent-banner__text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #7c2d12;
}
.consent-banner__text strong {
  color: #9a3412;
  font-weight: 700;
}

/* ── Toggles de consentimiento ─────────────────────────── */
.consent-toggles {
  border-top: 1px solid #eee;
  margin-bottom: 16px;
}
.consent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 12px;
}
.consent-row:last-child { border-bottom: none; }
.consent-label {
  font-size: 0.9rem;
  color: var(--adt-dark);
  font-weight: 500;
}
.consent-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.consent-switch input { display: none; }
.consent-slider {
  width: 44px;
  height: 24px;
  background: #ccc;
  border-radius: 24px;
  position: relative;
  transition: background 0.25s;
}
.consent-slider::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.consent-switch input:checked + .consent-slider {
  background: #22c55e;
}
.consent-switch input:checked + .consent-slider::after {
  transform: translateX(20px);
}
.consent-switch-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: #22c55e;
  min-width: 18px;
}
.consent-switch input:not(:checked) ~ .consent-switch-text {
  color: #999;
}
.consent-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.consent-accept-btn {
  background: var(--adt-dark, #0b0b0c);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.consent-accept-btn:hover {
  background: #333;
  transform: translateY(-1px);
}

/* ── Modal contacto info ────────────────────────────────── */
.contact-info-modal { text-align: center; padding: 1rem 0; }

.info-icon {
  width: 70px; height: 70px;
  background: #fff5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.info-icon i { font-size: 2rem; color: var(--adt-blue); }

.phone-display {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--adt-blue);
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.phone-display:hover { text-decoration: underline; }

.help-text { color: var(--adt-gray); font-size: 0.9rem; }

/* ── Modal éxito ────────────────────────────────────────── */
.modal-success-new {
  text-align: center;
  padding: 2.5rem 2rem;
}

.success-icon {
  font-size: 4rem;
  color: #10b981;
  margin-bottom: 1rem;
}

.modal-success-new h3 {
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--adt-dark);
  margin-bottom: 0.75rem;
}

.modal-success-new p {
  color: var(--adt-gray);
  font-size: 1rem;
  line-height: 1.7;
}

.modal-success-new strong { color: #10b981; font-size: 1.1rem; display: block; margin-bottom: 0.5rem; }

/* ============================================================
   TOAST NOTIFICATIONS
============================================================ */
.toast-container {
  position: fixed;
  top: 20px; right: 20px;
  z-index: 10002;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@keyframes slideIn {
  from { transform: translateX(400px); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}

.toast {
  background: white;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 300px;
  animation: slideIn 0.3s ease;
}

.toast.success { border-left: 4px solid #10b981; }
.toast.success .toast-icon { color: #10b981; }
.toast.error   { border-left: 4px solid #dc2626; }
.toast.error   .toast-icon { color: #dc2626; }

.toast-icon    { font-size: 1.5rem; display: flex; align-items: center; }
.toast-message { flex: 1; font-weight: 600; color: var(--adt-dark); }

/* ============================================================
   STATS SECTION
============================================================ */
.stats-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(220,38,38,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(220,38,38,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.stats-section .container { position: relative; z-index: 1; }

.stat-item {
  text-align: center;
  padding: 15px 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  height: 100%;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(220,38,38,0.3);
  box-shadow: 0 15px 30px rgba(220,38,38,0.15);
}

.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  flex-wrap: nowrap;
  line-height: 1;
}

.stat-number,
.stat-suffix {
  font-size: 2rem;
  font-weight: 800;
  color: #dc2626;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(220,38,38,0.3);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #e5e5e5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
  padding: 0 4px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.animate-fade-in {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

/* ============================================================
   FEATURES SECTION
============================================================ */
.features-section {
  background: #fff;
  padding: 2.5rem 0;
}

.features-section h2 { font-size: 2rem; font-weight: 900; color: var(--adt-dark); margin-bottom: 0.75rem; }

.text-muted { color: var(--adt-gray); }
.features-section .text-muted { font-size: 1rem; font-weight: 600; margin-bottom: 1.75rem; }

.feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 1.75rem 1.5rem;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border-color: var(--adt-blue);
}

.feature-image {
  width: 100%;
  max-width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 15px;
  margin: 0 auto 1.25rem;
  display: block;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border: 3px solid #f0f2f5;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-image {
  transform: scale(1.05);
  border-color: var(--adt-blue);
  box-shadow: 0 12px 35px rgba(0,95,169,0.2);
}

.feature-card h3 { font-weight: 800; font-size: 1.05rem; color: var(--adt-dark); margin-bottom: 0.75rem; }
.feature-card p  { color: var(--adt-gray); font-size: 0.85rem; line-height: 1.6; margin: 0; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #f8f9fa;
  padding: 1.5rem 0;
  border-top: 2px solid #e5e7eb;
}

.footer-dealer { font-weight: 800; color: #999; font-size: 0.9rem; display: inline-flex; flex-direction: column; align-items: center; gap: 4px; }
.footer-dealer-logo { height: 45px; width: auto; object-fit: contain; }
.footer-dealer-name { font-size: 0.8rem; font-weight: 600; color: #888; letter-spacing: 0.03em; }

.footer-links { display: flex; gap: 1.5rem; align-items: center; justify-content: center; }

.footer-links a {
  color: var(--adt-gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.75rem;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--adt-blue); }
.footer-links .separator { color: #cbd5e1; }

/* ============================================================
   RESPONSIVE — max 1399px
============================================================ */
@media (min-width: 1400px) {
  .hero-image { min-height: 550px; max-height: 650px; }
  .stat-number, .stat-suffix { font-size: 2.4rem; }
  .stat-label  { font-size: 0.85rem; }
  .stat-item   { min-height: 100px; padding: 18px 12px; }
  .stats-section { padding: 35px 0; }
  .footer { padding: 1.75rem 0; }
}

@media (min-width: 2200px) {
  .container,
  .header-securitas .container,
  .hero-section .container { max-width: 1600px; }
  .logo-wrapper-centered img { height: 75px; }
  .dealer-text-small  { font-size: 0.62rem; }
  .header-title       { font-size: 1.4rem; }

  .header__phone-btn { padding: 10px 22px; }
  .header__phone-btn .header__phone-text strong { font-size: 20px; }
  .header__client-btn { padding: 10px 20px; }
  .header__client-btn .header__phone-text strong { font-size: 20px; }
  .hero-image         { min-height: 650px; max-height: 750px; }
  .form-card-header h2 { font-size: 2rem; }
  .form-subtitle-h3   { font-size: 1.3rem; }
  .mid-text-main      { font-size: 1.15rem; }
  .badge-sin-compromiso { font-size: 0.8rem; padding: 0.4rem 0.9rem; }
  .form-control       { font-size: 1.15rem; padding: 1.2rem 1.4rem; }
  .btn-submit         { font-size: 1.3rem; padding: 1.3rem 2.5rem; }
  .hero-awards__sellos img { height: 62px; }
  .hero-awards__text  { font-size: 1.15rem; }
  .stat-number, .stat-suffix { font-size: 2.8rem; }
  .stat-label  { font-size: 0.95rem; }
  .stat-item   { padding: 20px 16px; min-height: 120px; }
  .stats-section { padding: 40px 0; }
  .feature-image { max-width: 340px; height: 340px; }
  .feature-card  { padding: 2.2rem 2rem; }
  .feature-card h3 { font-size: 1.3rem; }
  .feature-card p  { font-size: 1rem; }
  .footer-dealer   { font-size: 1.1rem; }
  .footer-links a  { font-size: 0.9rem; }
  .footer { padding: 2rem 0; }
}

@media (min-width: 992px) and (max-width: 1399px) {
  .hero-image { min-height: 450px; max-height: 550px; }
  .header-title { font-size: 1rem; }

  .header__phone-btn { padding: 10px 20px; }
  .header__phone-btn .header__phone-text strong { font-size: 18px; }
  .header__phone-btn .header__phone-text small { font-size: 11px; }
  .header__client-btn { padding: 10px 18px; }
  .header__client-btn .header__phone-text strong { font-size: 17px; }
  .header__client-btn .header__phone-text small { font-size: 11px; }
  .form-card-header h2 { font-size: 1.5rem; }
  .form-subtitle-h3 { font-size: 1rem; }
  .stat-number, .stat-suffix { font-size: 1.9rem; }
  .stat-label { font-size: 0.72rem; }
  .stat-item  { min-height: 85px; padding: 14px 10px; }
  .stats-section { padding: 28px 0; }
}

@media (max-width: 991px) {
  .logo-wrapper-centered img { height: 48px; }
  .dealer-text-small  { font-size: 0.45rem; letter-spacing: 0.5px; }
  .header-title       { font-size: 0.9rem;  letter-spacing: 0.25px; }
  .logo-section-securitas { gap: 1.3rem; }
  .header-title-wrapper   { padding-top: 1.2rem; }

  .header__phones { gap: 8px; }
  .header__phone-btn { padding: 8px 14px; }
  .header__phone-btn .header__phone-text strong { font-size: 15px; }
  .header__phone-btn .header__phone-text small { font-size: 10px; }
  .header__client-btn { padding: 8px 12px; }
  .header__client-btn .header__phone-text strong { font-size: 14px; }
  .header__client-btn .header__phone-text small { font-size: 10px; }
  .col-lg-8, .col-lg-4    { flex: 0 0 100%; max-width: 100%; }
  .hero-section { margin-top: 90px; padding: 2rem 0; }
  .hero-section .row { margin: 0 15px; }
  .hero-image { min-height: 400px; max-height: 500px; }
  .features-section { padding: 2rem 0 1.5rem; }
  .feature-image { max-width: 220px; height: 220px; }
  .stat-number, .stat-suffix { font-size: 1.6rem; }
  .stat-label { font-size: 0.65rem; }
  .stat-item  { padding: 12px 8px; min-height: 75px; }
  .stats-section { padding: 25px 0; }
  .footer { padding: 1.25rem 0; }
  .footer-dealer { font-size: 0.85rem; }
  .footer-links a { font-size: 0.7rem; }
}

@media (max-width: 767px) {
  .header-securitas .col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .header-securitas .col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .logo-section-securitas  { margin-left: 15px; gap: 0.6rem; }
  .logo-wrapper-centered img { height: 40px; }
  .dealer-text-small  { font-size: 0.38rem; letter-spacing: 0.4px; }
  .header-title       { font-size: 0.7rem; letter-spacing: 0.2px; }
  .header-title-wrapper { padding-top: 1rem; }
  .header__phones     { display: none; }
  .header-dealer-logo { height: 20px; }
  .header-dealer-brand { margin-right: 8px; }
  .header-dealer-name { font-size: 0.48rem; }
  .hero-section       { padding: 1rem 0 1.5rem; margin-top: 85px; }
  .hero-section .col-lg-8 { display: none; }
  .hero-section .row  { margin: 0 15px; }
  .hero-section .col-lg-4 { flex: 0 0 100%; max-width: 100%; }
  .hero-image         { display: none; }
  .hero-awards-mobile { display: flex; }
  .form-card          { padding: 2rem 1.5rem; border-radius: 20px; }
  .form-card-header   { margin-bottom: 1.2rem; }
  .form-card-header h2 { font-size: 1.4rem; white-space: normal; }
  .form-subtitle-h3   { font-size: 0.95rem; }
  .mid-text-wrapper   { flex-direction: row; }
  .mid-text-main      { font-size: 0.85rem; }
  .badge-sin-compromiso { font-size: 0.6rem; padding: 0.3rem 0.65rem; }
  .features-section   { padding: 1.5rem 0; }
  .features-section h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
  .features-section .text-muted { font-size: 0.85rem; margin-bottom: 1.25rem; }
  .feature-card  { padding: 1.5rem 1.25rem; margin-bottom: 1.25rem; }
  .feature-image { max-width: 200px; height: 200px; }
  .feature-card h3 { font-size: 0.95rem; }
  .feature-card p  { font-size: 0.8rem; }
  .footer { padding: 1.25rem 0 6rem; }
  .footer .row { flex-direction: column; align-items: center; }
  .footer .col-md-6 { flex: 0 0 100%; max-width: 100%; margin-bottom: 0.6rem; text-align: center; }
  .footer .col-md-6:last-child { margin-bottom: 0; }
  .footer-dealer { font-size: 0.8rem; justify-content: center; }
  .footer-dealer-logo { height: 26px; }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem 0.5rem;
    padding-right: 0;
    padding-left: 0;
  }
  .footer-links a { font-size: 0.72rem; white-space: nowrap; }
  .footer-links .separator { display: inline; font-size: 0.72rem; color: #cbd5e1; }
  /* Forzar salto de línea después del 2º separador */
  .footer-links .separator:nth-of-type(2) {
    flex-basis: 100%;
    height: 0;
    width: 0;
    overflow: hidden;
    margin: 0;
    color: transparent;
  }
  .customer-service-info-box { padding: 1.75rem 1.25rem; }
  .customer-service-phone { font-size: 1.6rem; padding: 1rem 1.75rem; }
  .success-icon-large { width: 80px; height: 80px; }
  .success-icon-large i { font-size: 2.75rem; }
  .success-title  { font-size: 1.6rem; }
  .success-subtitle { font-size: 1.1rem; }
  .success-text   { font-size: 0.9rem; }
  .stat-number, .stat-suffix { font-size: 1.5rem; }
  .stat-label { font-size: 0.62rem; }
  .stat-item  { padding: 11px 8px; min-height: 72px; }
  .stats-section { padding: 22px 0; }
}

/* ── FOOTER en iPad (768-991px) — mismo layout que mobile ────────────────── */
@media (min-width: 768px) and (max-width: 991px) {
  footer.footer { padding: 1.5rem 0 6rem; }
  footer.footer > .container > .row { flex-direction: column; align-items: center; }
  footer.footer > .container > .row > .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0.8rem;
    text-align: center;
  }
  footer.footer > .container > .row > .col-md-6:last-child { margin-bottom: 0; }
  footer.footer .footer-dealer { justify-content: center; align-items: center; }
  footer.footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 0.8rem;
    padding-right: 0;
    padding-left: 0;
  }
  footer.footer .footer-links a { font-size: 0.85rem; white-space: nowrap; }
  footer.footer .footer-links .separator { display: inline; color: #cbd5e1; }
  /* Forzar salto de línea después del 2º separador */
  footer.footer .footer-links .separator:nth-of-type(2) {
    flex-basis: 100%;
    height: 0;
    width: 0;
    overflow: hidden;
    margin: 0;
    color: transparent;
  }
}

@media (max-width: 480px) {
  .header-securitas .col-8 { flex: 0 0 70%; max-width: 70%; }
  .header-securitas .col-4 { flex: 0 0 30%; max-width: 30%; }
  .logo-section-securitas  { margin-left: 10px; gap: 0.5rem; }
  .logo-wrapper-centered img { height: 38px; }
  .dealer-text-small  { font-size: 0.36rem; }
  .header-title       { font-size: 0.65rem; }
  .header-title-wrapper { padding-top: 0.9rem; }
  .form-card-header h2 { font-size: 1.3rem; }
  .form-subtitle-h3   { font-size: 0.9rem; }
  .features-section   { padding: 1.25rem 0; }
  .features-section h2 { font-size: 1.35rem; }
  .feature-image { max-width: 180px; height: 180px; }
  .stat-number, .stat-suffix { font-size: 1.4rem; }
  .stat-label { font-size: 0.58rem; }
  .stat-item  { padding: 10px 6px; min-height: 68px; }
  .stats-section { padding: 20px 0; }
}

@media (max-width: 375px) {
  .header-securitas .col-8 { flex: 0 0 68%; max-width: 68%; }
  .header-securitas .col-4 { flex: 0 0 32%; max-width: 32%; }
  .logo-wrapper-centered img { height: 36px; }
  .dealer-text-small  { font-size: 0.34rem; }
  .header-title       { font-size: 0.6rem; }
  .header-title-wrapper { padding-top: 0.85rem; }
  .hero-section       { margin-top: 85px; }
  .features-section   { padding: 1rem 0; }
  .feature-image { max-width: 160px; height: 160px; }
  .stat-number, .stat-suffix { font-size: 1.3rem; }
  .stat-label { font-size: 0.55rem; }
  .stat-item  { padding: 9px 5px; min-height: 65px; }
  .stats-section { padding: 18px 0; }
}

@media (max-width: 320px) {
  .header-securitas .col-8 { flex: 0 0 66%; max-width: 66%; }
  .header-securitas .col-4 { flex: 0 0 34%; max-width: 34%; }
  .logo-section-securitas  { margin-left: 5px; gap: 0.4rem; }
  .logo-wrapper-centered img { height: 34px; }
  .dealer-text-small { font-size: 0.32rem; }
  .header-title      { font-size: 0.58rem; }
  .customer-service-phone { font-size: 1.3rem; padding: 0.85rem 1.25rem; }
  .form-card-header h2 { font-size: 1.1rem; }
  .stat-number, .stat-suffix { font-size: 1.2rem; }
  .stat-label { font-size: 0.52rem; }
  .stat-item  { padding: 8px 4px; min-height: 62px; }
  .stats-section { padding: 16px 0; }
}

/* ============================================================
   FEATURE CARDS — ICON VARIANT
============================================================ */
.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fff5f5 0%, #fecaca 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.feature-icon-wrapper i {
  font-size: 2rem;
  color: var(--adt-blue);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--adt-blue) 0%, var(--adt-blue-hover) 100%);
}

.feature-card:hover .feature-icon-wrapper i { color: #fff; }

/* ============================================================
   TABLA COMPARATIVA (TARIFAS)
============================================================ */
.tarifas {
  --color-si:       #27ae60;
  --color-opcional: #f39c12;
  --color-no:       #e74c3c;
  --color-dest-bg:  #fef2f2;
  --color-dest-brd: #f87171;
  padding: 2.5rem 1.5rem;
  background: #fff;
}

.tarifas__container { max-width: 1100px; margin: 0 auto; }

.tarifas__titulo {
  font-size: 1.85rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 0.5rem;
}

.tarifas__subtitulo {
  font-size: 1.05rem;
  color: var(--adt-gray);
  text-align: center;
  margin-bottom: 1.5rem;
}

.tarifas__leyenda {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tarifas__leyenda-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #2c3e50;
}

/* Icono check (SI) */
.tarifas__icono {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  min-width: 26px; min-height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tarifas__icono--si {
  border: 2px solid var(--color-si);
  position: relative;
}

.tarifas__icono--si::before {
  content: '';
  position: absolute;
  width: 10px; height: 6px;
  border-left: 2.5px solid var(--color-si);
  border-bottom: 2.5px solid var(--color-si);
  transform: rotate(-45deg);
  top: 7px;
}

/* Icono opcional (i) */
.tarifas__icono--opcional {
  border: 2px solid var(--color-opcional);
  position: relative;
}

.tarifas__icono--opcional::before {
  content: 'i';
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  color: var(--color-opcional);
  font-family: Georgia, serif;
}

/* Icono X (NO) */
.tarifas__icono--no {
  border: 2px solid var(--color-no);
  position: relative;
}

.tarifas__icono--no::before,
.tarifas__icono--no::after {
  content: '';
  position: absolute;
  width: 10px; height: 2px;
  background: var(--color-no);
  border-radius: 1px;
}

.tarifas__icono--no::before { transform: rotate(45deg);  }
.tarifas__icono--no::after  { transform: rotate(-45deg); }

/* Tabla */
.tarifas__tabla-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -0.5rem;
  padding: 0 0.5rem 4px;
}

.tarifas__tabla {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  min-width: 580px;
}

.tarifas__th-caracteristica {
  width: 46%;
  text-align: left;
  padding: 1rem 0.75rem;
  background: #fff;
  border-bottom: 2px solid #e0e0e0;
}

.tarifas__th-compania {
  width: 18%;
  text-align: center;
  padding: 1rem 0.75rem;
  background: #fff;
  border-bottom: 2px solid #e0e0e0;
  vertical-align: bottom;
  position: relative;
}

.tarifas__th-compania--destacada {
  background: var(--color-dest-bg);
  border-left:  2px solid var(--color-dest-brd);
  border-right: 2px solid var(--color-dest-brd);
  border-top:   2px solid var(--color-dest-brd);
  border-top-left-radius:  12px;
  border-top-right-radius: 12px;
  padding-top: 2.5rem;
}

.tarifas__th-badge {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--adt-blue-hover);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.tarifas__th-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin: 0 auto;
}

.tarifas__th-img {
  max-width: 110px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.tarifas__th-img--destacada {
  max-width: 120px;
  max-height: 58px;
}

.tarifas__th-brand {
  font-weight: 900;
  font-size: 0.65rem;
  color: var(--adt-blue);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.tarifas__th-brand--gray { color: #888; font-weight: 700; }

.tarifas__fila { transition: background 0.3s ease; }
.tarifas__fila:nth-child(even) { background: #f0f0f0; }
.tarifas__fila:nth-child(even) .tarifas__td-valor--destacada { background: var(--color-dest-bg); }
.tarifas__fila:hover { background: #e8e8e8; }
.tarifas__fila:hover .tarifas__td-valor--destacada { background: #fce4e4; }

.tarifas__td-caracteristica {
  padding: 0;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}

.tarifas__td-valor {
  padding: 0.6rem 0.4rem;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: middle;
}

.tarifas__td-valor--destacada {
  background: var(--color-dest-bg);
  border-left:  2px solid var(--color-dest-brd);
  border-right: 2px solid var(--color-dest-brd);
}

.tarifas__fila:last-child .tarifas__td-valor--destacada {
  border-bottom: 2px solid var(--color-dest-brd);
  border-bottom-left-radius:  12px;
  border-bottom-right-radius: 12px;
}

.tarifas__fila:last-child .tarifas__td-caracteristica,
.tarifas__fila:last-child .tarifas__td-valor { border-bottom: none; }

/* Desplegable de filas */
.tarifas__desplegable { cursor: pointer; }

.tarifas__desplegable-titulo {
  padding: 0.9rem 2.5rem 0.9rem 1rem;
  font-size: 0.95rem;
  color: #2c3e50;
  line-height: 1.4;
  list-style: none;
  position: relative;
  transition: color 0.3s ease;
}

.tarifas__desplegable-titulo::-webkit-details-marker { display: none; }

.tarifas__desplegable-titulo::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--adt-gray);
  border-bottom: 2px solid var(--adt-gray);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.tarifas__desplegable[open] .tarifas__desplegable-titulo::after {
  transform: translateY(-40%) rotate(-135deg);
}

.tarifas__desplegable-titulo:hover { color: var(--adt-blue-hover); }
.tarifas__desplegable-titulo:hover::after { border-color: var(--adt-blue-hover); }

.tarifas__desplegable-contenido {
  padding: 0 1rem 1rem;
  font-size: 0.88rem;
  color: var(--adt-gray);
  line-height: 1.6;
  border-top: 1px dashed #e0e0e0;
  padding-top: 0.75rem;
  animation: tarifasFadeIn 0.3s ease;
}

@keyframes tarifasFadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TRUST — ¿POR QUÉ ELEGIRNOS?
============================================================ */
.trust {
  padding: 4rem 1rem;
  background: #f8f9fa;
}

.trust__container { max-width: 1100px; margin: 0 auto; }

.trust__titulo {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 0.5rem;
}

.trust__subtitulo {
  font-size: 1.1rem;
  color: var(--adt-gray);
  text-align: center;
  margin-bottom: 3rem;
}

.trust__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trust__card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(185,28,28,0.1);
  border: 1px solid #fecaca;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trust__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--adt-blue), var(--adt-blue-hover));
}

.trust__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(185,28,28,0.2);
}

.trust__card-icon {
  width: 90px; height: 90px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.trust__card:hover .trust__card-icon {
  background: linear-gradient(135deg, var(--adt-blue) 0%, var(--adt-blue-hover) 100%);
}

.trust__card-ico {
  font-size: 2.2rem;
  color: var(--adt-blue);
  transition: color 0.3s ease;
}

.trust__card:hover .trust__card-ico { color: #fff; }

.trust__card-titulo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.trust__card-texto {
  font-size: 0.95rem;
  color: var(--adt-gray);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   TESTIMONIOS
============================================================ */
.testimonials {
  background: #fff;
  padding: 4rem 1rem;
}

.testimonials__titulo {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.testimonials__subtitulo {
  font-size: 1.05rem;
  color: var(--adt-gray);
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  border: 2px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: var(--adt-blue);
  box-shadow: 0 8px 30px rgba(0,95,169,0.1);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #2c3e50;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--adt-blue) 0%, var(--adt-blue-hover) 100%);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-info strong {
  display: block;
  font-weight: 700;
  color: #2c3e50;
  font-size: 0.9rem;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--adt-gray);
}

/* ============================================================
   FAQ
============================================================ */
.faq {
  padding: 4rem 1rem;
  background: #f8f9fa;
}

.faq__container { max-width: 900px; margin: 0 auto; }

.faq__titulo {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 0.5rem;
}

.faq__subtitulo {
  font-size: 1.1rem;
  color: var(--adt-gray);
  text-align: center;
  margin-bottom: 3rem;
}

.faq__lista { display: flex; flex-direction: column; gap: 1rem; }

.faq__item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq__item:hover  { border-color: #fecaca; box-shadow: 0 8px 25px rgba(185,28,28,0.12); }
.faq__item[open]  { border-color: var(--adt-blue); box-shadow: 0 8px 25px rgba(185,28,28,0.12); }

.faq__pregunta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  gap: 1rem;
  transition: 0.3s ease;
}

.faq__pregunta::-webkit-details-marker { display: none; }
.faq__pregunta::marker { display: none; }
.faq__pregunta:hover { background: rgba(220,38,38,0.03); }

.faq__item[open] .faq__pregunta {
  background: linear-gradient(135deg, rgba(220,38,38,0.05) 0%, rgba(185,28,28,0.08) 100%);
  border-bottom: 1px solid #e0e0e0;
}

.faq__pregunta-texto {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
  flex: 1;
  transition: color 0.3s ease;
}

.faq__item[open] .faq__pregunta-texto { color: var(--adt-blue); }

.faq__icono-toggle {
  width: 28px; height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--adt-blue) 0%, var(--adt-blue-hover) 100%);
  position: relative;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.faq__icono-toggle::before,
.faq__icono-toggle::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

.faq__icono-toggle::before { width: 12px; height: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq__icono-toggle::after  { width: 2px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.faq__item[open] .faq__icono-toggle { transform: rotate(180deg); }
.faq__item[open] .faq__icono-toggle::after { opacity: 0; }

.faq__respuesta { padding: 1.25rem 1.5rem 1.5rem; }

.faq__respuesta p {
  font-size: 0.95rem;
  color: var(--adt-gray);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   STICKY CTA — MÓVIL
============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--adt-blue) 0%, var(--adt-blue-hover) 100%);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  padding: 1rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,95,169,0.35);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  animation: phonePulse 2.5s ease-in-out infinite;
}

.sticky-cta__btn:hover { color: #fff; text-decoration: none; }
.sticky-cta__btn i { font-size: 1.1rem; }

/* ── Responsive nuevas secciones ────────────────────────── */
@media (max-width: 991px) {
  .tarifas { padding: 2rem 1rem; }
  .tarifas__titulo { font-size: 1.4rem; }
  .tarifas__subtitulo { font-size: 0.9rem; }
  .tarifas__leyenda { gap: 1rem; margin-bottom: 1rem; }
  .tarifas__leyenda-item { font-size: 0.75rem; }
  .tarifas__th-compania { padding: 0.5rem 0.3rem; }
  .tarifas__th-compania--destacada { padding-top: 1.5rem; }
  .tarifas__th-brand { font-size: 0.55rem; }
  .tarifas__th-badge { font-size: 0.5rem; padding: 0.2rem 0.5rem; }
  .tarifas__desplegable-titulo { font-size: 0.8rem; padding: 0.6rem 2rem 0.6rem 0.75rem; }
  .tarifas__desplegable-contenido { font-size: 0.78rem; padding: 0 0.75rem 0.75rem; }
  .tarifas__td-valor { padding: 0.5rem 0.25rem; }
  .tarifas__icono { width: 22px; height: 22px; min-width: 22px; min-height: 22px; }
  .tarifas__icono--si::before { width: 8px; height: 5px; border-width: 2px; top: 6px; }
  .tarifas__icono--no::before,
  .tarifas__icono--no::after { width: 8px; height: 2px; }
  .trust { padding: 3rem 1.5rem; }
  .trust__titulo { font-size: 1.75rem; }
  .trust__cards { gap: 1.5rem; }
  .trust__card { padding: 2rem 1.25rem; }
  .trust__card-icon { width: 72px; height: 72px; }
  .trust__card-ico { font-size: 1.8rem; }
  .testimonials { padding: 3rem 1rem; }
  .testimonials__titulo { font-size: 1.75rem; }
  .faq { padding: 3rem 1.5rem; }
  .faq__titulo { font-size: 1.75rem; }
  .faq__subtitulo { margin-bottom: 2rem; }
}

@media (max-width: 767px) {
  .tarifas { padding: 1.5rem 0.75rem; }
  .tarifas__titulo { font-size: 1.25rem; }
  .tarifas__leyenda { gap: 0.75rem; }
  .tarifas__leyenda-item { font-size: 0.68rem; }
  .tarifas__icono { width: 20px; height: 20px; min-width: 20px; min-height: 20px; border-width: 1.5px; }
  .tarifas__icono--si::before { width: 7px; height: 4px; border-width: 1.8px; top: 6px; }
  .tarifas__icono--no::before,
  .tarifas__icono--no::after { width: 7px; height: 1.8px; }
  .tarifas__desplegable-titulo { font-size: 0.72rem; padding: 0.5rem 1.8rem 0.5rem 0.5rem; }
  .tarifas__desplegable-titulo::after { right: 0.6rem; }
  .tarifas__desplegable-contenido { font-size: 0.7rem; padding: 0 0.5rem 0.5rem; }
  .trust { padding: 2rem 1rem; }
  .trust__titulo { font-size: 1.35rem; }
  .trust__subtitulo { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .trust__cards { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .trust__card { padding: 1.25rem 0.75rem; }
  .trust__card-icon { width: 56px; height: 56px; margin-bottom: 0.75rem; }
  .trust__card-ico { font-size: 1.4rem; }
  .trust__card-titulo { font-size: 0.9rem; }
  .trust__card-texto { font-size: 0.75rem; }
  .testimonials { padding: 2rem 0.75rem; }
  .testimonials__titulo { font-size: 1.35rem; }
  .testimonials__subtitulo { font-size: 0.9rem; }
  .testimonial-card { padding: 1.5rem 1.25rem; }
  .testimonial-text { font-size: 0.88rem; }
  .faq { padding: 2rem 0.75rem; }
  .faq__titulo { font-size: 1.35rem; }
  .faq__subtitulo { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .faq__pregunta { padding: 1rem 1.15rem; }
  .faq__pregunta-texto { font-size: 0.88rem; }
  .faq__respuesta { padding: 1rem 1.15rem 1.15rem; }
  .faq__respuesta p { font-size: 0.88rem; }
  .sticky-cta { padding: 0.65rem 0.85rem; }
  .sticky-cta__btn { font-size: 0.9rem; padding: 0.9rem; }
}

@media (max-width: 480px) {
  .trust__cards { gap: 0.5rem; }
  .trust__card { padding: 1rem 0.5rem; border-radius: 12px; }
  .trust__card::before { height: 3px; }
  .trust__card-icon { width: 44px; height: 44px; }
  .trust__card-ico { font-size: 1.1rem; }
  .trust__card-titulo { font-size: 0.8rem; }
  .trust__card-texto { font-size: 0.68rem; }
  .tarifas__icono { width: 18px; height: 18px; min-width: 18px; min-height: 18px; }
  .tarifas__icono--si::before { width: 6px; height: 3px; border-width: 1.5px; top: 5px; }
  .tarifas__icono--opcional::before { font-size: 11px; }
  .tarifas__icono--no::before,
  .tarifas__icono--no::after { width: 6px; height: 1.5px; }
}

/* ============================================================
   HERO — TEXTO ROTATIVO DE BENEFICIOS
============================================================ */
.hero-benefits {
  position: relative;
  height: 1.6rem;
  margin-top: 0.75rem;
  overflow: hidden;
}

.hero-benefit {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--adt-gray);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  white-space: nowrap;
}

.hero-benefit i { color: var(--adt-blue); font-size: 0.85rem; }

.hero-benefit.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-benefit.exit {
  opacity: 0;
  transform: translateY(-12px);
}

/* Rating en el hero */
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
}
.hero-rating__stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.85rem;
}
.hero-rating__text {
  font-size: 0.8rem;
  color: var(--adt-gray);
}
.hero-rating__text strong {
  color: var(--adt-dark);
  font-weight: 800;
}

/* ============================================================
   SECCIÓN CÓMO FUNCIONA
============================================================ */
.proceso {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 4rem 1rem;
}

.proceso__titulo {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.proceso__subtitulo {
  font-size: 1.05rem;
  color: var(--adt-gray);
}

.proceso__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

/* Paso individual */
.proceso__step {
  flex: 1;
  max-width: 240px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  cursor: pointer;
}

.proceso__step.visible {
  opacity: 1;
  transform: translateY(0);
}

.proceso__step-num {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--adt-blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.proceso__step { position: relative; }

.proceso__step-icon {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--adt-blue) 0%, var(--adt-blue-hover) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 25px rgba(0,95,169,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proceso__step:hover .proceso__step-icon {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 14px 35px rgba(0,95,169,0.4);
}

.proceso__step-icon i {
  font-size: 2.2rem;
  color: #fff;
}

.proceso__step h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 0.6rem;
}

.proceso__step p {
  font-size: 0.88rem;
  color: var(--adt-gray);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* Paso activo — iluminado y más grande */
.proceso__step--active .proceso__step-icon {
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(0,95,169,0.45), 0 0 0 8px rgba(0,95,169,0.1);
}
.proceso__step--active h3 {
  color: var(--adt-blue);
}
.proceso__step:not(.proceso__step--active) {
  opacity: 0.5;
}
.proceso__step:not(.proceso__step--active).visible {
  opacity: 0.5;
}
.proceso__step--active.visible {
  opacity: 1;
}
.proceso__step {
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.proceso__step-icon {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.proceso__step h3 {
  transition: color 0.5s ease;
}

/* Conector entre pasos */
.proceso__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  padding-top: 0;
  margin-top: 0;
  height: 100px;
}

.proceso__connector-line {
  display: none;
}

.proceso__connector-arrow {
  font-size: 1.5rem;
  color: var(--adt-blue);
  opacity: 0.3;
  transition: opacity 0.5s ease;
}
.proceso__connector--active .proceso__connector-arrow {
  opacity: 1;
}

/* ============================================================
   TESTIMONIOS — CARRUSEL
============================================================ */
.testimonials__rating-global {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--adt-gray);
}

.testimonials__stars-global {
  color: #f59e0b;
  font-size: 0.95rem;
  margin-right: 0.3rem;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 0 50px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 0.5rem;
}

/* Botones prev/next */
.testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--adt-blue);
  transition: all 0.3s ease;
  z-index: 2;
}

.testimonial-btn:hover {
  background: var(--adt-blue);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,95,169,0.3);
  transform: translateY(-50%) scale(1.1);
}

.testimonial-btn--prev { left: 0; }
.testimonial-btn--next { right: 0; }

/* Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--adt-blue);
  transform: scale(1.3);
}

/* Barra de progreso auto-play */
.testimonial-progress {
  height: 3px;
  background: #f0f0f0;
  border-radius: 2px;
  margin-top: 1rem;
  overflow: hidden;
}

.testimonial-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--adt-blue), var(--adt-blue-hover));
  border-radius: 2px;
  width: 0;
  transition: width linear;
}

/* ============================================================
   NOTIFICACIONES DE PRUEBA SOCIAL
============================================================ */
.sp-container {
  position: fixed;
  bottom: 170px;
  left: 20px;
  z-index: 9998;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  pointer-events: none;
}

.sp-notif {
  background: #fff;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 280px;
  pointer-events: auto;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  border-left: 3px solid var(--adt-blue);
}

.sp-notif.show {
  transform: translateX(0);
  opacity: 1;
}

.sp-notif.hide {
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.sp-notif-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--adt-blue) 0%, var(--adt-blue-hover) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.sp-notif-body { flex: 1; }

.sp-notif-name {
  font-weight: 700;
  font-size: 0.82rem;
  color: #2c3e50;
  display: block;
}

.sp-notif-msg {
  font-size: 0.75rem;
  color: var(--adt-gray);
  display: block;
  margin-top: 1px;
}

.sp-notif-time {
  font-size: 0.68rem;
  color: #9ca3af;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 2px;
}

/* ── Responsive nuevas secciones dinámicas ──────────────── */
@media (max-width: 991px) {
  .proceso { padding: 3rem 1.5rem; }
  .proceso__titulo { font-size: 1.75rem; }
  .proceso__step-icon { width: 80px; height: 80px; }
  .proceso__step-icon i { font-size: 1.8rem; }
  .proceso__connector { width: 40px; }
  .testimonial-carousel { padding: 0 40px; }
  .testimonial-btn { width: 38px; height: 38px; font-size: 1rem; }
  .sp-container { bottom: 70px; left: 12px; }
  .sp-notif { max-width: 240px; }
}

@media (max-width: 767px) {
  /* Proceso — mantener horizontal como trust */
  .proceso__steps {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
  }
  .proceso__step {
    flex: 1;
    max-width: none;
    padding-top: 0.5rem;
  }
  .proceso__step-icon { width: 56px; height: 56px; }
  .proceso__step-icon i { font-size: 1.35rem; }
  .proceso__step h3 { font-size: 0.82rem; margin-bottom: 0.35rem; }
  .proceso__step p { font-size: 0.72rem; line-height: 1.4; }
  .proceso__step-num {
    width: 20px; height: 20px;
    font-size: 0.65rem;
    top: -6px;
  }
  .proceso__connector {
    width: 18px;
    padding-top: 42px;   /* alinea con el centro del icono */
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .proceso__connector-line { display: none; }
  .proceso__connector-arrow {
    transform: none;     /* flecha apunta a la derecha */
    font-size: 0.65rem;
    opacity: 0.4;
  }
  .proceso__titulo { font-size: 1.35rem; }
  .proceso__subtitulo { font-size: 0.9rem; }

  /* Features — 3 columnas lado a lado como trust */
  .features-section .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin: 0;
  }
  .features-section .col-lg-4,
  .features-section .col-md-6 {
    width: 100%;
    max-width: 100%;
    flex: none;
    padding: 0;
  }
  .feature-card {
    padding: 1.1rem 0.6rem;
    border-radius: 12px;
    margin-bottom: 0;
  }
  .feature-icon-wrapper {
    width: 50px; height: 50px;
    margin-bottom: 0.6rem;
  }
  .feature-icon-wrapper i { font-size: 1.2rem; }
  .feature-card h3 { font-size: 0.8rem; margin-bottom: 0.4rem; }
  .feature-card p  { font-size: 0.72rem; line-height: 1.4; }
  .testimonial-carousel { padding: 0 34px; }
  .testimonial-btn { width: 32px; height: 32px; font-size: 0.9rem; }
  .hero-benefits { height: 1.5rem; }
  .hero-benefit { font-size: 0.75rem; }
  .sp-container { display: none; }
}

@media (max-width: 480px) {
  .proceso__step-icon { width: 46px; height: 46px; }
  .proceso__step-icon i { font-size: 1.1rem; }
  .proceso__step h3 { font-size: 0.75rem; }
  .proceso__step p { font-size: 0.67rem; }
  .proceso__connector { padding-top: 34px; width: 14px; }
  /* Features aún más compactas en pantallas muy pequeñas */
  .features-section .row { gap: 0.4rem; }
  .feature-card { padding: 0.9rem 0.4rem; }
  .feature-icon-wrapper { width: 42px; height: 42px; }
  .feature-icon-wrapper i { font-size: 1rem; }
  .feature-card h3 { font-size: 0.72rem; }
  .feature-card p  { font-size: 0.65rem; }
  .testimonials__rating-global { font-size: 0.8rem; }
}

/* ══════════════════════════════════════════════════════
   EXIT INTENT MODAL
══════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════
   HERO — 2 BOTONES CTA (llamar / contratar)
══════════════════════════════════════════════════════ */
.hero-cta-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 2.2rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 767px) {
  .hero-cta-btns {
    margin-top: 0.75rem;
  }
}

.hero-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 26px 16px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  position: relative;
  overflow: hidden;
}
.hero-cta-btn i {
  font-size: 2rem;
  line-height: 1;
}
.hero-cta-title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  display: block;
}
.hero-cta-sub {
  font-size: 0.75rem;
  opacity: 0.75;
  display: block;
  font-weight: 500;
  transition: opacity 0.18s;
}
.hero-cta-badge {
  position: absolute;
  top: 6px; right: 6px;
  background: rgba(255,255,255,0.20);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* Botón primario — Quiero que me llamen */
.hero-cta-call {
  background: linear-gradient(135deg, var(--adt-blue) 0%, var(--adt-blue-hover) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 8px 25px rgba(0,95,169,0.25);
}
.hero-cta-call:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,95,169,0.35);
}

/* Botón secundario — Contratar ahora (gris claro + borde rojo) */
.hero-cta-contract {
  background: #f0f0f0;
  color: var(--adt-blue);
  border: 2px solid var(--adt-blue);
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.hero-cta-contract:hover {
  background: #e6e6e6;
  color: var(--adt-blue-hover);
  border-color: var(--adt-blue-hover);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 22px rgba(0,95,169,0.15);
}

/* Badges */
.hero-cta-call .hero-cta-badge {
  background: rgba(255,255,255,0.22);
  color: #fff;
}
.hero-cta-contract .hero-cta-badge {
  background: var(--adt-blue);
  color: #fff;
}
.hero-cta-call:hover .hero-cta-badge { background: rgba(255,255,255,0.32); }
.hero-cta-contract:hover .hero-cta-badge { background: var(--adt-blue-hover); }

.hero-cta-call:hover .hero-cta-sub { opacity: 0.9; }
.hero-cta-contract .hero-cta-sub { color: #777; opacity: 1; }
.hero-cta-contract:hover .hero-cta-sub { color: #555; }

/* Phone reveal (desliza hacia abajo al hacer clic en "me llamen") */
.hero-phone-reveal {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}
.hero-phone-reveal.visible {
  max-height: 200px;
  opacity: 1;
}
.hero-phone-reveal .btn-submit {
  margin-top: 0.75rem;
}

/* ══════════════════════════════════════════════════════
   SELF-SERVICE STRIP
══════════════════════════════════════════════════════ */
.selfservice-strip {
  background: linear-gradient(135deg, #1a4b85 0%, var(--adt-blue) 40%, #ff1a25 100%);
  padding: 22px 0;
  position: relative;
  overflow: hidden;
}
/* Patrón diagonal sutil */
.selfservice-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(255,255,255,0.03) 18px,
    rgba(255,255,255,0.03) 20px
  );
  pointer-events: none;
}
/* Brillo lateral animado */
.selfservice-strip::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: strip-shine 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes strip-shine {
  0%, 100% { left: -60%; }
  50%      { left: 100%; }
}
.selfservice-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.ss-icon {
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss-text {
  flex: 0 1 auto;
  text-align: center;
}
.ss-text strong {
  display: block;
  color: #fff;
  font-family: 'Roboto Condensed', 'Segoe UI', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.ss-text span {
  color: rgba(255,255,255,0.8);
  font-family: 'Roboto Condensed', 'Segoe UI', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
}
.ss-badge {
  display: none;
}
/* Botón con shimmer */
.ss-btn {
  flex-shrink: 0;
  background: #fff;
  color: var(--adt-dark);
  border: none;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: 'Roboto Condensed', 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.ss-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,95,169,0.12), transparent);
  animation: btn-shimmer 3s ease-in-out infinite;
}
@keyframes btn-shimmer {
  0%   { left: -100%; }
  100% { left: 100%; }
}
.ss-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}
@media (max-width: 600px) {
  .selfservice-inner { justify-content: center; text-align: center; gap: 14px; }
  .ss-text { min-width: unset; width: 100%; }
  .ss-text strong { font-size: 0.92rem; }
  .ss-btn { width: 100%; justify-content: center; padding: 14px 24px; }
  .ss-icon { display: none; }
  .hero-cta-title { font-size: 0.88rem; }
  .hero-cta-btn i { font-size: 1.6rem; }
  .hero-cta-btn { padding: 20px 12px; }
}

/* ══════════════════════════════════════════════════════
   BOTÓN "CONTRATAR DIRECTAMENTE" (hero, legado)
══════════════════════════════════════════════════════ */
.btn-contratar {
  width: 100%;
  background: transparent;
  color: var(--adt-blue);
  border: 2px solid var(--adt-blue);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 8px;
  transition: background 0.2s, color 0.2s;
}
.btn-contratar:hover {
  background: var(--adt-blue);
  color: #fff;
}

/* ══════════════════════════════════════════════════════
   MODAL AUTO-CONTRATACIÓN — flujo multi-paso
══════════════════════════════════════════════════════ */

/* Ocultar pasos por defecto, mostrar solo el activo */
.contra-step         { display: none; }
.contra-step.active  { display: block; }

/* Barra de progreso (en la cabecera roja) */
.contra-progress {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
  padding-right: 44px; /* espacio para el botón de cierre */
}
.contra-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.contra-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #fff;
}
.contra-dot.done {
  background: rgba(255,255,255,0.75);
}

/* Grid de tarjetas (tipo / franja) */
.contra-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.contra-franja-grid {
  grid-template-columns: repeat(2, 1fr);
}
.contra-type-opt { cursor: pointer; }
.contra-type-opt input[type="radio"] { display: none; }
.contra-type-card {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px 8px 12px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.contra-type-card i {
  font-size: 1.5rem;
  color: var(--adt-blue);
  margin-bottom: 4px;
}
.contra-type-card strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--adt-dark);
  display: block;
}
.contra-type-card span {
  font-size: 0.72rem;
  color: #888;
  display: block;
}
.contra-type-card:hover {
  border-color: rgba(0,95,169,0.4);
}
.contra-type-opt input[type="radio"]:checked + .contra-type-card {
  border-color: var(--adt-blue);
  background: #fff5f5;
  box-shadow: 0 0 0 3px rgba(0,95,169,0.12);
}

/* Botones de navegación */
.contra-btn-next,
.contra-finalize {
  width: 100%;
  background: var(--adt-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}
.contra-btn-next:hover,
.contra-finalize:hover {
  background: var(--adt-blue-hover);
  transform: translateY(-1px);
}
.contra-btn-next:disabled,
.contra-finalize:disabled {
  opacity: 0.7;
  transform: none;
  cursor: not-allowed;
}

.contra-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}
.contra-nav .contra-btn-next,
.contra-nav .contra-finalize {
  flex: 1;
  margin-top: 0;
  width: auto;
}
.contra-btn-back {
  background: none;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
  color: #666;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.contra-btn-back:hover { border-color: #999; color: #333; }

/* Spinner de carga */
.contra-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: contraSpin 0.65s linear infinite;
}
@keyframes contraSpin { to { transform: rotate(360deg); } }

/* Paso de éxito */
.contra-success {
  text-align: center;
  padding: 8px 0 12px;
}
.contra-success-icon {
  font-size: 3.5rem;
  color: #22c55e;
  margin-bottom: 14px;
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.contra-success h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--adt-dark);
  margin-bottom: 14px;
}
.contra-ref-label {
  font-size: 0.78rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.contra-ref {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--adt-blue);
  letter-spacing: 0.05em;
  background: #fff5f5;
  border: 1.5px dashed rgba(0,95,169,0.3);
  border-radius: 8px;
  padding: 10px 24px;
  margin: 0 auto 16px;
  display: inline-block;
}
.contra-success-msg {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 20px;
}
.contra-close-btn {
  background: #f3f4f6;
  color: #333;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  /* override .modal-close-new position */
  position: static;
  width: auto;
  height: auto;
  transform: none;
}
.contra-close-btn:hover { background: #e5e7eb; }

/* ══════════════════════════════════════════════════════
   MODAL LLAMADA — flujo ¿cliente o no?
══════════════════════════════════════════════════════ */
.llamada-step { display: none; }
.llamada-step.active { display: block; }

.llamada-opts {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}
.llamada-opts-2 { grid-template-columns: 1fr 1fr; }
.llamada-opts-3 { grid-template-columns: repeat(3, 1fr); }

.llamada-opt-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 18px 10px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.llamada-opt-btn:hover {
  border-color: var(--adt-blue);
  background: #fff5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,95,169,0.12);
}
.llamada-opt-btn i {
  font-size: 1.6rem;
  color: var(--adt-blue);
}
.llamada-opt-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}
.llamada-opt-sub {
  display: block;
  font-size: 0.72rem;
  color: #888;
  line-height: 1.3;
}

.llamada-back-btn {
  background: none;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.82rem;
  color: #777;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  transition: border-color 0.18s, color 0.18s;
}
.llamada-back-btn:hover { border-color: #999; color: #333; }

.llamada-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--adt-blue) 0%, var(--adt-blue-hover) 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  box-shadow: 0 4px 16px rgba(0,95,169,0.3);
  transition: transform 0.18s, box-shadow 0.18s;
}
.llamada-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,95,169,0.38);
}

.llamada-atencion {
  text-align: center;
  padding: 12px 0;
}
.llamada-atencion-icon {
  font-size: 2.8rem;
  color: var(--adt-blue);
  margin-bottom: 10px;
}
.llamada-atencion h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.llamada-atencion p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 4px;
}
.llamada-horario {
  font-size: 0.78rem;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 14px;
}
.llamada-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--adt-blue);
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 900;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,95,169,0.3);
  transition: transform 0.18s, box-shadow 0.18s;
}
.llamada-phone-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,95,169,0.4);
  color: #fff;
}

.llamada-success {
  text-align: center;
  padding: 16px 0;
}
.llamada-success-icon {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 12px;
}
.llamada-success h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: 8px; }
.llamada-success p  { font-size: 0.88rem; color: #666; margin-bottom: 20px; }
.llamada-close-btn {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 4px 14px rgba(34,197,94,0.3);
}
.llamada-close-btn:hover { background: #16a34a; }

@media (max-width: 480px) {
  .llamada-opts-3 { grid-template-columns: 1fr; }
  .llamada-opts-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .contra-type-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .contra-type-card { padding: 10px 4px 8px; }
  .contra-type-card i { font-size: 1.2rem; }
  .contra-type-card strong { font-size: 0.72rem; }
  .contra-type-card span { display: none; }
  .contra-franja-grid { grid-template-columns: repeat(2, 1fr); }
  .contra-franja-grid .contra-type-card span { display: block; }
}

/* ══════════════════════════════════════════════════════
   GRID DE PLANES — paso 0 del modal de contratación
══════════════════════════════════════════════════════ */

/* ── Modal contratación compacto (alineado con el original ADT) ──── */
.modal-box-contratacion {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow: hidden;
}

/* ── Cuerpo con scroll ─────────────────────────── */
.contra-body {
  padding: 1.5rem 2rem;
  overflow-y: auto;
  flex: 1;
}

/* ── Carrusel de planes (3 visibles, flechas) ─── */
.cpc-wrap {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 14px;
}
.cpc-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}
.cpc-track {
  display: flex;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.cpc-slide {
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0 5px;
  /* width set dynamically by JS */
}
.cpc-arrow {
  flex-shrink: 0;
  width: 34px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #555;
  font-size: 1rem;
  transition: border-color 0.18s, color 0.18s, background 0.18s, opacity 0.18s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.cpc-arrow:hover:not(:disabled) {
  border-color: var(--adt-blue);
  color: var(--adt-blue);
  background: #fff5f5;
}
.cpc-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

/* ── Lista vertical de planes ─────────────────── */
.contra-plan-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.contra-plan-opt {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.contra-plan-opt input[type="radio"] { display: none; }

.contra-plan-card {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 16px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contra-plan-card:hover {
  border-color: rgba(0,95,169,0.35);
}
.contra-plan-opt input[type="radio"]:checked + .contra-plan-card {
  border-color: var(--adt-blue);
  background: #fff8f8;
  box-shadow: 0 0 0 3px rgba(0,95,169,0.1);
}

/* Tick verde — sólo visible cuando el plan está seleccionado */
.contra-plan-tick {
  display: none;
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 1.4rem;
  color: #22c55e;
  line-height: 1;
}
.contra-plan-opt input[type="radio"]:checked + .contra-plan-card .contra-plan-tick {
  display: block;
}

/* Badge "más popular" */
.contra-plan-popular {
  position: absolute;
  top: -1px; right: 14px;
  background: var(--adt-blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.03em;
}

/* Cabecera del plan: nombre + precio en la misma fila */
.contra-plan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.contra-plan-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--adt-dark);
}
.contra-plan-price strong {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--adt-blue);
}
.contra-plan-price span {
  font-size: 0.78rem;
  color: #888;
}

/* Features list */
.contra-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contra-plan-features li {
  font-size: 0.82rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contra-plan-features li i {
  color: #22c55e;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Instalación gratuita */
.contra-plan-install {
  font-size: 0.75rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
}

/* ── Chips de tipo de instalación ────────────── */
.contra-tipo-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.contra-chip { cursor: pointer; }
.contra-chip input[type="radio"] { display: none; }
.contra-chip span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border: 1.5px solid #ddd;
  border-radius: 20px;
  font-size: 0.82rem;
  transition: all 0.18s;
  white-space: nowrap;
  color: #444;
}
.contra-chip span:hover { border-color: var(--adt-blue); }
.contra-chip input:checked + span {
  border-color: var(--adt-blue);
  background: #fff5f5;
  color: var(--adt-blue);
  font-weight: 600;
}

/* ── Selector de productos ──────────────────── */
.contra-products-section {
  margin-bottom: 18px;
}
.contra-section-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--adt-dark);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contra-section-title i {
  color: var(--adt-blue);
  font-size: 1rem;
}
.contra-section-hint {
  font-size: 0.72rem;
  font-weight: 400;
  color: #999;
  text-transform: none;
  letter-spacing: 0;
}
/* ── Secciones colapsables ──────────────────── */
.contra-collapsible {
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
}
.contra-collapsible > summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 16px;
  margin: 0;
  background: #f9fafb;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contra-collapsible > summary::-webkit-details-marker { display: none; }
.contra-collapsible > summary .contra-chevron {
  margin-left: auto;
  font-size: 0.85rem;
  color: #999;
  transition: transform 0.25s;
}
.contra-collapsible[open] > summary .contra-chevron {
  transform: rotate(180deg);
}
.contra-collapsible-body {
  padding: 8px 14px 14px;
}
.contra-collapsible-sub {
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  margin-bottom: 6px;
  overflow: hidden;
}
.contra-collapsible-sub:last-child { margin-bottom: 0; }
.contra-subsection-toggle {
  list-style: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fafafa;
  transition: background 0.15s;
}
.contra-subsection-toggle:hover { background: #f3f3f3; }
.contra-subsection-toggle::-webkit-details-marker { display: none; }
.contra-chevron-sm {
  margin-left: auto;
  font-size: 0.72rem;
  color: #bbb;
  transition: transform 0.25s;
}
.contra-collapsible-sub[open] > .contra-subsection-toggle .contra-chevron-sm {
  transform: rotate(180deg);
}
.contra-collapsible-sub > .contra-product-grid {
  padding: 8px 10px 10px;
}

/* ── Info adicional vivienda (opcional) ───── */
.contra-extra-info {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
}
.contra-extra-toggle {
  list-style: none;
  cursor: pointer;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #555;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fafafa;
  transition: background 0.15s;
}
.contra-extra-toggle:hover { background: #f3f3f3; }
.contra-extra-toggle::-webkit-details-marker { display: none; }
.contra-extra-toggle small { color: #aaa; font-weight: 400; margin-left: 4px; }
.contra-extra-toggle .contra-chevron-sm { margin-left: auto; }
.contra-extra-info[open] > .contra-extra-toggle .contra-chevron-sm {
  transform: rotate(180deg);
}
.contra-extra-body {
  padding: 10px 14px 14px;
}
.contra-select {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 0.88rem;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.contra-select:focus { border-color: var(--adt-blue); }
.contra-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.contra-product-grid--extras {
  gap: 6px;
}
/* Products hidden by tipo filter */
.contra-product-opt.contra-hidden {
  display: none;
}
.contra-product-opt {
  cursor: pointer;
  display: block;
}
.contra-product-opt input[type="checkbox"],
.contra-product-opt input[type="radio"] { display: none; }
.contra-product-card {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contra-product-card:hover {
  border-color: rgba(0,95,169,0.35);
}
.contra-product-opt input[type="checkbox"]:checked + .contra-product-card,
.contra-product-opt input[type="radio"]:checked + .contra-product-card {
  border-color: var(--adt-blue);
  background: #fff8f8;
  box-shadow: 0 0 0 3px rgba(0,95,169,0.1);
}
.contra-product-card--extra {
  padding: 10px 14px;
  border-radius: 10px;
}
.contra-product-tick {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.2rem;
  color: #22c55e;
  line-height: 1;
}
.contra-product-opt input[type="checkbox"]:checked + .contra-product-card .contra-product-tick,
.contra-product-opt input[type="radio"]:checked + .contra-product-card .contra-product-tick {
  display: block;
}
.contra-product-badge {
  position: absolute;
  top: -1px; right: 14px;
  background: #22c55e;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.contra-product-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.contra-product-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--adt-dark);
}
.contra-product-desc {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.4;
}
.contra-products-counter {
  text-align: center;
  font-size: 0.82rem;
  color: #888;
  padding: 8px 0;
  font-weight: 600;
}
.contra-products-counter span {
  color: var(--adt-blue);
  font-weight: 800;
}

/* ── Productos en la pantalla de éxito ───────── */
.contra-success-products {
  margin-bottom: 16px;
}
.contra-success-products-title {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 6px;
  font-weight: 600;
}
.contra-success-products-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contra-success-products-list li {
  font-size: 0.85rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contra-success-products-list li i {
  color: #22c55e;
  font-size: 0.85rem;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .cpc-arrow { width: 28px; border-radius: 8px; }
}
@media (max-width: 540px) {
  .contra-body { padding: 1.2rem 1.2rem; }
  .contra-product-grid { grid-template-columns: 1fr; }
  .contra-product-card { padding: 10px 12px; }
}

/* EXIT INTENT — badge + offer strip + submit btn */
.exit-intent-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.exit-intent-offer {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 12px 0 16px;
  border-bottom: 1px solid #eee;
  margin-bottom: 16px;
}

.exit-offer-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--adt-dark);
}

.exit-offer-item i {
  color: #22c55e;
  font-size: 0.9rem;
}

.exit-submit-btn {
  width: 100%;
  background: var(--adt-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  transition: background 0.2s, transform 0.15s;
}

.exit-submit-btn:hover {
  background: var(--adt-blue-hover);
  transform: translateY(-1px);
}

.exit-submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .exit-intent-offer { flex-direction: column; gap: 6px; }
}

/* ══════════════════════════════════════════════════════
   HERO — TARJETAS DE TIPO DE CLIENTE (.ct-card)
══════════════════════════════════════════════════════ */
.ct-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}

.ct-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}

.ct-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 6px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  text-align: center;
  line-height: 1.3;
}
.ct-card i {
  font-size: 1.25rem;
  display: block;
}
.ct-card:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.5);
}
.ct-card.active {
  background: var(--adt-blue);
  border-color: var(--adt-blue);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(0,95,169,0.35);
}

@media (max-width: 400px) {
  .ct-cards { grid-template-columns: repeat(3, 1fr); gap: 5px; }
  .ct-card  { padding: 8px 4px; font-size: 0.72rem; }
  .ct-card i { font-size: 1.1rem; }
}

/* ══════════════════════════════════════════════════════
   CONTRATACIÓN — DETALLES EXPANDIBLES DE PLAN
══════════════════════════════════════════════════════ */
.contra-plan-wrap {
  display: flex;
  flex-direction: column;
}

/* ── Flip card effect ───────────────────────────────── */
.contra-plan-flipper {
  position: relative;
}
.contra-plan-front {
  display: block;
}
.contra-plan-back {
  display: none;
  flex-direction: column;
}
/* Cuando está volteado: oculta front, muestra back con animación */
.contra-plan-card.is-flipped .contra-plan-front {
  display: none;
}
.contra-plan-card.is-flipped .contra-plan-back {
  display: flex;
  animation: flipFadeIn 0.35s ease;
}
@keyframes flipFadeIn {
  0%   { opacity: 0; transform: rotateY(90deg) scale(0.95); }
  50%  { opacity: 0.5; transform: rotateY(0deg) scale(0.98); }
  100% { opacity: 1; transform: rotateY(0deg) scale(1); }
}
.contra-plan-conditions {
  flex: 1;
  padding: 4px 0 8px;
}
.contra-plan-conditions p {
  font-size: 0.78rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 4px;
}
.contra-plan-conditions p:last-child { margin-bottom: 0; }
.contra-plan-flip-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  padding: 7px 0;
  margin-top: auto;
  border: none;
  border-top: 1px solid #f0f0f0;
  background: none;
  color: var(--adt-blue);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.contra-plan-flip-btn:hover {
  background: #fdf2f2;
}
.contra-plan-flip-btn i {
  font-size: 1.1rem;
}

/* ══════════════════════════════════════════════════════
   CONTRATACIÓN — TABLA RESUMEN (paso 2)
══════════════════════════════════════════════════════ */
.contra-summary {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}

.contra-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  font-size: 0.85rem;
  gap: 8px;
}
.contra-summary-row:nth-child(odd)  { background: #f9fafb; }
.contra-summary-row:nth-child(even) { background: #fff; }

.contra-summary-row span {
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.contra-summary-row span i {
  color: var(--adt-blue);
  font-size: 0.82rem;
}
.contra-summary-row strong {
  color: var(--adt-dark);
  font-weight: 700;
  text-align: right;
}

/* ══════════════════════════════════════════════════════
   CONTRATACIÓN — CONDICIONES LEGALES EXPANDIBLES
══════════════════════════════════════════════════════ */
.contra-legal-details {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}
.contra-legal-details summary {
  cursor: pointer;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #444;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  user-select: none;
  background: #f9fafb;
  transition: background 0.15s;
}
.contra-legal-details summary::-webkit-details-marker { display: none; }
.contra-legal-details summary:hover { background: #f3f4f6; }
.contra-legal-details summary i {
  margin-left: auto;
  transition: transform 0.25s;
  font-size: 0.78rem;
  color: #999;
}
.contra-legal-details[open] summary i {
  transform: rotate(180deg);
}
.contra-legal-body {
  padding: 12px 14px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}
.contra-legal-body p {
  font-size: 0.79rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 6px;
}
.contra-legal-body p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════
   CONTRATACIÓN — CHECKBOXES ACEPTACIÓN
══════════════════════════════════════════════════════ */
.contra-check-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}

.contra-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
}
.contra-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--adt-blue);
  cursor: pointer;
}
.contra-check span {
  font-size: 0.8rem;
  color: #444;
  line-height: 1.5;
}
.contra-check a {
  color: var(--adt-blue);
  text-decoration: underline;
}

/* ──────────────────────────────────────────────────────────
   Sustituye el icono Bootstrap bi-check-circle-fill por la
   imagen oficial ADT (check.webp) en las listas de features
   — mantenemos los iconos grandes "success" y badges como están
   Lleva fondo blanco circular detrás para que se vea sobre
   cualquier fondo (azul de hero/app-banner, blanco de pricing)
────────────────────────────────────────────────────────── */
.hero__features li i.bi-check-circle-fill,
.pricing-card__list li i.bi-check-circle-fill,
.app-banner__list li i.bi-check-circle-fill,
.exit-offer-item i.bi-check-circle-fill {
  width: 20px;
  height: 20px;
  /* Capa 1 (encima): el check oficial; Capa 2 (debajo): un disco blanco
     del tamaño justo del interior del check, NO mayor que su anillo */
  background-image:
    url('../images/check.webp'),
    radial-gradient(circle 6px at center, #fff 100%, transparent 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: 100% 100%, 100% 100%;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  font-size: 0;                   /* oculta el glifo Bootstrap (::before) */
  line-height: 0;
  color: transparent;
}
/* En las pricing cards el icono es un punto más grande */
.pricing-card__list li i.bi-check-circle-fill {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  background-image:
    url('../images/check.webp'),
    radial-gradient(circle 7px at center, #fff 100%, transparent 100%);
}

/* Resumen "Quieres proteger:" en el paso 1 (no duplica selector de tipo) */
.contra-step1-summary {
  background: var(--adt-blue-50);
  border: 1px solid var(--adt-blue-100);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 16px;
}
.contra-step1-summary__row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.contra-step1-summary__label {
  font-size: 13px;
  color: var(--adt-muted);
  font-weight: 600;
}
.contra-step1-summary__value {
  font-size: 14px;
  font-weight: 700;
  color: var(--adt-blue-700);
  flex: 1;
}
.contra-step1-summary__edit {
  background: transparent;
  border: 1px solid var(--adt-blue-600);
  color: var(--adt-blue-600);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.contra-step1-summary__edit:hover { background: var(--adt-blue-600); color: #fff; }

/* ── Fila de 2 columnas (teléfono + CP) ─────────── */
.contra-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 400px) {
  .contra-form-row { grid-template-columns: 1fr; }
}

/* ── Aviso de horario fuera de atención ─────────── */
.contra-hours-notice {
  display: none;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.78rem;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 8px 10px;
  margin-top: 8px;
  line-height: 1.5;
}
.contra-hours-notice i {
  flex-shrink: 0;
  color: #f59e0b;
  font-size: 0.85rem;
  margin-top: 1px;
}

/* ══════════════════════════════════════════════════════
   PANTALLAS ULTRAANCHAS (≥ 1920px)
══════════════════════════════════════════════════════ */
@media (min-width: 1920px) {
  /* Ampliar el contenedor principal para aprovechar el espacio */
  .container { max-width: 1400px; }

  /* Hero */
  .hero-section { padding: 4rem 0; }
  .hero-image    { min-height: 620px; max-height: 700px; }

  /* Tipografía hero */
  .hero-title      { font-size: 3.2rem; }
  .hero-subtitle   { font-size: 1.2rem; }

  /* Features */
  .feature-card    { padding: 2.5rem 2rem; }
  .feature-card h3 { font-size: 1.25rem; }
  .feature-card p  { font-size: 1rem; }
  .feature-icon-wrapper { width: 90px; height: 90px; }
  .feature-icon-wrapper i { font-size: 2.2rem; }

  /* Proceso */
  .proceso__step-icon { width: 120px; height: 120px; }
  .proceso__step-icon i { font-size: 2.8rem; }
  .proceso__step h3 { font-size: 1.4rem; }
  .proceso__step p  { font-size: 1rem; }
  .proceso__step-num { width: 32px; height: 32px; font-size: 0.95rem; }

  /* Trust */
  .trust__card      { padding: 3rem 2.5rem; }
  .trust__card-icon { width: 110px; height: 110px; }
  .trust__card-ico  { font-size: 2.8rem; }
  .trust__card-titulo { font-size: 1.5rem; }
  .trust__card-texto  { font-size: 1.05rem; }

  /* Tarifas */
  .tarifas__tabla    { font-size: 1rem; }

  /* Header */
  .header-securitas  { padding: 0.75rem 0; }

  /* Testimonios */
  .testimonial-card { padding: 2.5rem; }

  /* FAQ */
  .faq__pregunta { font-size: 1.1rem; }
  .faq__respuesta { font-size: 1rem; }
}

@media (min-width: 2560px) {
  .container { max-width: 1800px; }
  .hero-title { font-size: 4rem; }
}

/* ══════════════════════════════════════════════════════
   HEADER — ocultar al bajar, mostrar al subir
══════════════════════════════════════════════════════ */
.header-securitas {
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.32s ease;
}
.header-securitas.header--hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

/* ══════════════════════════════════════════════════════
   BOTÓN VOLVER ARRIBA
══════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--adt-blue) 0%, var(--adt-blue-hover) 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 16px rgba(0,95,169,.35);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.2s ease;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  box-shadow: 0 8px 24px rgba(0,95,169,.50);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════════════════
   BOTÓN WHATSAPP FLOTANTE
══════════════════════════════════════════════════════ */
/* ── Widget flotante de contacto (ovalado) ──── */
.float-widget {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.float-widget.is-hidden-footer {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
@media (max-width: 767px) {
  .float-widget { bottom: 80px; }
}
.sticky-cta.is-visible ~ .float-widget { bottom: 80px; }

/* Pill buttons */
.float-widget__buttons {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #f0f0f0;
  border-radius: 50%;
  padding: 6px;
  border: 2px solid var(--adt-blue);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  animation: sdGlowPulse 2.5s ease-in-out infinite;
}
@keyframes sdGlowPulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(0,0,0,.08); }
  50%      { box-shadow: 0 2px 16px rgba(0,95,169,.18), 0 4px 12px rgba(0,0,0,.08); }
}
.float-widget__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform .2s, background .2s;
  text-decoration: none;
  background: transparent;
}
.float-widget__btn:hover { transform: scale(1.08); }
.float-widget__btn--wa svg {
  width: 26px; height: 26px; fill: #25d366;
}
.float-widget__btn--wa:hover { background: rgba(37,211,102,.1); }
.float-widget__btn--phone svg {
  width: 24px; height: 24px; fill: var(--adt-blue);
}
.float-widget__btn--phone:hover { background: rgba(0,95,169,.1); }
.float-widget__buttons.is-hidden { display: none; }

/* Mini C2C panel */
.float-widget__panel {
  display: none;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  width: 280px;
  box-shadow: 0 0 12px rgba(0,95,169,.3), 0 4px 16px rgba(0,0,0,.12);
  animation: sdGlowPulse 2.5s ease-in-out infinite, fadeSlideUp .25s ease;
  position: relative;
}
.float-widget__panel.is-open { display: block; }
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.float-widget__panel-close {
  position: absolute; top: 8px; right: 12px;
  background: none; border: none; font-size: 22px; color: #999; cursor: pointer; line-height: 1;
}
.float-widget__panel-title {
  font-size: 16px; margin: 0 0 12px; text-align: center; color: var(--adt-dark);
}
.float-widget__input {
  width: 100%; padding: 10px 14px; border: 2px solid #ddd; border-radius: 24px;
  font-size: 15px; outline: none; transition: border-color .2s; box-sizing: border-box; margin-bottom: 6px;
}
.float-widget__input::placeholder { color: #b0b0b0; }
.float-widget__input:focus { border-color: var(--adt-blue); }
.float-widget__input.has-error,
.c2c-form__input.has-error {
  border-color: #dc2626;
  background: #fef2f2;
}
.float-widget__check {
  display: flex; align-items: flex-start; font-size: 11px; margin-bottom: 8px; position: relative;
}
.float-widget__check input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.float-widget__check label {
  display: inline; font-size: 11px; cursor: pointer; line-height: 1.4;
}
.float-widget__check label::before {
  content: ''; display: inline-block; width: 14px; height: 14px; min-width: 14px;
  border: 1px solid #999; border-radius: 3px; margin-right: 6px; vertical-align: middle;
  background: #fff; transition: background .2s;
}
.float-widget__check input:checked + label::before {
  background: var(--adt-blue); border-color: var(--adt-blue);
}
.float-widget__check input:checked + label::after {
  content: ''; position: absolute; left: 4px; top: 2px;
  width: 5px; height: 9px; border: solid #fff 0 2px 2px 0; transform: rotate(45deg);
}
.float-widget__submit {
  width: 100%; padding: 10px; background: var(--adt-blue); color: #fff;
  border: none; border-radius: 24px; font-size: 15px; font-weight: 800;
  cursor: pointer; transition: background .2s;
}
.float-widget__submit:hover { background: var(--adt-blue-hover, #c7080f); }
.float-widget__panel .c2c-form__msg {
  margin: 0 0 6px;
  font-size: 11px;
  color: #dc2626;
  font-weight: 600;
  min-height: 14px;
  text-align: center;
}
.float-widget__panel .c2c-form__response { margin-top: 8px; padding: 20px 16px; }
.float-widget__panel .c2c-form__response::before { width: 36px; height: 36px; }
.float-widget__panel .c2c-form__response-title { font-size: 18px; }

/* ══════════════════════════════════════════════════════════════
   CHATBOT — Asistente virtual
══════════════════════════════════════════════════════════════ */
.chatbot {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  max-height: 520px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
  z-index: 2500;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chatbot.is-open { display: flex; }

.chatbot__header {
  background: var(--adt-blue);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chatbot__header-info { display: flex; align-items: center; gap: 10px; }
.chatbot__avatar {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.55);
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
}
.chatbot__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.chatbot__name { display: block; font-weight: 800; font-size: 15px; }
.chatbot__status { display: block; font-size: 12px; opacity: .8; }
.chatbot__close {
  background: rgba(255,255,255,.15);
  border: none; border-radius: 50%;
  width: 30px; height: 30px;
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.chatbot__close:hover { background: rgba(255,255,255,.3); }

.chatbot__messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fef2f2;
  min-height: 200px;
  max-height: 360px;
}

.chatbot__msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.4;
  animation: chatFadeIn .3s ease;
}
@keyframes chatFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chatbot__msg--bot {
  background: #fff;
  color: #222;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.chatbot__msg--user {
  background: var(--adt-blue);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: flex-end;
  max-width: 85%;
  animation: chatFadeIn .3s ease;
}
.chatbot__opt {
  background: #fff;
  border: 2px solid var(--adt-blue);
  color: var(--adt-blue);
  padding: 9px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: background .2s, color .2s;
}
.chatbot__opt:hover {
  background: var(--adt-blue);
  color: #fff;
}

.chatbot__product-selector {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 90%;
  align-self: flex-start;
  animation: chatFadeIn .3s ease;
  padding: 4px 0;
}
.chatbot__product-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 8px 12px;
  transition: border-color .2s, background .2s;
}
.chatbot__product-opt:hover { border-color: rgba(0,95,169,0.35); }
.chatbot__product-opt input[type="checkbox"],
.chatbot__product-opt input[type="radio"] {
  accent-color: var(--adt-blue);
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.chatbot__product-opt input[type="checkbox"]:checked ~ .chatbot__product-label,
.chatbot__product-opt input[type="radio"]:checked ~ .chatbot__product-label {
  color: var(--adt-blue); font-weight: 700;
}
.chatbot__product-label { font-size: 13px; color: #333; font-weight: 500; }
.chatbot__product-confirm {
  margin-top: 6px;
  background: var(--adt-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: opacity .2s;
}
.chatbot__product-confirm:disabled { opacity: 0.4; cursor: default; }
/* ── Grupos colapsables de productos ───────── */
.chatbot__product-group {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 5px;
}
.chatbot__product-group:last-of-type { margin-bottom: 0; }
.chatbot__product-group-title {
  list-style: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  color: #555;
  padding: 7px 10px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.15s;
}
.chatbot__product-group-title:hover { background: #f0f0f0; }
.chatbot__product-group-title::-webkit-details-marker { display: none; }
.chatbot__product-group-list {
  padding: 4px 6px 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chatbot__product-actions {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}
.chatbot__product-actions .chatbot__product-confirm { flex: 1; }
.chatbot__product-back {
  background: #f3f4f6;
  color: #555;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.chatbot__product-back:hover { background: #e5e7eb; }

.chatbot__typing {
  display: flex; gap: 4px; padding: 10px 14px;
  align-self: flex-start;
  background: #fff;
  border-radius: 16px; border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  animation: chatFadeIn .3s ease;
}
.chatbot__typing span {
  width: 8px; height: 8px;
  background: #bbb; border-radius: 50%;
  animation: typingDot 1.2s infinite;
}
.chatbot__typing span:nth-child(2) { animation-delay: .2s; }
.chatbot__typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot {
  0%, 100% { opacity: .3; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1); }
}

.chatbot__input-area {
  padding: 12px 16px;
  border-top: 1px solid #eee;
  background: #fff;
}
.chatbot__name-input {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  margin-bottom: 8px;
}
.chatbot__name-input:focus { border-color: var(--adt-blue); }
.chatbot__privacy {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 12px; color: #666; margin-bottom: 10px;
}
.chatbot__privacy input { margin-top: 2px; }
.chatbot__privacy-link { color: var(--adt-blue); cursor: pointer; text-decoration: underline; }
.chatbot__send-btn {
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: #fff;
  border: none; border-radius: 12px;
  font-size: 15px; font-weight: 800;
  cursor: pointer;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.chatbot__send-btn:hover { background: #1da851; }
.chatbot__send-btn::before {
  content: '';
  width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") no-repeat center/contain;
}

@media (max-width: 480px) {
  .chatbot {
    bottom: 0; right: 0;
    width: 100%; max-width: 100%;
    max-height: 85vh;
    border-radius: 20px 20px 0 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   ADT · LANDING · Capa de diseño específica
   Se carga DESPUÉS de styles.css para sobrescribir y añadir.
═══════════════════════════════════════════════════════════ */

:root {
  --adt-blue-light:   #4ea3dd;     /* azul claro decorativo */
  --adt-blue-50:      #e0eef9;     /* tinte muy suave para fondos */
  --adt-blue-100:     #c7e0f3;     /* tinte suave */
  --adt-blue-600:     #005FA9;     /* PRIMARIO ADT — Pantone 286 C */
  --adt-blue-700:     #00477F;     /* hover/oscuro */
  --adt-blue-900:     #002A4D;     /* muy oscuro para overlays */
  --adt-black:        #101418;
  --adt-ink:          #1b2430;
  --adt-muted:        #6b7380;
  --adt-line:         #e4eaf1;
  --adt-soft:         #f3f6fb;
  --adt-yellow:       #ffc94a;
  --adt-green:        #1fbf75;
}

body {
  font-family: 'Roboto Condensed', 'Inter', 'Segoe UI', sans-serif;
  background: #fff;
  padding-top: 82px;
}
@media (min-width: 1024px) { body { padding-top: 84px; } }
@media (max-width: 991.98px) { body { padding-bottom: 72px; } }

.container { max-width: 1240px; }

/* ═══════════════════════════════════════════════════════════
   SITE HEADER
═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--adt-line);
  box-shadow: 0 2px 12px rgba(16,20,24,.04);
  transition: transform .3s ease, box-shadow .3s ease;
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header.is-scrolled { box-shadow: 0 6px 20px rgba(16,20,24,.08); }

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.site-header__brand { display: flex; align-items: center; gap: 16px; }
.site-header__logo img { height: 54px; width: auto; display: block; }
.site-header__dealer-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 4px;
  background: var(--adt-blue-600);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.site-header__nav { display: none; gap: 22px; }
.site-header__nav a {
  color: var(--adt-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.site-header__nav a:hover { color: var(--adt-blue-600); border-bottom-color: var(--adt-blue-600); }

.site-header__actions { display: flex; align-items: center; gap: 14px; }
.site-header__dealer {
  display: none;
  align-items: center;
  gap: 8px;
  padding-right: 14px;
  border-right: 1px solid var(--adt-line);
}
.site-header__dealer-logo { height: 28px; width: auto; }
.site-header__dealer-name { font-weight: 700; color: var(--adt-ink); font-size: 14px; }

.site-header__phones { display: flex; align-items: stretch; gap: 8px; }
.site-header__phones-divider {
  display: none;
  width: 1px;
  background: var(--adt-line);
  margin: 4px 2px;
}
@media (min-width: 768px) { .site-header__phones-divider { display: block; } }

.site-header__phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.site-header__phone-ico {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}
.site-header__phone-ico svg { width: 18px; height: 18px; }
.site-header__phone-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.site-header__phone-text small { font-size: 12px; font-weight: 500; opacity: .9; }
.site-header__phone-text strong { font-size: 17px; font-weight: 700; letter-spacing: .3px; white-space: nowrap; }

/* Primary — Clientes nuevos */
.site-header__phone-btn--primary {
  background: var(--adt-blue-600);
  color: #fff;
  box-shadow: 0 6px 14px rgba(36,95,164,.25);
}
.site-header__phone-btn--primary .site-header__phone-ico {
  background: rgba(255,255,255,.22);
  color: #fff;
}
.site-header__phone-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(36,95,164,.35);
}

/* Secondary — ¿Ya eres cliente? */
.site-header__phone-btn--secondary {
  background: #fff;
  color: var(--adt-ink);
  border: 1px solid var(--adt-line);
}
.site-header__phone-btn--secondary .site-header__phone-ico {
  background: var(--adt-blue-50);
  color: var(--adt-blue-700);
}
.site-header__phone-btn--secondary .site-header__phone-text small { color: var(--adt-muted); }
.site-header__phone-btn--secondary .site-header__phone-text strong { color: var(--adt-blue-700); }
.site-header__phone-btn--secondary:hover {
  border-color: var(--adt-blue-100);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(36,95,164,.15);
}

/* En móviles ocultamos el botón secundario en el header (va al burger) */
@media (max-width: 767px) {
  .site-header__phone-btn--secondary { display: none; }
}

.site-header__nav-mobile-phone--alt {
  background: #fff;
  color: var(--adt-blue-700);
  border: 1px solid var(--adt-blue-100);
  margin-top: 6px;
}

.site-header__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.site-header__burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--adt-blue-600);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.site-header__burger.is-active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.site-header__burger.is-active span:nth-child(2) { opacity: 0; }
.site-header__burger.is-active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.site-header__nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 0 16px;
  border-top: 1px solid var(--adt-line);
  margin-top: 8px;
}
.site-header__nav-mobile.is-open { display: flex; }
.site-header__nav-mobile a {
  padding: 12px 4px;
  color: var(--adt-ink);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--adt-line);
}
.site-header__nav-mobile-phone {
  margin-top: 8px;
  background: var(--adt-blue-600);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  border: 0;
  padding: 12px;
}

@media (min-width: 768px) {
  .site-header__dealer { display: flex; }
  .site-header__burger { display: none; }
}
@media (min-width: 1024px) {
  .site-header__nav { display: flex; }
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 56px 0 72px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(24,70,130,.78) 0%, rgba(36,95,164,.72) 45%, rgba(15,43,77,.86) 100%),
    url('../images/hero-background1.jpg') center/cover no-repeat #184682;
}
.hero__container { max-width: 1240px; padding: 0 20px; margin: 0 auto; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) { .hero__grid { grid-template-columns: 1.15fr 1fr; gap: 56px; } }

.hero__content { max-width: 640px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .4px;
  margin-bottom: 20px;
  color: #fff;
}
.hero__badge i { color: var(--adt-yellow); }
.hero__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -.5px;
  color: #fff;
}
.hero__title-accent { color: var(--adt-yellow); }
.hero__lead {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,.88);
  margin: 0 0 24px;
}
.hero__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.hero__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.94);
}
.hero__features i { color: var(--adt-green); font-size: 16px; }
@media (max-width: 520px) { .hero__features { grid-template-columns: 1fr; } }

.hero__rating { display: inline-flex; align-items: center; gap: 10px; }
.hero__stars { color: var(--adt-yellow); font-size: 16px; line-height: 1; }
.hero__rating-text { font-size: 14px; color: rgba(255,255,255,.9); }

/* ─── Form card (ADT override) ───────────────────────────── */
.hero__form-wrap { width: 100%; }
.form-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 24px 22px 22px;
  box-shadow: 0 30px 60px -20px rgba(15,43,77,.45), 0 10px 20px -10px rgba(15,43,77,.35);
  color: var(--adt-ink);
  overflow: hidden;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}
.form-card__ribbon {
  position: absolute;
  top: 14px; right: -48px;
  transform: rotate(35deg);
  transform-origin: center;
  background: var(--adt-yellow);
  color: #1a1100;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .4px;
  padding: 4px 55px;
  text-align: center;
  min-width: 200px;
  box-shadow: 0 4px 10px rgba(0,0,0,.18);
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
}

/* Asterisco como superíndice pequeño — discreto y legalmente visible */
.form-card__asterisk {
  font-size: .55em;
  font-weight: 700;
  vertical-align: super;
  line-height: 0;
  color: var(--adt-blue-600);
  margin-left: 1px;
}
.form-card__subtitle .form-card__asterisk {
  color: inherit;
  margin-left: 0;
  margin-right: 1px;
  vertical-align: super;
  font-size: .85em;
}

/* Margen superior extra para que "¡Sin esperas!" no quede recortado */
.hero-cta-btns { margin-top: 14px; }
.form-card__header { text-align: center; margin-bottom: 14px; }
.form-card__eyebrow { color: var(--adt-muted); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.form-card__price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin: 4px 0 4px;
  color: var(--adt-blue-600);
  font-family: 'Roboto Condensed', sans-serif;
}
.form-card__price-amount {
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  display: inline-flex;
  align-items: baseline;
}
.form-card__price-int { font-size: 84px; line-height: .9; }
.form-card__price-dec { font-size: 44px; line-height: .9; letter-spacing: -.5px; }
.form-card__price-unit   { font-size: 20px; font-weight: 700; letter-spacing: .2px; }
.form-card__subtitle { font-size: 11px; color: var(--adt-muted); margin: 0; line-height: 1.35; }
.form-card__terms-link {
  color: var(--adt-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(107,114,128,.45);
  cursor: pointer;
  transition: color .15s ease, text-decoration-color .15s ease;
}
.form-card__terms-link:hover,
.form-card__terms-link:focus-visible {
  color: var(--adt-blue-700);
  text-decoration-color: var(--adt-blue-700);
}
.form-card__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 12px 0 18px;
}
.form-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 8px 8px;
  background: var(--adt-blue-50);
  color: var(--adt-blue-700);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}
.form-card__badge i { color: var(--adt-blue-600); font-size: 14px; }

/* Shimmer destacando el badge "Smart Arming incluido" */
.form-card__badge--shimmer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.form-card__badge--shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 80%
  );
  transform: translateX(-100%);
  animation: form-card-badge-shimmer 2.6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.form-card__badge--shimmer > * { position: relative; z-index: 2; }
@keyframes form-card-badge-shimmer {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
@media (prefers-reduced-motion: reduce) {
  .form-card__badge--shimmer::after { animation: none; }
}
.form-card__footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  color: var(--adt-muted);
  font-size: 12px;
}
.form-card__footer i { color: var(--adt-green); font-size: 14px; }

/* ─── CTAs hero ──────────────────────────────────────────── */
.hero-cta-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero-cta-btn {
  position: relative;
  border: 0;
  border-radius: 12px;
  padding: 18px 12px 18px;
  cursor: pointer;
  font-family: inherit;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  overflow: visible;
  margin-top: 12px;
}
.hero-cta-btn i { font-size: 22px; }
.hero-cta-title { font-weight: 800; font-size: 19px; line-height: 1.15; }
.hero-cta-sub   { font-size: 13px; font-weight: 600; opacity: .9; }
.hero-cta-call {
  background: #fff;
  color: var(--adt-blue-700);
  border: 2px solid var(--adt-blue-600);
  box-shadow: 0 10px 20px -8px rgba(36,95,164,.25);
}
.hero-cta-call .hero-cta-sub { color: var(--adt-muted); }
.hero-cta-call i { color: var(--adt-blue-600); }
.hero-cta-call:hover {
  transform: translateY(-2px);
  background: var(--adt-blue-50);
  box-shadow: 0 14px 24px -8px rgba(36,95,164,.4);
}
.hero-cta-contract {
  background: linear-gradient(90deg, var(--adt-blue-600), var(--adt-blue-light));
  color: #fff;
  box-shadow: 0 10px 22px -8px rgba(36,95,164,.55);
}
.hero-cta-contract:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(36,95,164,.7);
  background: linear-gradient(90deg, var(--adt-blue-700), var(--adt-blue-600));
}
.hero-cta-contract .hero-cta-title,
.hero-cta-contract .hero-cta-sub {
  color: #fff;
  opacity: 1;
}
.hero-cta-contract:hover .hero-cta-title,
.hero-cta-contract:hover .hero-cta-sub { color: #fff; }
.hero-cta-contract .hero-cta-sub { opacity: .9; }
.hero-cta-contract i { color: var(--adt-yellow); }
.hero-cta-badge {
  position: absolute;
  top: -10px; right: auto; left: 50%;
  transform: translateX(-50%);
  background: var(--adt-yellow);
  color: #1a1100;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .6px;
  padding: 3px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
  white-space: nowrap;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--adt-muted);
  line-height: 1.5;
}
.consent-check input { margin-top: 3px; accent-color: var(--adt-blue-600); }
.consent-check a { color: var(--adt-blue-600); font-weight: 600; text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════ */
.trustbar {
  background: #fff;
  border-bottom: 1px solid var(--adt-line);
  padding: 18px 0;
}
.trustbar__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  align-items: center;
  justify-content: center;
}
.trustbar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--adt-ink);
  font-size: 14px;
}
.trustbar__item i { color: var(--adt-blue-600); font-size: 22px; flex-shrink: 0; }
.trustbar__item strong { color: var(--adt-blue-700); }
@media (min-width: 768px) {
  .trustbar__items { grid-template-columns: repeat(4, 1fr); justify-items: center; }
}

/* Variante con logos de certificación (ISO, TIA, IMQ) */
.trustbar--logos { padding: 18px 0 16px; }
.trustbar__caption {
  text-align: center;
  margin: 0 0 12px;
  font-size: 12.5px;
  color: var(--adt-muted);
  letter-spacing: .2px;
}
.trustbar__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 36px;
}
.trustbar__logos img {
  height: 32px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .65;
  transition: filter .25s ease, opacity .25s ease;
}
.trustbar__logos img:hover { filter: grayscale(0); opacity: 1; }
@media (max-width: 767px) {
  .trustbar--logos { padding: 14px 0 12px; }
  .trustbar__caption { font-size: 11px; margin-bottom: 10px; padding: 0 16px; }
  .trustbar__logos { gap: 10px 18px; }
  .trustbar__logos img { height: 26px; max-width: 80px; }
}

/* ═══════════════════════════════════════════════════════════
   SELF-SERVICE
═══════════════════════════════════════════════════════════ */
.selfservice {
  padding: 32px 0;
  background: linear-gradient(135deg, var(--adt-blue-600) 0%, var(--adt-blue-light) 100%);
  color: #fff;
}
.selfservice__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.selfservice__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.15);
  color: var(--adt-yellow);
  font-size: 26px;
  flex-shrink: 0;
}
.selfservice__text { flex: 1; min-width: 220px; display: flex; flex-direction: column; gap: 4px; }
.selfservice__badge {
  display: inline-block;
  width: fit-content;
  background: var(--adt-yellow);
  color: #1a1100;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
}
.selfservice__text strong { font-size: 18px; font-weight: 700; line-height: 1.25; color: #fff; }
.selfservice__text span:last-child { font-size: 13px; opacity: .92; }
.selfservice__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  color: var(--adt-blue-700);
  font-weight: 800;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.selfservice__btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,.15); }
.selfservice__btn i { color: var(--adt-blue-600); }

/* ═══════════════════════════════════════════════════════════
   SECTION HEAD
═══════════════════════════════════════════════════════════ */
.section-head { text-align: center; margin-bottom: 40px; }
.section-head__kicker {
  display: inline-block;
  padding: 4px 12px;
  background: var(--adt-blue-50);
  color: var(--adt-blue-700);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  color: var(--adt-ink);
  margin: 0 0 10px;
  letter-spacing: -.5px;
}
.section-head__title span { color: var(--adt-blue-600); }
.section-head__lead {
  color: var(--adt-muted);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto;
}
.section-head--light .section-head__kicker { background: rgba(255,255,255,.14); color: #fff; }
.section-head--light .section-head__title  { color: #fff; }
.section-head--light .section-head__title span { color: var(--adt-yellow); }
.section-head--light .section-head__lead   { color: rgba(255,255,255,.88); }

/* ═══════════════════════════════════════════════════════════
   PRODUCTOS
═══════════════════════════════════════════════════════════ */
.products { padding: 72px 0; background: var(--adt-soft); }
.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 600px) { .products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .products__grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--adt-line);
  border-radius: 16px;
  padding: 24px 22px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--adt-blue-600), var(--adt-blue-light));
  border-radius: 16px 0 0 16px;
  opacity: 0;
  transition: opacity .25s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--adt-blue-100);
  box-shadow: 0 20px 40px -18px rgba(36,95,164,.35);
}
.product-card:hover::before { opacity: 1; }
.product-card__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--adt-blue-50);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.product-card__icon img { width: 28px; height: 28px; }
.product-card h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--adt-ink);
  margin: 0 0 8px;
}
.product-card p { color: var(--adt-muted); font-size: 14.5px; margin: 0 0 12px; line-height: 1.55; }
.product-card ul { list-style: none; padding: 0; margin: 0; }
.product-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--adt-ink);
  padding: 4px 0;
}
.product-card ul li i { color: var(--adt-blue-600); font-size: 14px; }

/* ═══════════════════════════════════════════════════════════
   CÓMO FUNCIONA
═══════════════════════════════════════════════════════════ */
.how {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #184682 0%, #245fa4 45%, #0f2b4d 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.how::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(70% 70% at 50% 50%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000 40%, transparent 100%);
}
.how__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (min-width: 640px) { .how__steps { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (min-width: 900px) { .how__steps { grid-template-columns: 1fr auto 1fr auto 1fr; gap: 16px; } }

.how__step {
  position: relative;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
}
.how__step-num {
  position: absolute;
  top: -16px; left: 22px;
  background: var(--adt-blue-600);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 1px;
}
.how__step-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  margin: 8px auto 16px;
  color: #fff;
  font-size: 28px;
}
.how__step h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 8px;
  color: #fff;
}
.how__step p { color: rgba(255,255,255,.82); font-size: 14px; margin: 0; line-height: 1.55; }
.how__arrow { display: none; color: #fff; font-size: 28px; align-self: center; justify-self: center; }
@media (min-width: 900px) { .how__arrow { display: block; } }

/* ═══════════════════════════════════════════════════════════
   ADT AI DETECT
═══════════════════════════════════════════════════════════ */
.ai-detect {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, var(--adt-soft) 100%);
  color: var(--adt-ink);
}

/* Hero 2 columnas: copy a la izquierda, imagen pequeña a la derecha */
.ai-detect__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto 48px;
}
@media (min-width: 768px) {
  .ai-detect__hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 36px;
  }
}
@media (min-width: 992px) {
  .ai-detect__hero { gap: 48px; }
}
.ai-detect__copy { text-align: left; margin: 0; }
.ai-detect__copy .section-head__title,
.ai-detect__copy .section-head__lead { text-align: left; }

.ai-detect__media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 48px -16px rgba(36,95,164,.25);
  max-width: 620px;
  margin: 0 auto;
  width: 100%;
}
.ai-detect__media img { width: 100%; height: auto; display: block; }

.ai-detect__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto 40px;
}
@media (min-width: 640px) { .ai-detect__steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .ai-detect__steps { grid-template-columns: repeat(4, 1fr); } }

.ai-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--adt-line);
  border-radius: 14px;
  padding: 24px 22px 20px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ai-step:hover {
  transform: translateY(-3px);
  border-color: var(--adt-blue-100);
  box-shadow: 0 18px 34px -14px rgba(36,95,164,.25);
}
.ai-step__num {
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--adt-blue-600);
  letter-spacing: -.5px;
  margin-bottom: 6px;
}
.ai-step h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--adt-ink);
  margin: 0 0 8px;
}
.ai-step p { color: var(--adt-muted); font-size: 14px; margin: 0; line-height: 1.55; }

.ai-detect__benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}
@media (min-width: 720px) { .ai-detect__benefits { grid-template-columns: repeat(3, 1fr); } }

.benefit {
  background: #fff;
  border: 1px solid var(--adt-line);
  border-radius: 14px;
  padding: 22px 20px;
  text-align: center;
}
.benefit i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--adt-blue-50);
  color: var(--adt-blue-600);
  font-size: 24px;
  margin-bottom: 10px;
}
.benefit h4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--adt-blue-700);
  margin: 0 0 6px;
}
.benefit p { color: var(--adt-muted); font-size: 14px; margin: 0; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   TRUSTPILOT BADGE
═══════════════════════════════════════════════════════════ */
.trustpilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--adt-line);
  border-radius: 12px;
  text-decoration: none;
  color: var(--adt-ink);
  box-shadow: 0 6px 16px rgba(16,20,24,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.trustpilot-badge:hover {
  transform: translateY(-2px);
  border-color: #00b67a;
  box-shadow: 0 12px 24px rgba(0,182,122,.2);
}
.trustpilot-badge__star {
  width: 34px; height: 34px;
  background: #00b67a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.trustpilot-badge__star svg { width: 22px; height: 22px; }
.trustpilot-badge__text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.trustpilot-badge__text small { font-size: 11px; color: var(--adt-muted); text-transform: uppercase; letter-spacing: .5px; }
.trustpilot-badge__text strong { font-family: 'Roboto Condensed', sans-serif; font-size: 15px; color: var(--adt-ink); }
.trustpilot-badge__stars { display: inline-flex; gap: 2px; }
.trustpilot-badge__stars svg { width: 18px; height: 18px; color: #00b67a; }
.trustpilot-badge__score { font-size: 12px; color: var(--adt-muted); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.trustpilot-badge__score i { font-size: 12px; }
@media (max-width: 600px) {
  .trustpilot-badge { flex-wrap: wrap; justify-content: center; gap: 8px; padding: 10px 14px; }
  .trustpilot-badge__score { flex-basis: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   TARIFAS
═══════════════════════════════════════════════════════════ */
.pricing { padding: 80px 0; background: #fff; }
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) { .pricing__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 992px) { .pricing__grid { gap: 24px; } }

.pricing-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--adt-line);
  border-radius: 20px;
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--adt-blue-100);
  box-shadow: 0 24px 48px -18px rgba(36,95,164,.3);
}
.pricing-card--featured {
  background: linear-gradient(180deg, #fff 0%, var(--adt-blue-50) 100%);
  border-color: var(--adt-blue-600);
  box-shadow: 0 26px 56px -20px rgba(36,95,164,.4);
}
@media (min-width: 768px) { .pricing-card--featured { transform: translateY(-8px); } }
.pricing-card__ribbon {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--adt-blue-600), var(--adt-blue-light));
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(36,95,164,.35);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}
.pricing-card__ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 25%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 75%
  );
  transform: translateX(-100%);
  animation: pricing-ribbon-shimmer 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pricing-ribbon-shimmer {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
@media (prefers-reduced-motion: reduce) {
  .pricing-card__ribbon::after { animation: none; }
}
.pricing-card__head { text-align: center; margin-bottom: 18px; }
.pricing-card__name {
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--adt-blue-700);
  letter-spacing: .3px;
}
.pricing-card__desc { font-size: 13.5px; color: var(--adt-muted); margin: 4px 0 14px; }
.pricing-card__price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--adt-blue-600);
  font-family: 'Roboto Condensed', sans-serif;
}
.pricing-card__amount { font-size: 54px; font-weight: 900; line-height: 1; letter-spacing: -1.5px; }
.pricing-card__price-strike {
  display: block;
  text-align: center;
  color: var(--adt-muted);
  font-size: 16px;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(220,38,38,.7);
  margin: 4px 0 -2px;
}
.pricing-card__price-meta { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.pricing-card__currency { font-size: 24px; font-weight: 800; }
.pricing-card__period { font-size: 13px; color: var(--adt-muted); font-weight: 600; }
.pricing-card__note { display: block; margin-top: 8px; font-size: 12px; color: var(--adt-muted); }

.pricing-card__list {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  flex-grow: 1;
}
.pricing-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--adt-ink);
  border-bottom: 1px solid var(--adt-line);
}
.pricing-card__list li:last-child { border-bottom: 0; }
.pricing-card__list li i { color: var(--adt-blue-600); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.pricing-card__list--muted { color: var(--adt-muted); }
.pricing-card__list--muted i { color: var(--adt-muted); }

.pricing-card__cta {
  width: 100%;
  padding: 14px 18px;
  border: 0;
  border-radius: 10px;
  background: var(--adt-blue-600);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .3px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.pricing-card__cta:hover {
  background: var(--adt-blue-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(36,95,164,.35);
}
.pricing-card--featured .pricing-card__cta {
  background: linear-gradient(90deg, var(--adt-blue-600), var(--adt-blue-light));
}

.pricing__note {
  max-width: 820px;
  margin: 24px auto 0;
  padding: 14px 18px;
  background: var(--adt-soft);
  color: var(--adt-muted);
  border-radius: 10px;
  font-size: 13.5px;
  text-align: center;
  line-height: 1.55;
}
.pricing__note i { color: var(--adt-blue-600); margin-right: 6px; }
.pricing__note-link {
  color: var(--adt-blue-700);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color .15s ease;
}
.pricing__note-link:hover,
.pricing__note-link:focus-visible { color: var(--adt-blue-600); }

/* ═══════════════════════════════════════════════════════════
   POR QUÉ
═══════════════════════════════════════════════════════════ */
.why {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--adt-blue-900) 0%, var(--adt-blue-700) 100%);
  color: #fff;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 600px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .why__grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
  transition: transform .25s ease, background .25s ease;
}
.why-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.12); }
.why-card__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,.15);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 30px;
}
.why-card h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 8px;
  color: #fff;
}
.why-card p { color: rgba(255,255,255,.85); font-size: 14px; margin: 0; line-height: 1.55; }

/* ═══════════════════════════════════════════════════════════
   HOUSE — Sección interactiva con tabs y hotspots
═══════════════════════════════════════════════════════════ */
.house-section { padding: 72px 0; background: #fff; }

.house__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 8px;
  border-bottom: 1px solid var(--adt-line);
  margin: 8px auto 24px;
  max-width: 1100px;
}
.house__tab {
  background: transparent;
  border: 0;
  padding: 14px 18px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--adt-muted);
  cursor: pointer;
  position: relative;
  transition: color .2s ease;
}
.house__tab::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: -1px;
  height: 3px;
  background: var(--adt-blue-600);
  border-radius: 2px 2px 0 0;
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .2s ease, transform .2s ease;
}
.house__tab:hover { color: var(--adt-blue-700); }
.house__tab.is-active { color: var(--adt-blue-600); }
.house__tab.is-active::after { opacity: 1; transform: scaleX(1); }

.house__stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(180deg, #f6f9fd 0%, #fff 100%);
  border-radius: 16px;
  padding: 24px;
}
@media (min-width: 768px) {
  .house__stage { grid-template-columns: 1.15fr 1fr; gap: 24px; padding: 24px; }
}
@media (min-width: 992px) {
  .house__stage { gap: 32px; padding: 28px; }
}

.house__visual {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
}
.house__bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.house__hotspot {
  position: absolute;
  width: 36px; height: 36px;
  margin: -18px 0 0 -18px;
  border-radius: 50%;
  border: 0;
  background: var(--adt-blue-600);
  box-shadow: 0 0 0 4px rgba(36,95,164,.25), 0 6px 14px rgba(36,95,164,.35);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, width .2s ease, height .2s ease, margin .2s ease, font-size .2s ease;
  animation: house-pulse 2.4s ease-in-out infinite;
}
.house__hotspot i { display: block; line-height: 1; }
.house__hotspot:hover { transform: scale(1.12); }
.house__hotspot.is-active {
  background: var(--adt-blue-light);
  width: 52px; height: 52px;
  margin: -26px 0 0 -26px;
  font-size: 22px;
  box-shadow: 0 0 0 6px rgba(86,185,229,.30), 0 10px 22px rgba(36,95,164,.45);
  animation: none;
  z-index: 3;
}
.house[data-active-tab="perimetral"] .house__hotspot[data-tab="perimetral"],
.house[data-active-tab="interior"] .house__hotspot[data-tab="interior"],
.house[data-active-tab="video"] .house__hotspot[data-tab="video"],
.house[data-active-tab="conectividad"] .house__hotspot[data-tab="conectividad"] { display: block; }

@keyframes house-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(36,95,164,.25), 0 6px 14px rgba(36,95,164,.35); }
  50%      { box-shadow: 0 0 0 10px rgba(36,95,164,.05), 0 6px 14px rgba(36,95,164,.35); }
}
@media (prefers-reduced-motion: reduce) {
  .house__hotspot { animation: none; }
}

.house__info {
  background: #fff;
  border: 1px solid var(--adt-line);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.house__info-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--adt-blue-700);
  margin: 0 0 12px;
}
.house__info-desc {
  color: var(--adt-muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 360px;
}
.house__info-img-wrap {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 140px;
}
.house__info-img {
  max-height: 180px;
  max-width: 80%;
  height: auto;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(36,95,164,.18));
}

.house__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 1100px;
  margin: 32px auto 0;
}
@media (min-width: 640px) { .house__features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .house__features { grid-template-columns: repeat(3, 1fr); } }
.house__feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--adt-line);
  border-radius: 12px;
}
.house__feature i {
  color: var(--adt-blue-600);
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}
.house__feature p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--adt-ink);
}
.house__feature strong { color: var(--adt-blue-700); }

.house__cta { text-align: center; margin-top: 32px; }
.house__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 44px;
  background: linear-gradient(90deg, var(--adt-blue-600), var(--adt-blue-light));
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 1px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(36,95,164,.35);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.house__cta-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, var(--adt-blue-700), var(--adt-blue-600));
  box-shadow: 0 16px 32px rgba(36,95,164,.5);
}
.house__cta-btn i { color: var(--adt-yellow); }

/* ═══════════════════════════════════════════════════════════
   APP BANNER (móvil dentro del cuadro, centrado verticalmente)
═══════════════════════════════════════════════════════════ */
.app-banner { padding: 72px 0 60px; background: #fff; }
.app-banner__wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card azul con grid: móvil a la izquierda + contenido a la derecha */
.app-banner__card {
  position: relative;
  background: linear-gradient(135deg, var(--adt-blue-600) 0%, #2d74c4 100%);
  border-radius: 22px;
  padding: 40px 48px;
  color: #fff;
  box-shadow: 0 24px 48px -18px rgba(36,95,164,.45);
  overflow: hidden;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 36px;
  align-items: center;
}
@media (max-width: 767px) {
  .app-banner__card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    text-align: center;
    gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .app-banner__card {
    grid-template-columns: 240px 1fr;
    padding: 28px 28px;
    gap: 24px;
  }
}

/* Móvil (GIF) dentro del cuadro, centrado */
.app-banner__phone-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-banner__phone {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 36px rgba(0,0,0,.45));
}
@media (max-width: 899px) {
  .app-banner__phone { width: 230px; }
}

.app-banner__card-content { width: 100%; min-width: 0; }

.app-banner__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.15;
  margin: 0 0 10px;
  color: #fff;
  letter-spacing: -.3px;
}
.app-banner__title span { color: #fff; }
.app-banner__dash { color: var(--adt-yellow); }
.app-banner__sub { color: rgba(255,255,255,.9); font-size: 16px; margin: 0 0 20px; }

.app-banner__list { list-style: none; padding: 0; margin: 0 0 24px; }
.app-banner__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  color: #fff;
  font-size: 15px;
}
.app-banner__list i { color: var(--adt-yellow); font-size: 20px; flex-shrink: 0; }

.app-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #101418;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  transition: background .2s ease, transform .15s ease;
}
.app-store-btn:hover { background: #1f252c; transform: translateY(-2px); }
.app-store-btn i { font-size: 26px; }
.app-store-btn span { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.app-store-btn small { font-size: 10px; font-weight: 500; opacity: .8; letter-spacing: .3px; }
.app-store-btn strong { font-size: 15px; font-weight: 700; }

.app-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: #fff;
  color: var(--adt-blue-700);
  font-weight: 800;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.app-banner__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.2);
  background: var(--adt-yellow);
  color: #1a1100;
}

/* ═══════════════════════════════════════════════════════════
   WIDGET FLOTANTE — Estilo píldora (inspirado en Repsol)
═══════════════════════════════════════════════════════════ */
.float-widget {
  position: fixed;
  right: 20px;
  bottom: 24px;
  left: auto;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
@media (max-width: 991px) {
  /* En móvil bajamos el widget casi al borde inferior para que no
     tape los CTA del hero "Quiero que me llamen / Contratar ahora" */
  .float-widget { bottom: 18px; right: 14px; }
}

/* Píldora contenedora de los botones */
.float-widget__buttons {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--adt-blue-900);
  border-radius: 34px;
  padding: 6px;
  border: 3px solid #fff;
  box-shadow:
    0 0 14px rgba(15,43,77,.30),
    0 6px 20px rgba(15,43,77,.20);
}

/* Botones circulares dentro de la píldora */
.float-widget__btn {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #fff;
  transition: transform .2s ease, background .2s ease;
  padding: 0;
}
.float-widget__btn:hover {
  background: rgba(255,255,255,.15);
  transform: scale(1.08);
}
.float-widget__btn svg { width: 26px; height: 26px; display: block; }
.float-widget__btn--phone svg { color: #fff; fill: #fff; }
.float-widget__btn--wa svg { width: 28px; height: 28px; fill: #25D366; }

/* Tooltip a la izquierda en desktop */
.float-widget__btn[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 16px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  padding: 8px 14px;
  background: #fff;
  color: var(--adt-blue-900);
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(15,43,77,.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .25s ease;
  z-index: 2;
}
.float-widget__btn[data-tooltip]::before {
  content: "";
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  border: 8px solid transparent;
  border-left-color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .25s ease;
  z-index: 2;
}
@media (hover: hover) and (pointer: fine) {
  .float-widget__btn:hover::after,
  .float-widget__btn:focus-visible::after,
  .float-widget__btn:hover::before,
  .float-widget__btn:focus-visible::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

/* Panel C2C que aparece al pulsar el teléfono */
.float-widget__panel {
  display: none;
  background: #fff;
  border-radius: 22px;
  padding: 22px 20px 18px;
  width: 290px;
  box-shadow: 0 0 14px rgba(15,43,77,.20), 0 10px 30px rgba(15,43,77,.25);
  position: relative;
  order: -1;
}
.float-widget__panel.is-open,
.float-widget__panel.show { display: block; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIOS (override)
═══════════════════════════════════════════════════════════ */
.testimonials { padding: 72px 0; background: #fff; }
.testimonials__rating-global {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 15px;
  color: var(--adt-muted);
}
.testimonials__stars-global { color: var(--adt-yellow); font-size: 17px; }
.testimonials__rating-global strong { color: var(--adt-ink); }

.testimonial-card {
  background: #fff;
  border: 1px solid var(--adt-line);
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 4px 14px rgba(16,20,24,.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-stars { color: var(--adt-yellow); font-size: 16px; }
.testimonial-title {
  color: var(--adt-ink);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.testimonial-text {
  color: var(--adt-ink);
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  flex-grow: 1;
  margin: 0;
}
.testimonial-author em {
  color: var(--adt-blue-600);
  font-style: normal;
  font-weight: 600;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--adt-blue-600), var(--adt-blue-light));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 17px;
  flex-shrink: 0;
}
.testimonial-info { display: flex; flex-direction: column; line-height: 1.2; }
.testimonial-info strong { color: var(--adt-ink); font-size: 14px; }
.testimonial-info span { color: var(--adt-muted); font-size: 12.5px; }

.testimonial-btn {
  background: #fff;
  border: 1px solid var(--adt-line);
  color: var(--adt-blue-600);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(16,20,24,.08);
  transition: background .2s ease, transform .15s ease;
}
.testimonial-btn:hover { background: var(--adt-blue-600); color: #fff; }
.testimonial-dots button { background: var(--adt-line); }
.testimonial-dots button.active { background: var(--adt-blue-600); }

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq {
  padding: 80px 0;
  background: linear-gradient(135deg, #102b4d 0%, #245fa4 100%);
  color: #fff;
}
.faq__list { max-width: 820px; margin: 0 auto; }
.faq__item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: background .2s ease;
}
.faq__item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  color: #fff;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  transition: transform .25s ease;
  color: #fff;
  font-size: 20px;
}
.faq__item[open] { background: rgba(255,255,255,.14); }
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__answer { padding: 0 22px 20px; color: rgba(255,255,255,.88); font-size: 15px; line-height: 1.6; }
.faq__answer p { margin: 0; }
.faq__answer strong { color: var(--adt-yellow); }

/* ═══════════════════════════════════════════════════════════
   STICKY CTA ROTATIVO (estilo Repsol)
   Barra inferior con ofertas que rotan + botón acción
═══════════════════════════════════════════════════════════ */
.adt-sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1100;
  background: linear-gradient(90deg, var(--adt-blue-900) 0%, var(--adt-blue-700) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 -6px 24px rgba(15,43,77,.35);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}
/* Extiende el sticky CTA hacia arriba para que no se vea el fondo blanco
   del body entre el footer y el CTA cuando se llega al final de la página */
.adt-sticky-cta::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 100%;
  height: 12px;
  background: var(--adt-blue-900);
  pointer-events: none;
}
.adt-sticky-cta.is-visible { transform: translateY(0); }
.adt-sticky-cta__offer,
.adt-sticky-cta__price { transition: opacity .25s ease; }
.adt-sticky-cta--fade { opacity: 0; }

.adt-sticky-cta__left {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  flex: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: 'Roboto Condensed', sans-serif;
  text-align: left;
  color: #fff;
  transition: opacity .2s ease;
  min-width: 0;
}
.adt-sticky-cta__left:hover { opacity: .92; }

.adt-sticky-cta__offer {
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 0 1 auto;
}
.adt-sticky-cta__offer strong {
  color: var(--adt-yellow);
  font-weight: 800;
  letter-spacing: .3px;
  margin-right: 6px;
}

.adt-sticky-cta__price {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--adt-yellow);
  line-height: 1;
  white-space: nowrap;
}
.adt-sticky-cta__price small {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-left: 2px;
  letter-spacing: .3px;
}

.adt-sticky-cta__right {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
}
.adt-sticky-cta__msg {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  white-space: nowrap;
}
.adt-sticky-cta__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  background: #fff;
  color: var(--adt-blue-700);
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .4px;
  text-transform: uppercase;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease, color .2s ease;
}
.adt-sticky-cta__action:hover {
  background: var(--adt-yellow);
  color: #1a1100;
  transform: scale(1.03);
}

/* (Reglas mobile del sticky CTA reescritas más abajo en bloque responsive unificado) */

/* Cuando el sticky está visible, subimos el widget flotante */
.adt-sticky-cta.is-visible ~ .float-widget,
.adt-sticky-cta.is-visible ~ * .float-widget { bottom: 92px; }
@media (max-width: 991px) {
  .adt-sticky-cta.is-visible ~ .float-widget,
  .adt-sticky-cta.is-visible ~ * .float-widget { bottom: 120px; }
}

/* Offset body para que la barra no tape contenido inferior */
body.has-sticky-cta { padding-bottom: 70px; }
@media (max-width: 767px) { body.has-sticky-cta { padding-bottom: 120px; } }

/* Sticky antiguo desactivado (ya no se usa) */
.sticky-cta { display: none; }

/* ═══════════════════════════════════════════════════════════
   BACK-TO-TOP (override: sin halo rojo, con tono ADT)
═══════════════════════════════════════════════════════════ */
.back-to-top {
  background: linear-gradient(135deg, var(--adt-blue-600) 0%, var(--adt-blue-700) 100%);
  box-shadow: 0 4px 14px rgba(36,95,164,.30);
  color: #fff;
}
.back-to-top:hover {
  box-shadow: 0 8px 22px rgba(36,95,164,.45);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════
   SITE FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: #0b0e13;
  color: #c6ced8;
  padding: 52px 0 20px;
}
.site-footer a { color: #c6ced8; text-decoration: none; font-size: 14px; }
.site-footer a:hover { color: #fff; }

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 600px) { .site-footer__top { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; } }

.site-footer__brand { max-width: 280px; }
.site-footer__logo { height: 44px; width: auto; margin-bottom: 12px; display: block; filter: brightness(0) invert(1); }
.site-footer__tagline { font-size: 14px; line-height: 1.55; color: #9aa3ae; }

.site-footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.site-footer__links-group { display: flex; flex-direction: column; gap: 8px; }
.site-footer__contact { display: flex; flex-direction: column; gap: 10px; }
.site-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
}
.site-footer__phone i { color: var(--adt-blue-light); }
.site-footer__dealer { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.site-footer__dealer img { height: 28px; width: auto; }
.site-footer__dealer span { font-size: 13.5px; color: #9aa3ae; }

.site-footer__legal-block {
  padding: 18px 0;
  border-top: 1px solid #1d2630;
  border-bottom: 1px solid #1d2630;
  margin-top: 22px;
}
.site-footer__disclaimer {
  font-size: 13px;
  color: #c6ced8;
  margin: 0 0 8px;
  line-height: 1.5;
}
.site-footer__disclaimer strong { color: #fff; }
.site-footer__privacy-notice {
  font-size: 12px;
  color: #8b94a0;
  margin: 0;
  line-height: 1.55;
}
.site-footer__privacy-notice strong { color: #c6ced8; }
.site-footer__privacy-notice a { color: var(--adt-blue-light); text-decoration: none; }
.site-footer__privacy-notice a:hover { text-decoration: underline; }

.site-footer__bottom {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.site-footer__copy { font-size: 12.5px; color: #7a8392; margin: 0; }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: center; font-size: 13px; justify-content: center; }
.site-footer__legal a:hover { text-decoration: underline; }
.site-footer__legal span { color: #49525c; }

/* ═══════════════════════════════════════════════════════════
   Override de botones y widgets
═══════════════════════════════════════════════════════════ */
.btn-submit, .submit-btn, .btn-primary {
  background: var(--adt-blue-600);
  color: #fff;
}
.btn-submit:hover, .submit-btn:hover, .btn-primary:hover { background: var(--adt-blue-700); }

.back-to-top { background: var(--adt-blue-600); color: #fff; }
.back-to-top:hover { background: var(--adt-blue-700); }

.float-widget__btn--phone { background: var(--adt-blue-600); }
.float-widget__btn--phone:hover { background: var(--adt-blue-700); }
.float-widget__submit { background: var(--adt-blue-600); }
.float-widget__submit:hover { background: var(--adt-blue-700); }

.chatbot__header {
  background: linear-gradient(135deg, var(--adt-blue-600), var(--adt-blue-light));
  color: #fff;
}
.chatbot__avatar { background: #fff; color: var(--adt-blue-700); box-shadow: 0 1px 3px rgba(0,0,0,.12); }
.chatbot__send-btn { background: var(--adt-blue-600); }
.chatbot__send-btn:hover { background: var(--adt-blue-700); }

/* ═══════════════════════════════════════════════════════════
   Responsive tweaks
═══════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .hero { padding: 40px 0 52px; }
  .products, .how, .pricing, .why, .app-banner, .testimonials, .faq { padding: 56px 0; }
  .section-head { margin-bottom: 28px; }
}

/* Visibilidad badge desktop / mobile (texto distinto según viewport) */
.hero__badge-text--desktop { display: inline; }
.hero__badge-text--mobile  { display: none; }
@media (max-width: 767px) {
  .hero__badge-text--desktop { display: none; }
  .hero__badge-text--mobile  { display: inline; }
}

/* ── Hero responsive móvil ─────────────────────────────────
   Solo se muestra: badge ("Protección profesional 24h") + título
   ("Tu hogar, siempre protegido") + form-card.
   Se ocultan lead, features y rating. Los CTA del form quedan
   en horizontal y desaparece el footer "Tus datos protegidos". */
@media (max-width: 767px) {
  .hero__lead,
  .hero__features,
  .hero__rating { display: none; }

  .hero__title {
    font-size: clamp(28px, 6vw, 36px);
    text-align: center;
    margin-bottom: 18px;
  }
  .hero__badge {
    margin: 0 auto 14px;
    display: inline-flex;
  }
  .hero__content { text-align: center; }

  /* Badges del form-card más compactos para que los CTA tengan más protagonismo */
  .form-card__badges     { gap: 6px; margin: 8px 0 12px; }
  .form-card__badge      { padding: 7px 8px; font-size: 11.5px; gap: 6px; font-weight: 600; }
  .form-card__badge i    { font-size: 13px; }
  .form-card__badge strong { font-weight: 800; }

  .form-card__footer { display: none; }
  .hero-cta-btns    { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-cta-btn     { padding: 16px 10px; min-height: 88px; }
  .hero-cta-title   { font-size: 17px; }
  .hero-cta-sub     { font-size: 12.5px; }
}

/* ──────────────────────────────────────────────────────────
   Carruseles horizontales en móvil
   Patrón: convertir grid → flex con scroll horizontal y snap
   Aplicado a: tabs casa, features casa, tarifas, why-grid
────────────────────────────────────────────────────────── */
@media (max-width: 767px) {

  /* Tabs de la casa interactiva — scroll horizontal sin wrap */
  .house__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0 16px;
    margin: 0 -16px 16px;
    scrollbar-width: none;
  }
  .house__tabs::-webkit-scrollbar { display: none; }
  .house__tab {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 12px 14px;
    font-size: 14px;
  }

  /* Features de la casa — carrusel horizontal */
  .house__features {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding: 4px 16px 16px;
    margin: 24px -16px 0;
    scrollbar-width: none;
  }
  .house__features::-webkit-scrollbar { display: none; }
  .house__feature {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }

  /* Tarifas — carrusel horizontal con snap */
  .pricing__grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 12px 16px 18px;
    margin: 0 -16px;
    scrollbar-width: none;
  }
  .pricing__grid::-webkit-scrollbar { display: none; }
  .pricing-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }
  .pricing-card--featured { transform: none; }

  /* Why grid — 2x2 compacto en móvil (4 cards no necesitan carrusel) */
  .why__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* ──────────────────────────────────────────────────────────
   Resaltado de tarjeta activa en carrusel features (móvil)
   El JS añade .is-active al item centrado mientras auto-scrollea
────────────────────────────────────────────────────────── */
.house__feature {
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
@media (max-width: 767px) {
  .house__feature.is-active {
    border-color: var(--adt-blue-600);
    box-shadow: 0 10px 24px -8px rgba(0,95,169,.35);
    transform: translateY(-2px);
  }
}

/* ──────────────────────────────────────────────────────────
   Flechas del carrusel de tarifas (solo visible en móvil)
────────────────────────────────────────────────────────── */
.pricing__wrap { position: relative; }
.pricing__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--adt-line);
  background: #fff;
  color: var(--adt-blue-600);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(16,20,24,.12);
  z-index: 3;
  font-size: 18px;
  transition: background .2s ease, transform .15s ease;
}
.pricing__arrow:hover { background: var(--adt-blue-600); color: #fff; }
.pricing__arrow--prev { left: 4px; }
.pricing__arrow--next { right: 4px; }
.pricing__arrow[disabled] { opacity: .35; cursor: default; }
.pricing__arrow[disabled]:hover { background: #fff; color: var(--adt-blue-600); }
@media (max-width: 767px) {
  .pricing__arrow { display: flex; }
}

/* ──────────────────────────────────────────────────────────
   AI Detect — pasos en grid 2x2, beneficios apilados compactos
────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .ai-detect__steps {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .ai-step {
    padding: 14px 12px 12px;
  }
  .ai-step__num { font-size: 20px; margin-bottom: 2px; }
  .ai-step h3 { font-size: 14px; margin-bottom: 4px; line-height: 1.2; }
  .ai-step p  { font-size: 12.5px; line-height: 1.4; }

  .ai-detect__benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .benefit {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
  }
  .benefit i { width: 40px; height: 40px; font-size: 16px; flex-shrink: 0; margin: 0; }
  .benefit h4 { font-size: 14px; margin: 0 0 2px; }
  .benefit p  { font-size: 12.5px; margin: 0; }
  .benefit > div { flex: 1; min-width: 0; }
}

/* ──────────────────────────────────────────────────────────
   "¿Cómo funciona?" — pasos compactos apilados en móvil
   Usar grid 2 columnas (badge num + contenido) para que el num
   no tape el texto (el num era position:absolute en desktop).
────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .how__steps { gap: 10px; }
  .how__step {
    padding: 14px 16px;
    text-align: left;
    display: grid;
    grid-template-columns: 38px 1fr;
    grid-column-gap: 12px;
    align-items: start;
  }
  .how__step-num {
    position: static;
    grid-row: 1 / span 2;
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .4px;
  }
  .how__step-icon { display: none; }
  .how__step h3   { font-size: 15px; margin: 0 0 4px; grid-column: 2; }
  .how__step p    { font-size: 13px; line-height: 1.45; grid-column: 2; }
  .how__arrow     { display: none; }
}

/* ──────────────────────────────────────────────────────────
   Hero móvil — promo "durante 4 meses" + footnote 42,35€
────────────────────────────────────────────────────────── */
.form-card__promo-strap {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--adt-blue-700);
  background: var(--adt-yellow);
  padding: 4px 12px;
  border-radius: 999px;
  margin: 4px auto 8px;
  width: fit-content;
  letter-spacing: .3px;
}
@media (max-width: 500px) {
  .form-card__promo-strap { font-size: 12px; padding: 3px 10px; }
}

/* ──────────────────────────────────────────────────────────
   Utilidad accesibilidad — texto solo para lectores de pantalla
────────────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ──────────────────────────────────────────────────────────
   Móvil: ocultar sección "Por qué ADT"
────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .why { display: none; }
}

/* ──────────────────────────────────────────────────────────
   App banner móvil — versión compacta
   Visible: gif, título, subtítulo + botones App Store/Google Play en horizontal
   Oculto: ul de features y CTA "Infórmate aquí"
────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .app-banner__list,
  .app-banner__cta { display: none; }

  .app-banner__title { font-size: 22px; line-height: 1.2; }
  .app-banner__sub   { font-size: 14px; margin-bottom: 16px; }

  .app-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    flex-wrap: nowrap;
  }
  .app-store-btn {
    padding: 8px 10px;
    gap: 8px;
    justify-content: center;
  }
  .app-store-btn i      { font-size: 22px; }
  .app-store-btn small  { font-size: 9px; }
  .app-store-btn strong { font-size: 13px; }
}

/* ──────────────────────────────────────────────────────────
   Self-service strip oculto en móvil
────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .selfservice { display: none; }
}

/* ──────────────────────────────────────────────────────────
   Hide back-to-top + float-widget cuando se está al final
   El JS añade body.is-near-footer cerca del pie
────────────────────────────────────────────────────────── */
body.is-near-footer .back-to-top,
body.is-near-footer .float-widget {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .25s ease, transform .25s ease;
}

/* ──────────────────────────────────────────────────────────
   Sticky CTA — fix layout móvil (1 fila compacta, no 2 filas)
────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .adt-sticky-cta { flex-wrap: nowrap; flex-direction: row; }
  .adt-sticky-cta__left {
    flex: 1;
    padding: 8px 10px 8px 14px;
    gap: 8px;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .adt-sticky-cta__offer {
    font-size: 11px;
    line-height: 1.25;
    white-space: normal;
    text-overflow: clip;
    overflow: visible;
  }
  .adt-sticky-cta__offer strong { font-size: 12px; display: block; margin-right: 0; }
  .adt-sticky-cta__price {
    font-size: 22px;
    line-height: 1;
  }
  .adt-sticky-cta__price small { font-size: 11px; }
  .adt-sticky-cta__right {
    padding: 8px 12px;
    flex: 0 0 auto;
    width: auto;
  }
  .adt-sticky-cta__msg { display: none; }
  .adt-sticky-cta__action {
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
  }
  body.has-sticky-cta { padding-bottom: 76px; }
}

/* ──────────────────────────────────────────────────────────
   Footer móvil — orden lógico, espaciado compacto
────────────────────────────────────────────────────────── */
@media (max-width: 599px) {
  .site-footer { padding: 36px 0 16px; }
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
  }
  .site-footer__brand {
    grid-column: 1 / -1;
    max-width: none;
    text-align: center;
  }
  .site-footer__logo { margin: 0 auto 10px; }
  .site-footer__contact { grid-column: 1 / -1; align-items: center; text-align: center; }
  .site-footer__contact h4 { text-align: center; }
  .site-footer__dealer { justify-content: center; }
  .site-footer h4 { font-size: 13px; margin-bottom: 10px; }
  .site-footer__links-group a { font-size: 13px; }
  .site-footer__legal-block { padding: 14px 0; margin-top: 16px; text-align: center; }
  .site-footer__disclaimer { font-size: 12px; }
  .site-footer__privacy-notice { font-size: 11px; }
  .site-footer__bottom { gap: 8px; }
  .site-footer__copy { font-size: 11.5px; line-height: 1.45; }
  .site-footer__legal { gap: 4px 8px; font-size: 12px; }
}

/* ──────────────────────────────────────────────────────────
   Header móvil — badge "Agente autorizado" pequeño y discreto
   y reducir el botón de teléfono para que el burger no se corte
────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .site-header__row { gap: 8px; padding: 10px 0; }
  .site-header__brand { gap: 8px; min-width: 0; flex-shrink: 1; }
  .site-header__logo img { height: 38px; }
  .site-header__dealer-badge {
    padding: 3px 7px;
    font-size: 9.5px;
    letter-spacing: .3px;
    line-height: 1.1;
    border-radius: 3px;
    background: var(--adt-blue-50);
    color: var(--adt-blue-700);
    white-space: nowrap;
  }
  .site-header__actions { gap: 6px; flex-shrink: 0; }
  .site-header__phones { gap: 4px; }
  .site-header__phone-text small { display: none; }
  .site-header__phone-text strong { font-size: 13px; }
  .site-header__phone-btn { padding: 7px 9px; }
  .site-header__phone-btn--secondary { display: none; }
  .site-header__burger { flex-shrink: 0; }
}

@media (max-width: 767px) {
  /* Quitar burger y reservar el sitio para el botón "Clientes nuevos" */
  .site-header__burger { display: none; }
  .site-header__nav-mobile { display: none; }
  /* Botón teléfono primario visible con número y label "Clientes nuevos" */
  .site-header__phone-btn--primary { padding: 7px 12px; }
  .site-header__phone-btn--primary .site-header__phone-text { display: flex; flex-direction: column; line-height: 1.05; }
  .site-header__phone-btn--primary .site-header__phone-text small {
    display: block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .3px;
    text-transform: uppercase;
    opacity: .85;
  }
  .site-header__phone-btn--primary .site-header__phone-text strong { font-size: 14px; letter-spacing: .2px; }
}

@media (max-width: 500px) {
  .form-card { padding: 20px 16px 18px; }
  .form-card__price-int { font-size: 64px; }
  .form-card__price-dec { font-size: 34px; }
  .hero-cta-btn { padding: 12px 8px 14px; }
  .hero-cta-title { font-size: 15px; line-height: 1.1; }
  .site-header__logo img { height: 34px; }
  .site-header__dealer-badge { font-size: 9px; padding: 2px 6px; }
  .site-header__phone-btn--primary { padding: 6px 10px; }
  .site-header__phone-btn--primary .site-header__phone-text small { font-size: 8.5px; }
  .site-header__phone-btn--primary .site-header__phone-text strong { font-size: 13px; }
}
