/* =================================================================
   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;
}
