/* =================================================================
   SEGURMA ALARMAS — Premium Conversion Design System v5
   ================================================================= */

:root {
  --orange: #ff6800;
  --orange-dark: #e55d00;
  --orange-darker: #cc5200;
  --orange-50: #fff8f1;
  --orange-100: #ffeede;
  --orange-200: #ffd9b5;
  --black: #0a0a0a;
  --ink: #14181f;
  --gray-900: #1a1f29;
  --gray-700: #4b5563;
  --gray-600: #6b7280;
  --gray-500: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --green: #10b981;
  --red: #ef4444;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-xs: 0 1px 2px rgba(20, 24, 31, 0.04);
  --shadow-sm: 0 1px 3px rgba(20, 24, 31, 0.06), 0 1px 2px rgba(20, 24, 31, 0.04);
  --shadow: 0 4px 12px rgba(20, 24, 31, 0.06), 0 2px 4px rgba(20, 24, 31, 0.04);
  --shadow-lg: 0 12px 32px rgba(20, 24, 31, 0.08), 0 4px 8px rgba(20, 24, 31, 0.04);
  --shadow-xl: 0 24px 48px rgba(20, 24, 31, 0.12), 0 8px 16px rgba(20, 24, 31, 0.06);
  --container: 1200px;
  --header-h: 66px;
  --font: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: #fff; }
html, body { overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  font-feature-settings: "ss01", "cv01", "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--header-h);
}

img, svg { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: color .15s; }
a:hover { color: var(--orange-dark); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============== SKIP LINK ============== */
.skip-link {
  position: fixed !important; top: -100px !important; left: 12px;
  background: var(--ink); color: var(--white);
  padding: 12px 18px; border-radius: 10px;
  font-weight: 600; font-size: 14px; z-index: 200;
  transition: top .2s;
}
.skip-link:focus { top: 12px !important; color: var(--white); }

*:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

/* ============== HEADER (premium · 3 zonas: nav-left | logo-center | cta-right) ============== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(1.8) blur(16px);
  -webkit-backdrop-filter: saturate(1.8) blur(16px);
  border-bottom: 1px solid rgba(20, 24, 31, 0.06);
  height: var(--header-h);
  transition: box-shadow .25s, background .25s;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 16px rgba(20, 24, 31, 0.06);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center; height: 100%;
  gap: 24px;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
}

/* LEFT: nav primary */
.nav-left { justify-self: start; }
.nav-left ul {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-left a {
  display: inline-flex; align-items: center;
  padding: 8px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--ink); text-decoration: none;
  border-radius: 8px;
  position: relative;
  letter-spacing: 0.005em;
  transition: color .2s;
}
.nav-left a::after {
  content: ""; position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1.5px; background: var(--orange);
  transform: scaleX(0); transform-origin: center;
  transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-left a:hover { color: var(--orange); }
.nav-left a:hover::after { transform: scaleX(1); }

/* CENTER: logo + badge */
.logo {
  display: inline-flex; flex-direction: column; align-items: center;
  justify-self: center;
  gap: 3px; text-decoration: none; line-height: 1;
  transition: opacity .2s;
}
.logo:hover { opacity: 0.85; }
.logo img { height: 24px; width: auto; display: block; }
.logo-sub {
  display: inline-flex; align-items: center;
  background: var(--ink); color: var(--white);
  font-size: 6.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  padding: 2.5px 7px; border-radius: 999px;
  white-space: nowrap; line-height: 1;
}

/* RIGHT: CTA llamada */
.header-cta {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 12px;
}
.btn-call {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 18px 9px 10px;
  background: var(--orange); color: var(--white);
  border-radius: 999px;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.005em;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255, 104, 0, 0.28);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-call:hover {
  background: var(--orange-dark); color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 104, 0, 0.42);
}
.btn-call:active { transform: translateY(0); }
.btn-call .btn-call-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}
.btn-call .btn-call-icon svg { width: 14px; height: 14px; }

/* Lang switch (compact pill) */
.lang-switch {
  display: inline-flex; gap: 1px; align-items: center;
  background: var(--gray-100); border-radius: 999px; padding: 2.5px;
}
.lang-switch a {
  font-size: 10.5px; font-weight: 700; color: var(--gray-600);
  padding: 5px 9px; border-radius: 999px; line-height: 1;
  letter-spacing: 0.06em;
  transition: all .15s;
}
.lang-switch a.active {
  background: var(--white); color: var(--orange);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.lang-switch a:hover:not(.active) { color: var(--ink); }

/* Burger (mobile only) */
.burger {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 0; border-radius: 8px; color: var(--ink);
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  transition: background .15s;
  justify-self: start;
}
.burger:hover { background: var(--gray-100); }
.burger svg { width: 22px; height: 22px; transition: transform .25s; }
.burger.open svg { transform: rotate(90deg); }

/* MOBILE DRAWER nav — base (full-screen, scrollable) */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  flex-direction: column;
  padding: 70px 20px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 9999;
  display: flex !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s;
}
.nav.open {
  opacity: 1;
  visibility: visible;
}
.nav-list { list-style: none; margin: 0; padding: 0; }

/* Backdrop for mobile drawer */
/* Backdrop ya no necesario — drawer es fullscreen */
.nav-backdrop { display: none !important; }

/* Hide nav-close on desktop (only shows in drawer) */
.nav-close { display: none; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 12px; font-weight: 600; font-size: 15px;
  border: 1.5px solid transparent; cursor: pointer; transition: all .18s;
  text-align: center; white-space: nowrap; line-height: 1.2;
  font-family: inherit;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 12px rgba(255, 104, 0, 0.25);
}
.btn-primary:hover {
  background: var(--orange-dark); color: var(--white);
  transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255, 104, 0, 0.35);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--gray-300); }
.btn-outline:hover { border-color: var(--ink); background: var(--gray-50); color: var(--ink); }
.btn-white { background: var(--white); color: var(--orange); box-shadow: var(--shadow); }
.btn-white:hover { background: var(--gray-50); color: var(--orange); }
.btn-ghost { color: var(--ink); }
.btn-ghost:hover { color: var(--orange); }
.btn-lg { padding: 16px 28px; font-size: 16px; border-radius: 14px; }
.btn-block { display: flex; width: 100%; }

/* ============== HERO ============== */
.hero {
  background:
    radial-gradient(ellipse 800px 400px at 90% -10%, var(--orange-100), transparent),
    radial-gradient(ellipse 600px 300px at 10% 110%, var(--orange-50), transparent),
    var(--white);
  padding: 80px 0 96px;
  position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.hero h1 {
  font-size: clamp(36px, 5.5vw, 60px); font-weight: 800; line-height: 1.05;
  letter-spacing: -0.025em; margin-bottom: 24px; color: var(--ink);
}
.hero h1 .highlight { color: var(--orange); }
.hero .lead {
  font-size: clamp(17px, 1.4vw, 19px); color: var(--gray-700);
  margin-bottom: 32px; max-width: 540px; line-height: 1.55;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px 16px; margin-bottom: 32px;
}
.hero-trust span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; color: var(--gray-700); font-weight: 500;
  padding: 5px 12px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: 999px;
}
.hero-trust span svg { width: 14px; height: 14px; color: var(--orange); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-form {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 32px; box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
}
.hero-form h3 { font-size: 22px; margin-bottom: 6px; color: var(--ink); font-weight: 700; }
.hero-form .form-sub { color: var(--gray-600); font-size: 14px; margin-bottom: 22px; }

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px;
  color: var(--gray-700); letter-spacing: 0.005em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--gray-200);
  border-radius: 12px; font-size: 15px; font-family: inherit;
  background: var(--white); color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: 0; border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-100);
}
.form-group input::placeholder { color: var(--gray-500); }

.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--gray-700);
  line-height: 1.45; margin: 16px 0 8px;
}
.form-check input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1.5px solid var(--gray-300); border-radius: 6px;
  background: var(--white); cursor: pointer;
  position: relative; margin: 0; margin-top: 1px;
  transition: all .15s;
}
.form-check input[type="checkbox"]:hover { border-color: var(--orange); }
.form-check input[type="checkbox"]:checked { background: var(--orange); border-color: var(--orange); }
.form-check input[type="checkbox"]:checked::after {
  content: ""; position: absolute;
  left: 50%; top: 48%;
  width: 5px; height: 10px;
  border: solid var(--white); border-width: 0 2.5px 2.5px 0;
  transform: translate(-50%, -55%) rotate(45deg);
}
.form-check input[type="checkbox"]:focus { outline: 2px solid var(--orange-100); outline-offset: 2px; }
.form-check label {
  margin: 0; font-weight: 400; color: var(--gray-700);
  font-size: 13px; cursor: pointer; flex: 1;
}
.form-check label a { color: var(--orange); font-weight: 600; text-decoration: underline; }

.form-status {
  font-size: 13px; margin-top: 12px; padding: 12px 14px;
  border-radius: 10px; display: none; font-weight: 500;
}
.form-status.ok { display: block; background: #d1fae5; color: #065f46; }
.form-status.err { display: block; background: #fee2e2; color: #991b1b; }

.form-legal {
  font-size: 11.5px; color: var(--gray-500);
  margin-top: 14px; line-height: 1.5; text-align: center;
}
.form-legal a { color: var(--gray-600); text-decoration: underline; }

/* ============== SECTIONS ============== */
section { padding: 88px 0; }
section.alt { background: var(--gray-50); }
section.dark { background: var(--ink); color: var(--white); }
section.dark h2, section.dark h3 { color: var(--white); }

.section-title { text-align: center; margin-bottom: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-title .eyebrow {
  display: inline-block; color: var(--orange);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title h2 {
  font-size: clamp(30px, 4vw, 44px); font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--ink);
}
.section-title p {
  color: var(--gray-700); font-size: 18px; margin-top: 16px;
  line-height: 1.55;
}

/* ============== ICON BLOCK (reusable) ============== */
.ico-bubble {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--orange-50); color: var(--orange);
  flex-shrink: 0;
}
.ico-bubble svg { width: 28px; height: 28px; }
.ico-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  flex-shrink: 0;
}
.ico-circle svg { width: 22px; height: 22px; }

/* ============== PILLARS (3-col features) ============== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  background: var(--white); border: 1px solid var(--gray-100);
  padding: 36px 32px; border-radius: var(--radius-lg);
  transition: all .25s;
}
.pillar:hover { border-color: var(--orange-200); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pillar .ico-bubble { margin-bottom: 20px; }
.pillar h3 { font-size: 19px; margin-bottom: 10px; color: var(--ink); font-weight: 700; }
.pillar p { color: var(--gray-700); font-size: 15px; line-height: 1.6; }

/* ============== PROFILE CARDS ============== */
.profiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.profile-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: all .25s;
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink);
}
.profile-card:hover {
  border-color: var(--orange); box-shadow: var(--shadow-lg);
  transform: translateY(-3px); color: var(--ink);
}
.profile-card .ico-bubble { margin-bottom: 16px; width: 48px; height: 48px; border-radius: 12px; }
.profile-card .ico-bubble svg { width: 24px; height: 24px; }
.profile-card h3 { font-size: 17px; margin-bottom: 6px; font-weight: 700; }
.profile-card p { color: var(--gray-700); font-size: 14px; margin-bottom: 16px; flex: 1; line-height: 1.55; }
.profile-card .link {
  color: var(--orange); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.profile-card .link svg { width: 14px; height: 14px; transition: transform .2s; }
.profile-card:hover .link svg { transform: translateX(4px); }

/* ============== EQUIPMENT GRID ============== */
.equipment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.equipment {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px 22px;
  border: 1px solid var(--gray-100); text-align: center;
  transition: all .2s;
}
.equipment:hover { border-color: var(--orange-200); transform: translateY(-2px); }
.equipment .ico-bubble {
  width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 16px;
}
.equipment .ico-bubble svg { width: 32px; height: 32px; }
.equipment h4 { font-size: 15px; margin-bottom: 4px; font-weight: 700; }
.equipment .desc { font-size: 13px; color: var(--gray-600); }

/* ============== PRICING ============== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl);
  padding: 36px 30px; display: flex; flex-direction: column; position: relative;
  transition: all .25s;
}
.price-card.featured {
  border-color: var(--orange); transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}
.price-card:hover:not(.featured) { border-color: var(--orange-200); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card .badge-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white); font-size: 11px; font-weight: 700;
  padding: 6px 16px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.1em;
  box-shadow: 0 4px 12px rgba(255, 104, 0, 0.35);
}

.price-card .kit-img {
  width: 100%; height: 160px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  border-radius: var(--radius); margin-bottom: 22px;
  padding: 12px; overflow: hidden;
}
.price-card .kit-img img {
  max-height: 100%; max-width: 100%; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.06));
  transition: transform .3s ease;
}
.price-card:hover .kit-img img { transform: scale(1.04); }

.price-card h3 { font-size: 22px; margin-bottom: 4px; font-weight: 800; }
.price-card .price-type {
  font-size: 11px; color: var(--gray-600); text-transform: uppercase;
  letter-spacing: 0.12em; font-weight: 700; margin-bottom: 18px;
}
.price-card .price { font-size: 44px; font-weight: 800; color: var(--orange); line-height: 1; letter-spacing: -0.02em; }
.price-card .price-old { font-size: 17px; color: var(--gray-500); text-decoration: line-through; margin-left: 8px; font-weight: 500; }
.price-card .price-unit { font-size: 14px; color: var(--gray-600); font-weight: 500; }
.price-card .price-note { font-size: 12.5px; color: var(--gray-600); margin-top: 6px; margin-bottom: 24px; }
.price-card .features { list-style: none; margin-bottom: 28px; flex: 1; }
.price-card .features li {
  padding: 7px 0; font-size: 14.5px; display: flex; align-items: flex-start; gap: 10px;
  color: var(--gray-700); line-height: 1.5;
}
.price-card .features li::before {
  content: ""; width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5 9-11'/%3E%3C/svg%3E") center/14px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5 9-11'/%3E%3C/svg%3E") center/14px no-repeat;
}
.price-tiny { font-size: 12px; color: var(--gray-600); margin-top: 16px; text-align: center; line-height: 1.5; }

/* Battery section (standalone) */
.battery-card-wrap { display: flex; justify-content: center; }
.battery-card-wrap .price-card { max-width: 460px; width: 100%; }
.battery-card-wrap .price-card .kit-img { height: 200px; }
.battery-section { padding-top: 48px; padding-bottom: 88px; }

/* ============== FEATURES TABLE ============== */
.features-table {
  max-width: 820px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.features-table .row {
  display: grid; grid-template-columns: 1fr 100px;
  padding: 18px 26px; border-bottom: 1px solid var(--gray-100);
  align-items: center; font-size: 15px; color: var(--gray-700);
}
.features-table .row:last-child { border-bottom: 0; }
.features-table .row.head {
  background: var(--ink); color: var(--white);
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.features-table .check {
  color: var(--green); display: flex; justify-content: center;
}
.features-table .check svg { width: 22px; height: 22px; }

/* ============== TESTIMONIALS ============== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--white); border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  position: relative;
}
.testimonial .stars {
  display: inline-flex; gap: 2px; margin-bottom: 14px; color: var(--orange);
}
.testimonial .stars svg { width: 16px; height: 16px; fill: var(--orange); stroke: var(--orange); }
.testimonial p {
  font-size: 15px; color: var(--gray-700); margin-bottom: 18px;
  line-height: 1.6; font-style: italic;
}
.testimonial p::before { content: '"'; color: var(--orange); font-size: 24px; font-weight: 800; line-height: 0; margin-right: 2px; vertical-align: -8px; }
.testimonial .author { font-weight: 700; font-size: 14px; color: var(--ink); }
.testimonial .author span { color: var(--gray-600); font-weight: 400; }

.trust-bar {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  padding: 28px 24px; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100);
  background: var(--white);
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; color: var(--gray-700);
}
.trust-item strong { color: var(--orange); font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.trust-item .ico-circle { width: 36px; height: 36px; border-radius: 10px; background: var(--orange-50); color: var(--orange); }
.trust-item .ico-circle svg { width: 18px; height: 18px; }

/* ============== FAQ ============== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--orange-200); }
.faq-question {
  padding: 22px 26px; font-weight: 600; font-size: 16px;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color .2s; color: var(--ink); user-select: none;
}
.faq-question::after {
  content: ""; flex-shrink: 0; width: 24px; height: 24px;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/18px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/18px no-repeat;
  transition: transform .3s; opacity: 0.7;
}
.faq-item.open .faq-question { color: var(--orange-dark); }
.faq-item.open .faq-question::after { transform: rotate(45deg); opacity: 1; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s;
  padding: 0 26px;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 26px 22px; }
.faq-answer p { color: var(--gray-700); font-size: 15px; line-height: 1.65; }

/* ============== CTA BAND ============== */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-darker) 100%);
  color: var(--white); padding: 72px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 300px at 80% 20%, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px;
  color: var(--white); font-weight: 800; letter-spacing: -0.02em;
}
.cta-band p { font-size: 18px; opacity: 0.95; margin-bottom: 32px; }
.cta-band .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============== LOCALITIES ============== */
.localities-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px;
}
.localities-grid a {
  padding: 12px 16px; background: var(--white);
  border: 1px solid var(--gray-100); border-radius: 10px;
  color: var(--ink); font-size: 14px; font-weight: 500;
  transition: all .15s;
}
.localities-grid a:hover {
  border-color: var(--orange); color: var(--orange); background: var(--orange-50);
}

.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.related-link {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; background: var(--white);
  border: 1px solid var(--gray-100); border-radius: var(--radius);
  color: var(--ink); font-weight: 500; font-size: 14.5px;
  transition: all .2s;
}
.related-link:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.related-link svg { color: var(--orange); width: 18px; height: 18px; flex-shrink: 0; }

/* ============== BREADCRUMBS (premium, post-footer) ============== */
.breadcrumbs {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.5);
  padding: 18px 0;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.breadcrumbs .container {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 4px;
}
.breadcrumbs a {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  transition: all .15s;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--orange);
  background: rgba(255, 104, 0, 0.08);
}
.breadcrumbs > .container > span:last-child {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  padding: 4px 10px;
}
.breadcrumbs .sep {
  margin: 0 2px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}

/* ============== PROSE / CONTENT ============== */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: 32px; margin: 48px 0 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.prose h3 { font-size: 22px; margin: 36px 0 14px; font-weight: 700; color: var(--ink); }
.prose p { margin-bottom: 18px; color: var(--gray-700); font-size: 17px; line-height: 1.75; }
.prose ul, .prose ol { margin: 18px 0 22px 24px; }
.prose ul li, .prose ol li { margin-bottom: 10px; color: var(--gray-700); font-size: 17px; line-height: 1.7; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose a { color: var(--orange); text-decoration: underline; }

/* ============== BADGES ============== */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; background: var(--orange-50); color: var(--orange);
  border-radius: 999px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.02em;
}
.badge-dark { background: var(--ink); color: var(--white); }

/* ============== TRUST STRIP (pre-footer reinsurance) ============== */
.trust-strip {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-darker) 100%);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.trust-strip::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 200px at 80% 20%, rgba(255,255,255,0.08), transparent),
              radial-gradient(ellipse 500px 150px at 20% 80%, rgba(255,255,255,0.06), transparent);
  pointer-events: none;
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
  position: relative;
}
.trust-strip-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.trust-strip-icon svg { width: 28px; height: 28px; color: var(--white); }
.trust-strip-text { text-align: left; }
.trust-strip-number {
  font-size: clamp(28px, 4vw, 38px); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1;
}
.trust-strip-label {
  font-size: 14px; font-weight: 500; opacity: 0.95;
  margin-top: 4px; letter-spacing: 0.02em;
}
.trust-strip-divider {
  width: 1px; height: 48px; background: rgba(255, 255, 255, 0.2);
}
.trust-strip-rating { display: flex; align-items: center; gap: 12px; }
.trust-strip-stars { display: inline-flex; gap: 2px; }
.trust-strip-stars svg { width: 18px; height: 18px; fill: var(--white); }
.trust-strip-rating-text { font-size: 14px; font-weight: 500; }
.trust-strip-rating-text strong { font-size: 18px; font-weight: 800; display: block; line-height: 1; }
@media (max-width: 720px) {
  .trust-strip { padding: 32px 0; }
  .trust-strip-inner { gap: 18px; flex-direction: column; }
  .trust-strip-divider { width: 80px; height: 1px; }
  .trust-strip-text { text-align: center; }
}

/* ============== FOOTER (premium, 3 cols + brand seal abajo) ============== */
.footer {
  background: var(--ink); color: var(--gray-300);
  padding: 72px 0 28px; font-size: 14px;
  position: relative;
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: 72px; margin-bottom: 56px;
}
.footer-brand-col p {
  color: rgba(255, 255, 255, 0.6); font-size: 14px;
  line-height: 1.65; margin-bottom: 22px; max-width: 320px;
}
.footer-contact-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.footer-contact-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px; color: rgba(255, 255, 255, 0.7);
}
.footer-contact-list li svg {
  width: 16px; height: 16px; color: var(--orange);
  flex-shrink: 0;
}
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.7); transition: color .15s;
  text-decoration: none;
}
.footer-contact-list a:hover { color: var(--orange); }

.footer h4 {
  color: var(--white); font-size: 12px;
  margin-bottom: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.footer ul.footer-links { list-style: none; }
.footer ul.footer-links li { margin-bottom: 11px; }
.footer ul.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px; font-weight: 400;
  transition: color .15s, transform .15s;
  text-decoration: none;
  display: inline-block;
}
.footer ul.footer-links a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

/* Brand seal (logo + distribuidor autorizado) */
.footer-seal {
  display: flex; flex-direction: column; align-items: center;
  padding: 40px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.footer-seal::before {
  content: "";
  position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.8;
}
.footer-seal-logo img {
  height: 38px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 14px;
}
.footer-seal-badge {
  display: inline-flex; align-items: center; gap: 10px;
  position: relative;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 0;
}
.footer-seal-badge::before,
.footer-seal-badge::after {
  content: ""; display: block;
  width: 28px; height: 1px;
  background: var(--orange);
  opacity: 0.7;
}
.footer-seal-badge .seal-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  margin: 0 4px;
}
.footer-rights {
  text-align: center;
  padding-top: 20px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-col { grid-column: 1 / -1; text-align: center; }
  .footer-brand-col p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .footer-contact-list { align-items: center; }
}
@media (max-width: 600px) {
  .footer { padding: 56px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 40px; }
  .footer-brand-col, .footer .footer-cell { text-align: center; }
  .footer ul.footer-links { display: inline-block; text-align: left; }
  .footer-seal { padding-top: 32px; }
  .footer-seal-badge { font-size: 9.5px; letter-spacing: 0.18em; }
  .footer-seal-badge::before, .footer-seal-badge::after { width: 18px; }
}

/* ============== FLOATING CTAs ============== */
.float-btn {
  position: fixed; bottom: 24px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 14px;
  font-weight: 600; font-size: 14.5px; color: var(--white);
  text-decoration: none; white-space: nowrap;
  box-shadow: var(--shadow-xl);
  transition: transform .25s, box-shadow .25s, filter .2s;
  line-height: 1;
}
.float-btn:hover { transform: translateY(-3px); color: var(--white); filter: brightness(1.05); }
.float-btn:active { transform: translateY(-1px); }
.float-btn svg { width: 20px; height: 20px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.float-phone {
  left: 24px; background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
}
.float-wa { right: 24px; background: linear-gradient(135deg, #25d366 0%, #1da851 100%); }

@media (max-width: 600px) {
  .float-btn { bottom: 18px; padding: 14px; width: 54px; height: 54px; justify-content: center; gap: 0; border-radius: 16px; }
  .float-label { display: none; }
  .float-btn svg { width: 22px; height: 22px; }
  .float-phone { left: 18px; }
  .float-wa { right: 18px; }
}

/* ============== COOKIE BANNER (Consent Mode v2) ============== */
.cookie-banner {
  position: fixed; bottom: 18px; left: 18px; right: 18px;
  max-width: 720px; margin: 0 auto;
  background: var(--ink); color: var(--white);
  padding: 18px 22px; border-radius: 16px;
  box-shadow: var(--shadow-xl);
  z-index: 9500;
  font-size: 13.5px; line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
}
.cookie-banner.show { display: block; animation: slideUp .35s ease-out; }
.cookie-banner.hidden { display: none !important; }

.cookie-main {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 240px; color: rgba(255,255,255,0.85); font-size: 13px; line-height: 1.55; }
.cookie-banner-text a { color: var(--orange); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-banner-actions .btn {
  padding: 9px 16px; font-size: 12.5px; border-radius: 9px;
  font-weight: 600;
}
.cookie-banner-actions .btn-primary {
  background: var(--orange); color: var(--white); box-shadow: none;
}
.cookie-banner-actions .btn-primary:hover { background: var(--orange-dark); transform: none; }
.cookie-banner-actions .btn-ghost {
  background: transparent; color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
}
.cookie-banner-actions .btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); }

/* Configurar panel */
.cookie-config {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeIn .25s ease-out;
}
.cookie-config[hidden] { display: none; }
.cookie-config-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cookie-config-row:last-of-type { border-bottom: 0; margin-bottom: 6px; }
.cookie-config-info { flex: 1; }
.cookie-config-info strong {
  display: block; font-size: 13px; font-weight: 700; color: var(--white);
  margin-bottom: 2px;
}
.cookie-config-info span {
  font-size: 11.5px; color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.cookie-config-actions {
  display: flex; justify-content: flex-end; padding-top: 12px;
}
.cookie-config-actions .btn {
  padding: 9px 18px; font-size: 12.5px; font-weight: 600;
  border-radius: 9px;
}

/* Toggle switch */
.cookie-toggle {
  position: relative; display: inline-block;
  width: 38px; height: 22px; flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle span {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 999px;
  transition: background .2s;
}
.cookie-toggle span::before {
  content: ""; position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .2s;
}
.cookie-toggle input:checked + span { background: var(--orange); }
.cookie-toggle input:checked + span::before { transform: translateX(16px); }
.cookie-toggle input:disabled + span { opacity: 0.6; cursor: not-allowed; }

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 600px) {
  .cookie-banner { bottom: 90px; left: 12px; right: 12px; padding: 16px 18px; max-width: 100%; }
  .cookie-banner-actions { width: 100%; flex-wrap: wrap; }
  .cookie-banner-actions .btn { flex: 1; min-width: 90px; }
  .cookie-config-row { flex-wrap: wrap; padding: 12px 0; }
  .cookie-config-info { min-width: calc(100% - 50px); }
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1200px) {
  .header-inner { gap: 20px; }
  .nav-list > li > a { padding: 10px 12px; font-size: 14px; }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars, .profiles, .equipment-grid, .pricing-grid, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 980px) {
  .header-inner {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center;
    gap: 12px !important;
  }
  /* Hide desktop nav on mobile */
  .nav-left { display: none !important; }
  /* Show burger */
  .burger { display: inline-flex !important; }
  /* Phone CTA: icon-only on mobile */
  .header-cta { justify-self: end !important; }
  .btn-call .btn-call-text { display: none; }
  .btn-call {
    padding: 7px !important;
    width: 40px; height: 40px;
    justify-content: center;
  }
  .btn-call .btn-call-icon { background: transparent; }
  .btn-call .btn-call-icon svg { width: 18px; height: 18px; }

  /* Drawer mobile — premium */
  .nav-close {
    position: absolute; top: 14px; right: 14px;
    width: 40px; height: 40px;
    background: var(--gray-100); border: 0;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--ink);
    transition: background .15s;
    z-index: 1;
  }
  .nav-close:hover { background: var(--gray-200); }
  .nav-close svg { width: 20px; height: 20px; }
  .nav.open {
    transform: translateX(0);
    visibility: visible;
  }
  /* Drawer items */
  .nav-list {
    flex-direction: column; gap: 0; width: 100%;
    margin: 0 auto 24px;
    max-width: 480px;
    flex-shrink: 0;
  }
  .nav-list > li { width: 100%; flex-shrink: 0; }
  .nav-list > li > a {
    padding: 14px 16px;
    font-size: 17px; font-weight: 600;
    display: flex; justify-content: space-between; align-items: center;
    border-radius: 10px;
    width: 100%;
    color: var(--ink);
    transition: background .15s, color .15s;
    text-decoration: none;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-list > li:last-child > a { border-bottom: 0; }
  .nav-list > li > a::after {
    content: "›"; font-size: 22px; color: var(--gray-300);
    font-weight: 400; flex-shrink: 0;
    transition: color .15s, transform .2s;
  }
  .nav-list > li > a:hover,
  .nav-list > li > a:active {
    background: var(--orange-50);
    color: var(--orange);
    border-bottom-color: transparent;
  }
  .nav-list > li > a:hover::after,
  .nav-list > li > a:active::after {
    color: var(--orange); transform: translateX(2px);
  }

  .nav-cta {
    flex-direction: column; align-items: stretch;
    gap: 12px; padding-top: 20px; width: 100%;
    max-width: 480px; margin: 0 auto;
    border-top: 1px solid var(--gray-100);
    flex-shrink: 0;
  }
  .nav-cta .btn {
    width: 100%; justify-content: center;
    padding: 14px; font-size: 15px; gap: 10px;
    font-weight: 700;
  }
  .nav-cta .lang-switch {
    align-self: center;
    margin-top: 8px;
  }
  .nav-close {
    background: var(--gray-100) !important;
  }

  .burger {
    display: inline-flex;
    margin-left: auto;
    z-index: 100;
  }
  .trust-bar { gap: 24px; padding: 20px 16px; }

  /* Lock body scroll when nav open */
  body.nav-open { overflow: hidden; }
}
@media (max-width: 768px) {
  :root { --header-h: 58px; }
  .logo img { height: 18px; }
  .logo-sub { font-size: 5.5px; padding: 2px 6px; letter-spacing: 0.18em; }
  .hero { padding: 56px 0 72px; }
  .hero-form { padding: 24px; }
  section { padding: 64px 0; }
  .pillars, .profiles, .equipment-grid, .pricing-grid, .testimonials { grid-template-columns: 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .price-card.featured { transform: none; }
  .localities-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .hero-ctas .btn { flex: 1; min-width: 140px; }
  .section-title { margin-bottom: 36px; }
  .trust-bar { gap: 18px; }
  .trust-item { font-size: 13px; }
  .trust-item strong { font-size: 18px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .hero .lead { font-size: 16px; }
  .section-title h2 { font-size: 26px; }
}

/* ============== UTILITIES ============== */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }

/* ============== LANDING /alarmas-hogar/ · HERO PROMO ============== */
.hero-promo {
  background:
    radial-gradient(ellipse 700px 400px at 95% 0%, var(--orange-100), transparent 60%),
    radial-gradient(ellipse 500px 300px at 0% 100%, var(--orange-50), transparent 60%),
    var(--white);
  padding: 64px 0 80px;
  position: relative; overflow: hidden;
}
.hero-promo-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; align-items: center;
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
}
.hero-promo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--orange);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.hero-promo-badge::before {
  content: ""; width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 104, 0, 0.6);
  animation: dotPulse 1.6s ease-out infinite;
}
@keyframes dotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 104, 0, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(255, 104, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 104, 0, 0); }
}
.hero-promo h1 {
  font-size: clamp(46px, 7.5vw, 84px); font-weight: 900;
  line-height: 0.96; letter-spacing: -0.035em;
  color: var(--ink); margin-bottom: 14px;
}
.hero-promo h1 .year {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-darker) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-promo-sub {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--gray-700); margin-bottom: 32px;
  max-width: 520px; line-height: 1.5; font-weight: 500;
}
.hero-promo-price {
  display: flex; align-items: baseline; flex-wrap: wrap;
  gap: 14px; margin-bottom: 32px;
  padding-bottom: 28px; border-bottom: 1px solid var(--gray-200);
}
.hero-promo-price .strike {
  font-size: 22px; text-decoration: line-through;
  color: var(--gray-500); font-weight: 500;
}
.hero-promo-price .num {
  font-size: clamp(72px, 11vw, 124px); font-weight: 900;
  color: var(--orange); line-height: 0.95;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}
.hero-promo-price .unit {
  font-size: 16px; color: var(--gray-600);
  font-weight: 600; letter-spacing: 0.02em;
}
.hero-promo-price .term {
  display: block; flex-basis: 100%;
  font-size: 13px; color: var(--gray-600);
  font-weight: 500; margin-top: -10px;
}
.hero-promo-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero-promo-ctas .btn {
  padding: 16px 28px; font-size: 15px; font-weight: 700;
  border-radius: 14px;
}
.hero-promo-ctas .btn-primary {
  box-shadow: 0 8px 24px rgba(255, 104, 0, 0.32);
}
.hero-promo-ctas .btn-primary:hover {
  box-shadow: 0 12px 28px rgba(255, 104, 0, 0.42);
  transform: translateY(-2px);
}
.hero-promo-trust {
  display: flex; align-items: center; gap: 16px;
  font-size: 13.5px; color: var(--gray-700);
  font-weight: 500; flex-wrap: wrap;
}
.hero-promo-trust > div {
  display: flex; align-items: center; gap: 8px;
}
.hero-promo-trust svg { color: var(--orange); flex-shrink: 0; }
.hero-promo-trust strong { color: var(--ink); font-weight: 700; }

/* Image side */
.hero-promo-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 32px 64px -12px rgba(20, 24, 31, 0.22),
    0 12px 24px -8px rgba(20, 24, 31, 0.12);
  aspect-ratio: 4 / 3.2;
}
.hero-promo-visual img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-promo-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255, 104, 0, 0) 50%, rgba(255, 104, 0, 0.18));
  pointer-events: none;
}

/* Floating chip on image (top-left corner) */
.hero-promo-chip {
  position: absolute; top: 22px; left: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink); font-size: 12px; font-weight: 700;
  padding: 9px 14px; border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(20, 24, 31, 0.16);
  z-index: 2;
}
.hero-promo-chip::before {
  content: ""; width: 8px; height: 8px;
  background: #10b981; border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

/* Floating stats card (bottom-right of image) */
.hero-promo-stat {
  position: absolute; bottom: 22px; right: 22px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 12px 32px rgba(20, 24, 31, 0.18);
  z-index: 2;
}
.hero-promo-stat-num {
  font-size: 22px; font-weight: 800; color: var(--orange);
  line-height: 1; letter-spacing: -0.02em;
}
.hero-promo-stat-label {
  font-size: 11.5px; color: var(--gray-700);
  font-weight: 500; line-height: 1.3;
}

@media (max-width: 1024px) {
  .hero-promo-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-promo-visual { aspect-ratio: 16 / 10; max-width: 640px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .hero-promo { padding: 32px 0 48px; }
  .hero-promo-grid { gap: 28px; padding: 0 18px; }
  .hero-promo h1 { font-size: 42px; }
  .hero-promo-price { gap: 10px; padding-bottom: 22px; margin-bottom: 24px; }
  .hero-promo-price .num { font-size: 80px; }
  .hero-promo-ctas .btn { flex: 1; min-width: 140px; }
  .hero-promo-chip { top: 14px; left: 14px; font-size: 11px; padding: 7px 12px; }
  .hero-promo-stat { bottom: 14px; right: 14px; padding: 10px 14px; gap: 10px; }
  .hero-promo-stat-num { font-size: 18px; }
  .hero-promo-stat-label { font-size: 10.5px; }
}

/* ============== LANDING /alarmas-hogar/ · LOGO STRIP ============== */
body.landing-no-header { padding-top: 0; }
.logo-strip {
  background: var(--ink);
  padding: 12px 20px;
  text-align: center;
  line-height: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.logo-strip::after {
  content: ""; position: absolute; left: 50%; bottom: -1px;
  transform: translateX(-50%);
  width: 56px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.7;
}
.logo-strip-link {
  display: inline-block; text-decoration: none;
  transition: opacity .2s;
}
.logo-strip-link:hover { opacity: 0.8; }
.logo-strip img {
  height: 28px; width: auto; display: inline-block;
  filter: drop-shadow(0 2px 6px rgba(255, 104, 0, 0.25));
}
@media (max-width: 600px) {
  .logo-strip { padding: 10px 16px; }
  .logo-strip img { height: 24px; }
}

/* Showcase image grid (kits) */
.kits-showcase {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.kit-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 24px;
  text-align: center; transition: all .25s;
}
.kit-card:hover { border-color: var(--orange-200); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.kit-card-img {
  height: 180px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  border-radius: var(--radius); margin-bottom: 18px; padding: 12px;
}
.kit-card-img img {
  max-height: 100%; max-width: 100%; object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.06));
}
.kit-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.kit-card p { font-size: 14px; color: var(--gray-700); margin-bottom: 14px; line-height: 1.5; }
.kit-card .kit-price { color: var(--orange); font-size: 22px; font-weight: 800; line-height: 1; }
.kit-card .kit-price small { font-size: 13px; color: var(--gray-600); font-weight: 500; }
@media (max-width: 900px) { .kits-showcase { grid-template-columns: 1fr; } }

/* Prevention tips */
.tips-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 1080px; margin: 0 auto;
}
.tip-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: all .2s;
}
.tip-card:hover { border-color: var(--orange-200); }
.tip-card .ico-bubble { flex-shrink: 0; }
.tip-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.tip-card p { font-size: 14.5px; color: var(--gray-700); line-height: 1.6; }
@media (max-width: 700px) { .tips-grid { grid-template-columns: 1fr; gap: 14px; } .tip-card { padding: 22px; gap: 14px; } }

/* Number badge for steps */
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-weight: 800; font-size: 22px;
  box-shadow: 0 6px 16px rgba(255, 104, 0, 0.3);
  margin: 0 auto 20px;
}

/* ============== 404 PAGE ============== */
.error-page {
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center; justify-content: center;
  padding: 60px 20px;
}
.error-card { text-align: center; max-width: 540px; }
.error-card .code {
  font-size: clamp(80px, 14vw, 140px); font-weight: 900;
  color: var(--orange); line-height: 1; letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.error-card h1 { font-size: clamp(28px, 4vw, 36px); margin-bottom: 16px; color: var(--ink); }
.error-card p { color: var(--gray-700); font-size: 17px; margin-bottom: 28px; }
.error-card .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============== THANK YOU PAGE ============== */
.thanks-page {
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center; justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(180deg, var(--orange-50) 0%, var(--white) 60%);
}
.thanks-card {
  text-align: center; max-width: 580px; background: var(--white);
  padding: 56px 40px; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl); border: 1px solid var(--gray-100);
}
.thanks-card .check-circle {
  width: 80px; height: 80px; margin: 0 auto 24px;
  background: var(--green); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.thanks-card .check-circle svg { width: 44px; height: 44px; stroke-width: 2.5; }
.thanks-card h1 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 14px; color: var(--ink); }
.thanks-card p { color: var(--gray-700); font-size: 17px; margin-bottom: 12px; line-height: 1.6; }
.thanks-card .quick-actions {
  margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ===== Kits premium (segurma24h) ===== */
.kitsx{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;max-width:860px;margin:0 auto;align-items:stretch;}
@media(max-width:760px){.kitsx{grid-template-columns:1fr;max-width:430px;}}
.kitx{position:relative;display:flex;flex-direction:column;background:#fff;border:1px solid #e7e9ee;border-radius:20px;overflow:hidden;box-shadow:0 18px 50px -30px rgba(16,20,27,.4);transition:transform .2s ease,box-shadow .2s ease;}
.kitx:hover{transform:translateY(-4px);box-shadow:0 28px 60px -28px rgba(16,20,27,.45);}
.kitx--featured{border:2px solid #ff6800;box-shadow:0 24px 60px -26px rgba(255,104,0,.5);}
.kitx-badge{position:absolute;top:16px;right:16px;z-index:2;background:#ff6800;color:#fff;font-size:.72rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase;padding:6px 12px;border-radius:999px;box-shadow:0 6px 14px -4px rgba(255,104,0,.6);}
.kitx-media{background:linear-gradient(135deg,#fff6ee,#ffe9d6);padding:26px;text-align:center;}
.kitx-media img{max-width:190px;width:100%;height:auto;}
.kitx-body{padding:24px 24px 26px;display:flex;flex-direction:column;flex:1;}
.kitx-name{font-size:1.3rem;font-weight:800;color:#10141b;letter-spacing:-.01em;}
.kitx-tagline{font-size:.92rem;color:#6b7280;margin-top:3px;min-height:2.4em;}
.kitx-price{display:flex;align-items:baseline;gap:7px;margin:14px 0 2px;}
.kitx-amount{font-size:2.2rem;font-weight:900;color:#ff6800;letter-spacing:-.02em;}
.kitx-period{font-size:.85rem;color:#6b7280;font-weight:600;}
.kitx-feats{list-style:none;margin:14px 0 0;padding:0;display:flex;flex-direction:column;gap:10px;flex:1;}
.kitx-feats li{position:relative;padding-left:28px;font-size:.92rem;color:#374151;line-height:1.4;}
.kitx-feats li::before{content:"";position:absolute;left:0;top:1px;width:18px;height:18px;border-radius:50%;background:#dcfce7 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;}
.kitx-feats li strong{color:#10141b;font-weight:700;}
.kitx-cta{margin-top:20px;text-align:center;background:#ff6800;color:#fff;font-weight:800;font-size:1rem;text-decoration:none;padding:14px;border-radius:12px;transition:background .15s ease,transform .15s ease;box-shadow:0 12px 24px -10px rgba(255,104,0,.55);}
.kitx-cta:hover{background:#cc5200;transform:translateY(-1px);}
.kitx-note{margin-top:10px;text-align:center;font-size:.78rem;color:#9ca3af;}
/* Navegación cruzada en el footer */
.footer-cross{text-align:center;margin:0 0 14px;font-size:.86rem;color:#9ca3af;}
.footer-cross a{color:inherit;text-decoration:none;font-weight:700;}
.footer-cross a:hover{color:#ff6800;}
.footer-cross .sep{opacity:.5;}

/* Precio dual (1er año + 2º año) y confianza */
.kitx-price{margin-bottom:0;}
.kitx-pricenote{font-size:.82rem;color:#9ca3af;margin:3px 0 0;}
.kitx-pricenote strong{color:#6b7280;font-weight:700;}
.form-trust{display:flex;align-items:center;justify-content:center;gap:7px;margin:12px 0 0;font-size:.8rem;color:#6b7280;font-weight:600;text-align:center;line-height:1.4;}
.form-trust svg{flex:0 0 auto;width:14px;height:14px;color:#16a34a;}

/* ===== Franja de garantías ===== */
.guarantee-bar{background:linear-gradient(135deg,#12151c,#1d2230);}
.guarantee-bar .gb-inner{max-width:1100px;margin:0 auto;padding:22px 20px;display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
@media(max-width:760px){.guarantee-bar .gb-inner{grid-template-columns:1fr 1fr;gap:18px 14px;}}
.gb-item{display:flex;align-items:center;gap:13px;}
.gb-ico{flex:0 0 auto;width:44px;height:44px;border-radius:12px;background:rgba(255,104,0,.16);color:#ff8a3d;display:flex;align-items:center;justify-content:center;}
.gb-ico svg{width:22px;height:22px;}
.gb-tx b{display:block;color:#fff;font-size:.96rem;font-weight:800;line-height:1.15;}
.gb-tx span{font-size:.79rem;color:#9aa1ad;}

/* ===== Cómo funciona (3 pasos) ===== */
.howto{padding:66px 0;background:#fff;}
.howto-inner{max-width:1040px;margin:0 auto;padding:0 20px;}
.howto-head{text-align:center;margin-bottom:44px;}
.howto-head .eyebrow{display:inline-block;font-size:.76rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:#cc5200;margin-bottom:10px;}
.howto-head h2{font-size:clamp(1.7rem,4vw,2.4rem);font-weight:800;letter-spacing:-.02em;color:#10141b;margin:0;}
.howto-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;position:relative;}
@media(max-width:780px){.howto-steps{grid-template-columns:1fr;gap:30px;max-width:420px;margin:0 auto;}}
.howto-step{text-align:center;position:relative;}
.howto-step:not(:last-child)::after{content:"";position:absolute;top:32px;left:calc(50% + 42px);right:calc(-50% + 42px);height:2px;background:repeating-linear-gradient(90deg,#ffd9b5 0 8px,transparent 8px 14px);}
@media(max-width:780px){.howto-step:not(:last-child)::after{display:none;}}
.howto-num{width:64px;height:64px;margin:0 auto 18px;border-radius:50%;background:linear-gradient(135deg,#ff7a18,#cc5200);color:#fff;font-size:1.5rem;font-weight:900;display:flex;align-items:center;justify-content:center;box-shadow:0 14px 30px -10px rgba(255,104,0,.6);position:relative;z-index:1;}
.howto-step h3{font-size:1.18rem;font-weight:800;color:#10141b;margin:0 0 8px;}
.howto-step p{font-size:.95rem;color:#6b7280;line-height:1.55;max-width:300px;margin:0 auto;}

/* ===== Sello "sin compromiso" en el formulario ===== */
.form-seal{display:flex;align-items:center;gap:10px;background:#f0fdf4;border:1px solid #bbf7d0;border-radius:12px;padding:11px 14px;margin:0 0 16px;}
.form-seal svg{flex:0 0 auto;width:26px;height:26px;color:#16a34a;}
.form-seal span{font-size:.84rem;color:#15803d;line-height:1.35;}
.form-seal b{font-weight:800;}

/* ===== Sección "Cómo te protegemos" — rediseño premium ===== */
.tips-grid{grid-template-columns:repeat(3,1fr);gap:22px;max-width:1080px;margin:0 auto;}
@media(max-width:900px){.tips-grid{grid-template-columns:repeat(2,1fr);gap:18px;}}
@media(max-width:600px){.tips-grid{grid-template-columns:1fr;gap:16px;}}
.tips-grid .tip-card{
  position:relative;display:flex;flex-direction:column;align-items:flex-start;gap:0;
  padding:30px 26px;border:1px solid #eceef2;border-radius:18px;background:#fff;
  box-shadow:0 12px 32px -24px rgba(16,20,27,.5);overflow:hidden;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.tips-grid .tip-card::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,#ff7a18,#cc5200);transform:scaleX(0);transform-origin:left;transition:transform .28s ease;}
.tips-grid .tip-card:hover{transform:translateY(-6px);box-shadow:0 28px 54px -26px rgba(16,20,27,.45);border-color:#ffd9b5;}
.tips-grid .tip-card:hover::before{transform:scaleX(1);}
.tips-grid .ico-bubble{width:56px;height:56px;border-radius:16px;margin:0 0 18px;
  background:linear-gradient(135deg,#fff1e6,#ffdcbf);color:#ff6800;
  box-shadow:inset 0 0 0 1px rgba(255,104,0,.14),0 8px 18px -10px rgba(255,104,0,.4);
  transition:transform .22s ease;}
.tips-grid .tip-card:hover .ico-bubble{transform:scale(1.07) rotate(-4deg);}
.tips-grid .ico-bubble svg{width:27px;height:27px;}
.tips-grid .tip-card h3{font-size:1.1rem;font-weight:800;color:#10141b;margin:0 0 9px;letter-spacing:-.01em;line-height:1.25;}
.tips-grid .tip-card p{font-size:.94rem;color:#5b626e;line-height:1.6;margin:0;}

/* ===== Sección del problema — premium (acento alerta) ===== */
.pillars{grid-template-columns:repeat(3,1fr);gap:22px;max-width:1080px;margin:0 auto;}
@media(max-width:900px){.pillars{grid-template-columns:repeat(2,1fr);gap:18px;}}
@media(max-width:600px){.pillars{grid-template-columns:1fr;gap:16px;}}
.pillars .pillar{position:relative;background:#fff;border:1px solid #eceef2;border-radius:18px;padding:34px 28px;box-shadow:0 12px 32px -24px rgba(16,20,27,.5);overflow:hidden;transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;}
.pillars .pillar::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#ef4444,#ff6800);transform:scaleX(0);transform-origin:left;transition:transform .28s ease;}
.pillars .pillar:hover{transform:translateY(-6px);box-shadow:0 28px 54px -26px rgba(16,20,27,.45);border-color:#fecaca;}
.pillars .pillar:hover::before{transform:scaleX(1);}
.pillars .pillar .ico-bubble{width:56px;height:56px;border-radius:16px;margin-bottom:18px;background:linear-gradient(135deg,#fff1f0,#ffe2dd);color:#ef4444;box-shadow:inset 0 0 0 1px rgba(239,68,68,.14),0 8px 18px -10px rgba(239,68,68,.35);transition:transform .22s ease;}
.pillars .pillar:hover .ico-bubble{transform:scale(1.07) rotate(-4deg);}
.pillars .pillar .ico-bubble svg{width:27px;height:27px;}
.pillars .pillar h3{font-size:1.15rem;font-weight:800;color:#10141b;margin-bottom:10px;letter-spacing:-.01em;}
.pillars .pillar p{color:#5b626e;font-size:.95rem;line-height:1.6;}

/* ===== Footer soluciones con iconos ===== */
.footer-cross{text-align:center;margin:0 0 18px;}
.footer-cross .fc-label{display:block;font-size:.76rem;text-transform:uppercase;letter-spacing:.09em;color:#9ca3af;font-weight:800;margin-bottom:13px;}
.fc-icons{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;}
.fc-ico{position:relative;display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:14px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14);color:#cbd2da;transition:transform .18s ease,background .18s ease,color .18s ease,box-shadow .18s ease;}
.fc-ico svg{width:22px;height:22px;}
.fc-ico:hover{background:#ff6800;border-color:#ff6800;color:#fff;transform:translateY(-3px);box-shadow:0 12px 22px -8px rgba(255,104,0,.6);}
.fc-ico::after{content:attr(data-tip);position:absolute;bottom:calc(100% + 9px);left:50%;transform:translateX(-50%);background:#10141b;color:#fff;font-size:.72rem;font-weight:700;padding:5px 10px;border-radius:8px;white-space:nowrap;opacity:0;pointer-events:none;transition:opacity .18s ease;box-shadow:0 6px 16px -6px rgba(0,0,0,.5);}
.fc-ico:hover::after{opacity:1;}

/* ===== Sección de componentes / elementos ===== */
.components{padding:66px 0;background:#f5f6f9;}
.components-inner{max-width:1120px;margin:0 auto;padding:0 20px;}
.components-head{text-align:center;margin-bottom:42px;}
.components-head .eyebrow{display:inline-block;font-size:.76rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:#cc5200;margin-bottom:10px;}
.components-head h2{font-size:clamp(1.7rem,4vw,2.4rem);font-weight:800;letter-spacing:-.02em;color:#10141b;margin:0 0 10px;}
.components-head p{color:#6b7280;font-size:1rem;max-width:600px;margin:0 auto;line-height:1.55;}
.comp-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
@media(max-width:920px){.comp-grid{grid-template-columns:repeat(3,1fr);}}
@media(max-width:680px){.comp-grid{grid-template-columns:repeat(2,1fr);gap:14px;}}
.comp-card{background:#fff;border:1px solid #e7e9ee;border-radius:16px;padding:18px;display:flex;flex-direction:column;box-shadow:0 10px 28px -22px rgba(16,20,27,.5);transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;}
.comp-card:hover{transform:translateY(-5px);box-shadow:0 24px 46px -26px rgba(16,20,27,.4);border-color:#ffd9b5;}
.comp-img{background:linear-gradient(135deg,#fafbfc,#eef1f5);border-radius:12px;padding:16px;text-align:center;margin-bottom:14px;}
.comp-img img{height:100px;width:auto;max-width:100%;object-fit:contain;display:inline-block;}
.comp-name{font-size:1rem;font-weight:800;color:#10141b;margin-bottom:6px;line-height:1.2;}
.comp-desc{font-size:.86rem;color:#5b626e;line-height:1.5;flex:1;}
.comp-price{margin-top:13px;padding-top:12px;border-top:1px solid #f0f2f5;font-size:.92rem;font-weight:800;color:#ff6800;}
.comp-price small{display:block;color:#9ca3af;font-weight:600;font-size:.72rem;margin-top:1px;}
.components-note{text-align:center;font-size:.8rem;color:#9ca3af;margin-top:26px;max-width:760px;margin-left:auto;margin-right:auto;line-height:1.5;}

/* ===== Formulario "te llamamos" — premium y confiable ===== */
.hero-form{position:relative;overflow:hidden;border-radius:20px!important;border:1px solid #e7e9ee!important;
  box-shadow:0 26px 64px -30px rgba(16,20,27,.5),0 4px 14px -8px rgba(16,20,27,.08)!important;padding:30px!important;}
.hero-form::before{content:"";position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#ff7a18,#cc5200);}
.hero-form h2#lead,.hero-form h2{font-size:1.5rem;font-weight:800;color:#10141b;margin-bottom:6px;letter-spacing:-.01em;}
.hero-form .form-sub{color:#6b7280;font-size:.95rem;margin-bottom:16px;}
.hero-form .form-group{margin-bottom:14px;}
.hero-form .form-group label,.hero-form .form-label-static{font-weight:700;color:#374151;font-size:.86rem;margin-bottom:6px;display:block;}
.hero-form input[type="tel"],.hero-form input[type="text"]:not([name="_honey"]){
  width:100%;font-size:1rem;color:#10141b;border:1.5px solid #e1e4ea;border-radius:12px;padding:14px 15px;background:#fcfcfd;
  transition:border-color .18s ease,box-shadow .18s ease,background .18s ease;}
.hero-form input[type="tel"]::placeholder,.hero-form input[type="text"]::placeholder{color:#aeb4bf;}
.hero-form input[type="tel"]:hover,.hero-form input[type="text"]:not([name="_honey"]):hover{border-color:#cdd2db;}
.hero-form input[type="tel"]:focus,.hero-form input[type="text"]:focus{outline:none;border-color:#ff6800;background:#fff;box-shadow:0 0 0 4px rgba(255,104,0,.12);}
.hero-form button[type="submit"]{
  background:linear-gradient(135deg,#ff7a18,#ff6800)!important;border:0!important;color:#fff!important;
  font-weight:800!important;font-size:1.05rem!important;padding:16px!important;border-radius:13px!important;width:100%;cursor:pointer;
  box-shadow:0 14px 30px -10px rgba(255,104,0,.6)!important;transition:transform .15s ease,box-shadow .15s ease,filter .15s ease;margin-top:4px;}
.hero-form button[type="submit"]:hover{transform:translateY(-2px);filter:brightness(1.04);box-shadow:0 22px 40px -10px rgba(255,104,0,.72)!important;}
.hero-form button[type="submit"]:active{transform:translateY(0);}
.hero-form .form-check{display:flex;align-items:flex-start;gap:9px;font-size:.84rem;color:#5b626e;line-height:1.45;margin:4px 0 6px;}
.hero-form .form-check input{margin-top:2px;accent-color:#ff6800;flex:0 0 auto;}

/* ===== Componentes — rediseño premium v2 ===== */
.components{background:linear-gradient(180deg,#f6f7fa 0%,#eef0f5 100%);}
.components-head h2{background:linear-gradient(90deg,#10141b,#3a4252);-webkit-background-clip:text;background-clip:text;}
.comp-grid{gap:22px;}
.comp-card{position:relative;background:#fff;border:1px solid #e9ebef;border-radius:18px;padding:16px 16px 18px;display:flex;flex-direction:column;overflow:hidden;
  box-shadow:0 8px 24px -20px rgba(16,20,27,.5);
  transition:transform .28s cubic-bezier(.2,.7,.3,1),box-shadow .28s ease,border-color .28s ease;}
.comp-card:hover{transform:translateY(-8px);border-color:#ffc78e;
  box-shadow:0 32px 54px -28px rgba(255,104,0,.45),0 10px 26px -18px rgba(16,20,27,.4);}
.comp-img{position:relative;background:radial-gradient(130px 130px at 50% 40%,#ffffff,#eceff4);border-radius:14px;padding:24px 16px;text-align:center;margin-bottom:16px;overflow:hidden;}
.comp-img::before{content:"";position:absolute;inset:0;margin:auto;width:160px;height:160px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,104,0,.16),transparent 68%);opacity:0;transition:opacity .35s ease;}
.comp-card:hover .comp-img::before{opacity:1;}
.comp-img img{position:relative;z-index:1;height:108px;width:auto;max-width:100%;object-fit:contain;display:inline-block;
  filter:drop-shadow(0 10px 16px rgba(16,20,27,.14));transition:transform .35s cubic-bezier(.2,.7,.3,1);}
.comp-card:hover .comp-img img{transform:scale(1.1) translateY(-3px);}
.comp-name{font-size:1.04rem;font-weight:800;color:#10141b;margin-bottom:6px;letter-spacing:-.01em;line-height:1.2;}
.comp-desc{font-size:.86rem;color:#5b626e;line-height:1.5;flex:1;}
.comp-price{margin-top:14px;padding-top:0;border-top:0;align-self:flex-start;display:inline-flex;flex-direction:column;
  background:#fff6ee;border:1px solid #ffdcbf;color:#cc5200;font-weight:800;font-size:.95rem;padding:8px 13px;border-radius:11px;line-height:1.15;}
.comp-price small{color:#b5896a;font-weight:600;font-size:.7rem;margin-top:1px;}

/* ===== Componentes v3 — micro-interacciones de élite ===== */
/* Aparición al hacer scroll (solo si el JS activa .reveal-on; fallback: visibles) */
.comp-grid.reveal-on .comp-card{opacity:0;transition:opacity .6s ease,transform .28s cubic-bezier(.2,.7,.3,1),box-shadow .28s ease,border-color .28s ease;}
.comp-grid.reveal-on .comp-card.in-view{opacity:1;}
@media (prefers-reduced-motion: reduce){.comp-grid.reveal-on .comp-card{opacity:1;}}
/* Destello que cruza el producto al hover */
.comp-img::after{content:"";position:absolute;top:0;left:-80%;width:55%;height:100%;z-index:2;pointer-events:none;
  background:linear-gradient(100deg,transparent,rgba(255,255,255,.6),transparent);transform:skewX(-18deg);transition:left .65s ease;}
.comp-card:hover .comp-img::after{left:135%;}
/* Línea de acento bajo el nombre */
.comp-name{position:relative;padding-bottom:9px;}
.comp-name::after{content:"";position:absolute;left:0;bottom:0;width:24px;height:3px;border-radius:3px;
  background:linear-gradient(90deg,#ff7a18,#cc5200);opacity:.45;transition:width .3s ease,opacity .3s ease;}
.comp-card:hover .comp-name::after{width:46px;opacity:1;}
/* El precio "sube" un pelín al hover */
.comp-price{transition:transform .25s ease,background .25s ease,border-color .25s ease;}
.comp-card:hover .comp-price{transform:translateY(-2px);background:#ffeede;border-color:#ffc99b;}

/* ===== Refuerzo responsive móvil (todas las landings) ===== */
@media (max-width:600px){
  /* Hero: el precio era demasiado grande */
  .hero-promo-price .num{font-size:58px!important;}
  .hero-promo-price .strike{font-size:19px;}
  .hero-promo h1{font-size:clamp(30px,9vw,40px)!important;line-height:1.04;}
  .hero-promo-sub{font-size:.98rem;}
  .promo-deadline{font-size:.85rem;}
  /* Aire en las secciones nuevas */
  .components{padding:46px 0;}
  .howto{padding:46px 0;}
  .components-head h2,.howto-head h2,.components-head h2{font-size:1.55rem;}
  /* Garantías: más compactas */
  .guarantee-bar .gb-inner{padding:18px 16px;gap:14px 12px;}
  .gb-ico{width:38px;height:38px;}
  .gb-ico svg{width:19px;height:19px;}
  .gb-tx b{font-size:.86rem;}
  .gb-tx span{font-size:.72rem;}
  /* Componentes: foto y textos ajustados */
  .comp-img{padding:18px 12px;}
  .comp-img img{height:84px;}
  .comp-name{font-size:.96rem;}
  .comp-desc{font-size:.83rem;}
  /* Kits */
  .kitx-amount{font-size:2rem;}
  .kitx-name{font-size:1.18rem;}
  /* Tablas (páginas legales): desplazables en vez de desbordar */
  .prose table{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;}
  /* Nada se sale del ancho */
  img,table,iframe,video{max-width:100%;}
  .container{padding-left:18px;padding-right:18px;}
}
@media (max-width:380px){
  .hero-promo-price .num{font-size:50px!important;}
  .comp-grid{gap:12px;}
  .gb-tx span{display:none;}
}

/* ===== Componentes — compactado fino para móvil ===== */
@media (max-width:600px){
  .comp-grid{grid-template-columns:1fr 1fr;gap:12px;}
  .comp-card{padding:12px 12px 14px;border-radius:14px;}
  .comp-img{padding:14px 10px;margin-bottom:10px;border-radius:11px;}
  .comp-img img{height:58px!important;}
  .comp-img::before{width:110px;height:110px;}
  .comp-name{font-size:.86rem;padding-bottom:7px;margin-bottom:4px;line-height:1.2;}
  .comp-name::after{width:18px;height:2px;}
  .comp-desc{font-size:.77rem;line-height:1.4;}
  .comp-price{font-size:.8rem;padding:6px 10px;margin-top:10px;}
  .comp-price small{font-size:.65rem;}
  .components-head h2{font-size:1.4rem;}
  .components-head p{font-size:.9rem;}
}
@media (max-width:380px){
  .comp-grid{gap:10px;}
  .comp-img img{height:52px!important;}
  .comp-desc{font-size:.74rem;}
}

/* ===== Correcciones auditoría final ===== */
/* Eyebrows: un solo naranja (mejor contraste AA) en todas las secciones */
.section-title .eyebrow,.howto-head .eyebrow,.components-head .eyebrow{color:#cc5200;}
/* Inputs a 16px para evitar el zoom automático de iOS */
.form-group input,.form-group select,.form-group textarea{font-size:16px;}
/* Unificar colapso de rejillas en tablet (coherencia entre secciones) */
@media(max-width:768px){.pillars,.tips-grid{grid-template-columns:1fr!important;}}
/* Precio del hero en móviles estrechos: que nunca desborde */
@media(max-width:414px){.hero-promo-price{gap:6px 10px;}.hero-promo-price .num{font-size:clamp(40px,13vw,52px)!important;}}

/* Logo oficial de WhatsApp en el botón flotante (relleno, no contorno) */
.float-wa svg{fill:currentColor!important;stroke:none!important;width:26px;height:26px;}
@media(max-width:600px){.float-wa svg{width:30px;height:30px;}}
