/* ==========================================================
   AUXILIO SOS LANDING
========================================================== */

:root {
  --red: #c62828;
  --red-dark: #9f171d;
  --yellow: #eec116;
  --black: #000000;
  --dark: #24272d;
  --muted: #5f6672;
  --soft: #f5f6f7;
  --off-white: #f2f3f5;
  --white: #ffffff;
  --line: rgba(0, 0, 0, 0.1);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 54px rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.08);
  --font-main: "Source Sans 3", Arial, Helvetica, sans-serif;
  --container: 1440px;
  --header-height: 76px;
  --transition: 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

img,
svg,
picture,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button {
  font: inherit;
  cursor: pointer;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

section {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.container {
  width: min(100% - 56px, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  width: 100%;
  padding-block: clamp(88px, 8vw, 140px);
}

/* HEADER */

.site-header {
  width: 100%;
  min-height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--red);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

.header-shell {
  width: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: stretch;
  background: var(--red);
}

.brand {
  width: 235px;
  min-height: var(--header-height);
  padding: 12px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--soft);
  text-decoration: none;
}

.brand-logo {
  width: 100%;
  max-width: 162px;
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.main-nav a,
.nav-group-link {
  min-height: var(--header-height);
  padding-inline: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: background-color var(--transition), color var(--transition);
}

.main-nav a:hover,
.nav-group:hover .nav-group-link {
  background: rgba(0, 0, 0, 0.12);
}

.nav-group {
  position: relative;
  display: flex;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding: 8px;
  display: none;
  background: var(--black);
  box-shadow: var(--shadow);
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  display: grid;
}

.nav-dropdown a {
  min-height: 44px;
  justify-content: flex-start;
  padding: 12px 14px;
  border-radius: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
}

.main-nav .nav-cta {
  min-width: 220px;
  background: var(--black);
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 900;
}

.main-nav .nav-cta:hover {
  background: var(--yellow);
  color: var(--black);
}

.menu-toggle {
  display: none;
  width: 72px;
  min-height: var(--header-height);
  margin-left: auto;
  border: 0;
  background: var(--black);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.menu-toggle span {
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* COMPONENTES */

.eyebrow {
  width: fit-content;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(198, 40, 40, 0.1);
  color: var(--red);
  box-shadow: inset 0 0 0 1px rgba(198, 40, 40, 0.06);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--yellow);
}

.eyebrow.dark {
  background: rgba(198, 40, 40, 0.28);
  color: #ff6b6b;
}

.btn {
  min-height: 58px;
  padding: 16px 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  transition: transform var(--transition), background-color var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(198, 40, 40, 0.28);
}

.btn-primary:hover {
  background: var(--black);
}

.btn-secondary {
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: var(--white);
  color: var(--black);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  border-color: rgba(0, 0, 0, 0.45);
  background: #f8f8f8;
}

.btn-dark,
.dark-secondary {
  background: var(--black);
  color: var(--white);
}

.final-cta .dark-secondary:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 14px 30px rgba(238, 193, 22, 0.24);
}

.section-heading h2,
.center-heading h2,
.pricing-header h2 {
  max-width: 1050px;
  font-size: clamp(46px, 5.2vw, 98px);
  line-height: 0.94;
  font-weight: 900;
}

.section-lead {
  max-width: 720px;
  margin-top: 24px;
  color: var(--dark);
  font-size: clamp(20px, 1.35vw, 25px);
  line-height: 1.4;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}

.split-grid.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.section-copy {
  max-width: 820px;
  padding-top: 50px;
}

.section-copy p {
  margin-bottom: 22px;
  color: var(--dark);
  font-size: clamp(20px, 1.35vw, 26px);
  line-height: 1.42;
}

.center-heading {
  max-width: 1040px;
  margin-inline: auto;
  text-align: center;
}

.center-heading p:not(.eyebrow) {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(20px, 1.4vw, 25px);
  line-height: 1.4;
}

/* HERO */

.hero {
  min-height: calc(100vh - var(--header-height));
  padding-block: clamp(58px, 6.5vw, 110px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.86) 48%, rgba(255, 255, 255, 0.38) 100%),
    radial-gradient(circle at 86% 18%, rgba(198, 40, 40, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(42px, 5vw, 90px);
  align-items: center;
}

.hero-content {
  max-width: 880px;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(50px, 5.5vw, 100px);
  line-height: 0.93;
  font-weight: 900;
}

.hero-text {
  max-width: 760px;
  margin-top: 26px;
  color: var(--dark);
  font-size: clamp(20px, 1.35vw, 25px);
  line-height: 1.4;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-proof,
.final-benefits,
.inline-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof {
  margin-top: 24px;
}

.hero-proof span,
.final-benefits span,
.inline-benefits span {
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(238, 193, 22, 0.18);
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.hero-proof span::before,
.final-benefits span::before,
.inline-benefits span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(238, 193, 22, 0.2);
}

.hero-note {
  max-width: 640px;
  margin-top: 28px;
  padding-left: 18px;
  border-left: 6px solid var(--red);
  color: var(--black);
  font-size: clamp(22px, 1.65vw, 31px);
  line-height: 1.18;
  font-weight: 900;
}

.kit-summary {
  max-width: 700px;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.kit-summary h2 {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.kit-summary ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  list-style: none;
}

.kit-summary li {
  color: var(--dark);
  font-size: 17px;
  font-weight: 800;
}

.kit-summary li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  display: inline-block;
  background: var(--red);
}

.hero-visual {
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 10;
  border: 8px solid rgba(95, 102, 114, 0.9);
  border-radius: 24px;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.28) 100%);
}

.hero-image-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroSlide 10s infinite cubic-bezier(0.65, 0, 0.35, 1);
  opacity: 0;
  transform: translateX(12%) scale(1.03);
}

.hero-slide img:nth-child(2) {
  animation-delay: 5s;
}

@keyframes heroSlide {
  0% {
    opacity: 0;
    transform: translateX(12%) scale(1.03);
  }

  8%,
  45% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  53%,
  100% {
    opacity: 0;
    transform: translateX(-12%) scale(1.03);
  }
}

/* SECCIONES */

.problem-section,
.scan-section,
.audience-section,
.kit-section,
.faq-section {
  background: var(--off-white);
}

.solution-section,
.products-section,
.privacy-section,
.pricing-section {
  background: var(--white);
}

.mini-card-grid,
.feature-list {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.feature-list.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-card,
.audience-card,
.faq-item,
.kit-list div,
.product-card,
.privacy-card,
.control-panel,
.phone-shell,
.price-card,
.real-label-preview {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.mini-card {
  padding: 26px 28px 24px;
}

.card-icon,
.audience-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: var(--yellow);
  color: var(--black);
  font-size: 15px;
  font-weight: 900;
}

.mini-card h3,
.audience-card h3,
.kit-list h3,
.faq-item h3,
.product-card h3,
.privacy-card h3 {
  color: var(--black);
  font-weight: 900;
  line-height: 1.05;
}

.mini-card h3 {
  margin-bottom: 6px;
  font-size: 25px;
}

.mini-card p,
.audience-card p,
.kit-list p,
.product-card p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.35;
}

.highlight-box {
  margin-top: 34px;
  padding: clamp(26px, 3vw, 40px);
  border-left: 8px solid var(--red);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(238, 193, 22, 0.18), var(--soft) 42%);
}

.highlight-box strong {
  display: block;
  margin-bottom: 14px;
  color: var(--black);
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 1;
  font-weight: 900;
}

.highlight-box p {
  margin: 0;
}

.feature-list div {
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--black);
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.feature-list div::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  display: inline-block;
  background: var(--yellow);
}

/* COMO FUNCIONA */

.steps-section {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 18%, rgba(198, 40, 40, 0.32), transparent 28%),
    radial-gradient(circle at 90% 88%, rgba(198, 40, 40, 0.22), transparent 32%),
    linear-gradient(135deg, #050505 0%, #1a1a1a 100%);
}

.steps-section .center-heading h2,
.steps-section .center-heading p:not(.eyebrow) {
  color: var(--white);
}

.steps-section .center-heading p:not(.eyebrow) {
  opacity: 0.78;
}

.steps-grid {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step-card {
  position: relative;
  min-height: 500px;
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 193, 22, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.step-card > span {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
}

.step-media {
  height: clamp(230px, 16vw, 270px);
  margin-bottom: 24px;
  border-radius: 16px;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: visible;
}

.step-media img {
  width: min(92%, 330px);
  height: 92%;
  object-fit: contain;
  object-position: center;
  padding: 0;
}

.step-card h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(24px, 1.6vw, 30px);
  line-height: 1;
  font-weight: 900;
}

.step-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.35;
}

.steps-bottom {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 20px;
  align-items: stretch;
}

.steps-benefits {
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.steps-benefits div {
  min-height: 96px;
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: 70px 1fr;
  column-gap: 16px;
  align-items: center;
}

.steps-benefits div:last-child {
  border-right: 0;
}

.steps-benefits strong,
.steps-benefits span {
  display: block;
}

.steps-benefits .benefit-icon {
  width: 62px;
  height: 62px;
  grid-row: span 2;
  border-radius: 50%;
  overflow: hidden;
}

.steps-benefits .benefit-icon img,
.steps-control-card .control-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.steps-benefits strong {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 19px;
  line-height: 1.1;
}

.steps-benefits span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.3;
}

.steps-control-card {
  max-width: 330px;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(198, 40, 40, 0.72);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, rgba(198, 40, 40, 0.18), rgba(255, 255, 255, 0.05));
  box-shadow: 0 18px 44px rgba(198, 40, 40, 0.18);
}

.steps-control-card .control-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
}

.steps-control-card strong {
  color: var(--white);
  font-size: 22px;
  line-height: 1.12;
  font-weight: 900;
}

/* ESCANEO */

.scan-section .split-grid {
  grid-template-columns: minmax(460px, 0.95fr) minmax(320px, 0.55fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
}

.scan-section .section-heading {
  align-self: center;
  display: grid;
  justify-items: start;
}

.scan-section .section-heading .phone-shell {
  margin-top: clamp(34px, 4vw, 54px);
}

.phone-mockup {
  max-width: 430px;
  display: grid;
  gap: 18px;
  align-items: center;
}

.phone-shell {
  width: min(100%, 430px);
  margin-inline: auto;
  padding: 16px;
  border-radius: 38px;
  background: #111111;
}

.phone-screen {
  min-height: 650px;
  padding: 20px;
  border-radius: 28px;
  background: #f7f7f7;
}

.profile-header {
  padding: 18px;
  border-radius: 18px;
  background: var(--black);
  color: var(--white);
}

.profile-header span,
.profile-header strong {
  display: block;
}

.profile-header span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.profile-header strong {
  margin-top: 4px;
  font-size: 22px;
}

.profile-person {
  margin-top: 16px;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--white);
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.profile-person p,
.profile-person strong {
  display: block;
}

.profile-person p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.profile-person strong {
  color: var(--black);
  font-size: 19px;
}

.profile-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mockup-label {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  background: rgba(198, 40, 40, 0.1);
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.profile-actions button {
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.profile-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.profile-list div {
  padding: 14px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: var(--white);
}

.profile-list span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.profile-list strong {
  color: var(--black);
  font-size: 15px;
  text-align: right;
}

.scan-section .feature-list {
  margin-top: 0;
  align-self: center;
  gap: 12px;
}

.scan-section .feature-list div {
  min-height: 62px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 1.15;
}

.scan-section .feature-list div::before {
  flex: 0 0 auto;
}

.small-note {
  max-width: 430px;
  margin: 2px 0 0;
  padding: 16px 20px;
  border-left: 5px solid var(--red);
  border-radius: 14px;
  background: var(--white);
  color: var(--muted);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  font-size: 17px;
  line-height: 1.45;
}

/* AUDIENCE */

.audience-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(198, 40, 40, 0.07), transparent 24%),
    radial-gradient(circle at 92% 70%, rgba(238, 193, 22, 0.11), transparent 28%),
    var(--off-white);
}

.audience-grid {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.audience-card {
  position: relative;
  min-height: 220px;
  padding: 30px;
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.audience-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), rgba(238, 193, 22, 0.95));
  opacity: 0;
  transition: opacity var(--transition);
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 40, 40, 0.2);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.12);
}

.audience-card:hover::after {
  opacity: 1;
}

.audience-icon {
  width: 96px;
  height: 96px;
  margin-bottom: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.42) 46%, transparent 47%),
    rgba(198, 40, 40, 0.08);
  color: var(--red);
  box-shadow: inset 0 0 0 1px rgba(198, 40, 40, 0.05), 0 14px 28px rgba(198, 40, 40, 0.08);
}

.audience-icon img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.audience-card h3 {
  margin-bottom: 10px;
  color: var(--red);
  font-size: clamp(28px, 2vw, 34px);
}

.audience-card p {
  max-width: 360px;
  font-size: 20px;
}

.inline-benefits {
  margin-top: 34px;
  justify-content: center;
}

.audience-benefits {
  max-width: 1280px;
  margin: 38px auto 0;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.audience-benefits > span {
  min-height: 100px;
  padding: 12px 22px;
  border-right: 1px solid var(--line);
  border-radius: 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px 18px;
  background: transparent;
  box-shadow: none;
  font-size: initial;
  line-height: 1.2;
}

.audience-benefits > span:last-child {
  border-right: 0;
}

.audience-benefits > span::before,
.audience-benefits .audience-benefit-icon::before {
  display: none;
}

.audience-benefits .audience-benefit-icon {
  width: 54px;
  height: 54px;
  grid-row: span 2;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(198, 40, 40, 0.07);
}

.audience-benefits .audience-benefit-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.audience-benefits strong,
.audience-benefits small {
  display: block;
}

.audience-benefits strong {
  color: var(--black);
  font-size: 18px;
  font-weight: 900;
}

.audience-benefits small {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.section-action {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

/* PRODUCTOS */
.products-section .split-grid {
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.products-section .section-heading {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.products-section .section-heading .eyebrow {
  margin-inline: auto;
}

.products-section .section-heading h2,
.products-section .section-lead {
  margin-inline: auto;
}

.products-grid {
  width: min(100%, 1240px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 0;
  padding: 18px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 40, 40, 0.24);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.12);
}

.product-media {
  position: relative;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--soft);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 56%, rgba(0, 0, 0, 0.24) 100%);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-card h3 {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 27px;
}


/* KIT */

.kit-grid,
.privacy-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(44px, 6vw, 90px);
  align-items: start;
}

.kit-panel {
  display: grid;
  gap: 18px;
}

.kit-panel-kicker {
  margin: 0 0 2px;
  color: var(--dark);
  text-align: center;
  font-size: clamp(20px, 1.3vw, 24px);
  line-height: 1.2;
  font-weight: 900;
}

.real-label-preview {
  min-height: 292px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 126px minmax(230px, 0.78fr) minmax(430px, 1.35fr);
  gap: 18px;
  align-items: center;
  overflow: hidden;
}

.real-label-image {
  width: 128px;
  min-height: 180px;
  padding: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.real-label-image img {
  width: 100%;
  max-width: 126px;
  height: auto;
  object-fit: contain;
}

.real-label-caption span {
  display: inline-grid;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.real-label-caption span::after {
  content: "";
  width: 48px;
  height: 4px;
  border-radius: 999px;
  display: block;
  background: var(--red);
}

.real-label-caption p {
  color: var(--dark);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
}

.real-label-product {
  align-self: stretch;
  min-height: 230px;
  margin: -24px -26px -24px 0;
  padding: 10px 28px 10px 0;
  display: grid;
  place-items: center start;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--white) 18%);
}

.real-label-product img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  object-position: center left;
}

.kit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.kit-list div {
  padding: 24px;
  display: grid;
  grid-template-columns: 70px 1fr;
  column-gap: 18px;
  align-items: center;
}

.kit-list h3 {
  margin-bottom: 8px;
  grid-column: 2;
  color: var(--red);
  font-size: 25px;
}

.kit-list p {
  grid-column: 2;
}

.kit-icon {
  width: 62px;
  height: 62px;
  grid-row: span 2;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(198, 40, 40, 0.08);
  color: var(--red);
}

.kit-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.material-strip {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow-soft);
  font-size: 19px;
  font-weight: 800;
}

/* PRIVACIDAD */

.privacy-bottom {
  margin-top: 24px;
}

.privacy-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.privacy-card {
  padding: 28px 30px;
}

.privacy-card h3,
.control-panel h3 {
  margin-bottom: 18px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.04em;
}

.privacy-card h3 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.show-card h3 {
  color: #208044;
}

.show-card {
  border-color: rgba(32, 128, 68, 0.22);
  background: #fbfffc;
}

.protect-card {
  border-color: rgba(198, 40, 40, 0.2);
  background: #fff7f7;
}

.privacy-heading-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(32, 128, 68, 0.1);
}

.protect-card .privacy-heading-icon {
  background: rgba(198, 40, 40, 0.1);
}

.privacy-card svg,
.control-panel svg,
.privacy-benefits svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-heading-icon svg {
  width: 32px;
  height: 32px;
}

.privacy-card ul {
  display: grid;
  gap: 0;
  list-style: none;
}

.privacy-card li {
  min-height: 58px;
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: center;
  color: var(--black);
  font-size: 19px;
  font-weight: 800;
}

.privacy-card li svg {
  width: 28px;
  height: 28px;
  color: #208044;
}

.protect-card li svg {
  color: var(--red);
}

.privacy-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.control-panel {
  margin-top: 20px;
  padding: 28px;
}

.control-panel h3 {
  text-align: center;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.control-grid div {
  padding: 18px;
  border-left: 1px solid var(--line);
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.control-grid div:first-child {
  border-left: 0;
}

.control-grid strong,
.control-grid span,
.privacy-benefits strong,
.privacy-benefits span {
  display: block;
}

.control-grid strong {
  margin: 12px 0 8px;
  color: var(--black);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
}

.control-grid span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.control-item-icon {
  width: 66px;
  height: 66px;
  margin-inline: auto;
  border-radius: 50%;
  position: relative;
  display: block;
  background: var(--soft);
  color: var(--red);
}

.control-item-icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  display: block;
  transform: translate(-50%, -50%);
}

.privacy-banner {
  margin-top: 24px;
  padding: 28px 32px;
  border: 1px solid rgba(198, 40, 40, 0.14);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) minmax(0, 1fr) 210px;
  align-items: center;
  gap: 26px;
  background: #fff8f8;
  box-shadow: var(--shadow-soft);
  font-size: clamp(34px, 3vw, 56px);
  line-height: 1;
}

.privacy-banner strong:last-child {
  color: var(--red);
}

.privacy-banner-shield {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  justify-self: center;
}

.privacy-banner-shield img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.privacy-banner-note {
  min-height: 76px;
  padding-left: 26px;
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--dark);
  font-size: 18px;
  line-height: 1.18;
  font-weight: 800;
}

.privacy-banner-note svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-benefits {
  margin-top: 22px;
  padding-inline: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.privacy-benefits div {
  padding: 12px 24px;
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  align-items: start;
}

.privacy-benefits div:last-child {
  border-right: 0;
}

.privacy-benefits strong {
  grid-column: 2;
  color: var(--black);
  font-size: 19px;
  line-height: 1.08;
}

.privacy-benefits span {
  grid-column: 2;
  margin-top: 7px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.32;
}

.privacy-benefits svg {
  width: 36px;
  height: 36px;
  grid-row: span 2;
  color: var(--red);
}

/* PRECIOS */

.pricing-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.pricing-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}

.pricing-header p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 24px;
  color: var(--dark);
  font-size: clamp(20px, 1.35vw, 25px);
  line-height: 1.4;
}

.price-highlight {
  min-width: 320px;
  padding: 24px 28px;
  border: 1px solid rgba(198, 40, 40, 0.14);
  border-radius: 22px;
  display: grid;
  gap: 4px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.price-highlight span {
  color: var(--black);
  font-size: 22px;
  font-weight: 900;
}

.price-highlight strong {
  color: var(--red);
  font-size: clamp(56px, 5vw, 90px);
  line-height: 0.9;
  font-weight: 900;
}

.price-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.price-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.plan-description {
  display: block;
  margin-top: 14px;
  color: #5f6673;
  font-weight: 700;
}

.plan-benefits {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 0;
  list-style: none;
  color: #202938;
  font-size: 0.85rem;
  font-weight: 800;
}

.plan-benefits li::before {
  content: "✓ ";
  color: #c62828;
}

.price-card em {
  display: inline-flex;
  justify-content: center;
  margin-top: 16px;
  color: #c62828;
  font-style: normal;
  font-weight: 900;
}

/* keep existing price-card declarations below */
.price-card {
  position: relative;
  min-height: 320px;
  padding: 30px 22px 24px;
  text-align: center;
}

.price-card .plan-badge {
  width: max-content;
  max-width: calc(100% - 24px);
  min-height: auto;
  margin: 0 auto 18px;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.price-card.best-value .plan-badge {
  background: var(--black);
}

.price-card.max-saving .plan-badge {
  background: #d7b56d;
  color: var(--black);
}

.price-card h3 {
  color: var(--black);
  font-size: clamp(34px, 2.8vw, 46px);
  line-height: 1;
  font-weight: 900;
}

.calendar-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid !important;
  place-items: center;
  background: var(--soft);
}

.calendar-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--black);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calendar-icon svg path:nth-last-child(-n + 6) {
  stroke: var(--red);
  stroke-width: 4;
}

.price-card p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
}

.price-card strong {
  display: block;
  margin-top: 2px;
  color: var(--red);
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 1;
  font-weight: 900;
}

.price-card > span:not(.plan-badge) {
  display: block;
  margin-top: 16px;
  color: var(--black);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
}

.price-highlight p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
}

.price-card.recommended {
  border-color: var(--red);
}

.price-card.best-value {
  border-color: var(--black);
}

.price-card.max-saving {
  border-color: #d7b56d;
}

.pricing-benefits {
  max-width: 1180px;
  margin: 42px auto 0;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.pricing-benefits span {
  min-height: 150px;
  padding: 8px 22px;
  border-right: 1px solid var(--line);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: var(--black);
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.12;
}

.pricing-benefits span:last-child {
  border-right: 0;
}

.pricing-benefits img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

/* FAQ */

.faq-list {
  max-width: 1100px;
  margin: 66px auto 0;
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 28px 32px;
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

.faq-item p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.4;
}

/* CTA FINAL Y FOOTER */

.final-cta {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(198, 40, 40, 0.46), transparent 35%),
    radial-gradient(circle at 12% 88%, rgba(238, 193, 22, 0.18), transparent 28%),
    linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.final-cta-inner {
  max-width: 980px;
}

.final-cta h2 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(54px, 6.2vw, 112px);
  line-height: 0.92;
  font-weight: 900;
}

.final-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(21px, 1.5vw, 27px);
  line-height: 1.4;
}

.final-benefits {
  margin-top: 28px;
}

.final-benefits span {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.site-footer {
  padding-block: 34px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  text-align: center;
}

/* RESPONSIVE */

@media (max-width: 1280px) {
  .brand {
    width: 218px;
  }

  .main-nav a,
  .nav-group-link {
    padding-inline: 12px;
    font-size: 13px;
  }

  .main-nav .nav-cta {
    min-width: 190px;
  }

  .price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-benefits span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pricing-benefits span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .steps-grid,
  .steps-benefits,
  .privacy-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-card {
    min-height: 500px;
  }

  .step-media {
    height: clamp(250px, 32vw, 300px);
  }

  .steps-bottom {
    grid-template-columns: 1fr;
  }

  .steps-benefits div {
    border-right: 0;
  }

  .steps-control-card {
    max-width: none;
  }

  .control-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .control-grid div {
    border-left: 0;
  }

  .privacy-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .privacy-banner {
    grid-template-columns: 76px 1fr 1fr;
  }

  .privacy-banner-note {
    grid-column: 1 / -1;
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 940px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(100% - 36px, var(--container));
  }

  .brand {
    width: 220px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--red);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a,
  .nav-group-link {
    min-height: 60px;
    justify-content: flex-start;
    padding: 16px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 18px;
  }

  .nav-group {
    display: grid;
  }

  .nav-dropdown {
    position: static;
    display: grid;
    padding: 0 0 0 20px;
    background: rgba(0, 0, 0, 0.14);
    box-shadow: none;
  }

  .nav-dropdown a {
    min-height: 54px;
    border-radius: 0;
    font-size: 17px;
  }

  .main-nav .nav-cta {
    min-width: auto;
    min-height: 68px;
    justify-content: center;
    background: var(--black);
    font-size: 20px;
  }

  .hero-grid,
  .split-grid,
  .split-grid.reverse,
  .kit-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .scan-section .split-grid {
    grid-template-columns: 1fr;
  }

  .scan-section .section-heading {
    justify-items: center;
    padding-top: 0;
    text-align: center;
  }

  .scan-section .section-heading .eyebrow {
    margin-inline: auto;
  }

  .scan-section .section-lead {
    margin-inline: auto;
  }

  .phone-mockup {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .small-note {
    grid-column: 1 / -1;
    max-width: 720px;
    margin-inline: auto;
  }

  .section-copy {
    max-width: 900px;
    padding-top: 0;
  }

  .hero-image-card {
    width: min(100%, 760px);
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-card {
    grid-template-columns: 86px 1fr;
    padding: 26px;
  }

  .audience-icon {
    width: 84px;
    height: 84px;
  }

  .audience-icon img {
    width: 58px;
    height: 58px;
  }

  .audience-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-benefits > span:nth-child(2) {
    border-right: 0;
  }

  .audience-benefits > span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .privacy-columns,
  .kit-list {
    grid-template-columns: 1fr;
  }


  .pricing-benefits {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .pricing-benefits span,
  .pricing-benefits span:nth-last-child(-n + 2) {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pricing-benefits span:last-child {
    border-bottom: 0;
  }

  .steps-benefits div,
  .steps-control-card {
    grid-template-columns: 58px 1fr;
  }

  .steps-benefits .benefit-icon,
  .steps-control-card .control-icon {
    width: 52px;
    height: 52px;
  }

  .hero-image-card {
    aspect-ratio: 4 / 3;
    border-width: 6px;
    border-radius: 18px;
  }

  .hero-image-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: fit-content;
    max-width: calc(100% - 24px);
    font-size: 12px;
  }

  .step-card {
    min-height: auto;
  }

  .step-media {
    height: clamp(250px, 68vw, 310px);
    margin-top: -4px;
    margin-bottom: 24px;
  }

  .step-media img {
    width: min(90%, 300px);
    height: 90%;
  }

  .phone-mockup {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .phone-shell {
    width: min(100%, 390px);
  }

  .scan-section .section-heading .phone-shell {
    margin-top: 28px;
  }

  .phone-screen {
    min-height: 560px;
    padding: 16px;
  }

  .scan-section .feature-list {
    grid-template-columns: 1fr;
  }

  .scan-section .feature-list div {
    min-height: 54px;
  }

  .small-note {
    margin-top: 0;
  }

  .profile-list div {
    flex-direction: column;
  }

  .profile-list strong {
    text-align: left;
  }

  .privacy-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    font-size: clamp(32px, 9vw, 48px);
  }

  .privacy-banner-note {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .privacy-card li {
    grid-template-columns: 32px 1fr;
    font-size: 18px;
  }

  .kit-list div {
    grid-template-columns: 58px 1fr;
    column-gap: 14px;
  }

  .kit-icon {
    width: 52px;
    height: 52px;
  }

  .kit-icon svg {
    width: 28px;
    height: 28px;
  }

  .privacy-benefits div {
    grid-template-columns: 42px 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-inline: 0;
  }

  .privacy-benefits div:last-child {
    border-bottom: 0;
  }

  .final-cta h2 {
    font-size: clamp(44px, 13vw, 70px);
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  html {
    scroll-padding-top: var(--header-height);
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding-block: 64px;
  }

  .brand {
    width: min(56vw, 190px);
    padding: 10px 16px;
  }

  .brand-logo {
    max-width: 148px;
  }

  .menu-toggle {
    width: 68px;
    flex: 0 0 68px;
  }

  .main-nav {
    max-height: calc(100vh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .main-nav a,
  .nav-group-link {
    min-height: 52px;
    padding: 13px 20px;
    font-size: 16px;
    white-space: normal;
  }

  .nav-dropdown {
    padding-left: 12px;
  }

  .nav-dropdown a {
    min-height: 48px;
    font-size: 15px;
  }

  .main-nav .nav-cta {
    min-height: 58px;
    font-size: 18px;
  }

  .hero {
    min-height: auto;
    padding-block: 48px 64px;
  }

  .hero-grid,
  .split-grid,
  .kit-grid,
  .privacy-grid {
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(42px, 13.5vw, 62px);
    line-height: 0.96;
    overflow-wrap: anywhere;
  }

  .hero-text,
  .section-lead,
  .pricing-header p:not(.eyebrow),
  .final-cta p:not(.eyebrow) {
    font-size: 18px;
  }

  .hero-actions,
  .section-action {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .hero-actions .btn,
  .section-action .btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
    text-align: center;
  }

  .hero-proof,
  .final-benefits {
    gap: 8px;
  }

  .hero-proof span,
  .final-benefits span {
    font-size: 13px;
  }

  .hero-note {
    padding-left: 14px;
    border-left-width: 4px;
    font-size: 21px;
  }

  .kit-summary {
    padding: 18px;
  }

  .kit-summary h2 {
    font-size: 21px;
  }

  .kit-summary ul {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-image-card {
    aspect-ratio: 4 / 3;
    border-width: 5px;
  }

  .section-heading h2,
  .center-heading h2,
  .pricing-header h2 {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .steps-grid,
  .steps-benefits,
  .privacy-benefits,
  .audience-grid,
  .audience-benefits,
  .products-grid,
  .control-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .audience-grid,
  .products-grid,
  .faq-list {
    margin-top: 38px;
  }

  .step-card {
    min-height: auto;
    padding: 22px;
  }

  .step-media {
    height: 250px;
  }

  .steps-benefits div,
  .steps-control-card {
    min-height: auto;
    padding: 18px;
  }

  .phone-screen {
    min-height: 520px;
  }

  .audience-card {
    min-height: auto;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
  }

  .audience-icon {
    width: 62px;
    height: 62px;
  }

  .audience-icon img {
    width: 44px;
    height: 44px;
  }

  .audience-card h3 {
    font-size: 25px;
  }

  .audience-card p {
    font-size: 17px;
  }

  .audience-benefits {
    padding: 12px 18px;
  }

  .audience-benefits > span,
  .audience-benefits > span:nth-child(2),
  .audience-benefits > span:nth-child(-n + 2) {
    min-height: 92px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audience-benefits > span:last-child {
    border-bottom: 0;
  }

  .product-card,
  .privacy-card,
  .control-panel {
    padding: 20px;
  }

  .product-card h3 {
    font-size: 24px;
  }

  .real-label-preview {
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 22px;
    text-align: center;
  }

  .real-label-image {
    width: min(100%, 150px);
    min-height: 0;
  }

  .real-label-caption span {
    justify-items: center;
  }

  .real-label-product {
    min-height: 0;
    align-self: auto;
    margin: 0;
    padding: 0;
    place-items: center;
    background: transparent;
  }

  .real-label-product img {
    width: min(100%, 360px);
    height: auto;
    object-position: center;
  }

  .kit-list div {
    padding: 18px;
  }

  .material-strip {
    padding: 18px;
    font-size: 17px;
  }

  .privacy-card h3 {
    gap: 12px;
    font-size: 19px;
  }

  .privacy-heading-icon {
    width: 48px;
    height: 48px;
  }

  .privacy-card li {
    font-size: 17px;
  }

  .control-grid div {
    padding: 16px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .control-grid div:last-child {
    border-bottom: 0;
  }

  .privacy-banner {
    padding: 24px 18px;
    gap: 18px;
    font-size: clamp(30px, 10vw, 44px);
  }

  .pricing-header {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .price-highlight {
    width: 100%;
    min-width: 0;
    padding: 22px;
  }

  .price-grid {
    gap: 14px;
  }

  .price-card {
    width: 100%;
    max-width: none;
  }

  .pricing-benefits span,
  .pricing-benefits span:nth-last-child(-n + 2) {
    min-height: 100px;
    padding: 16px 8px;
  }

  .faq-item {
    padding: 22px 20px;
  }

  .faq-item h3 {
    font-size: 22px;
  }

  .faq-item p {
    font-size: 17px;
  }

  .final-cta h2 {
    font-size: clamp(42px, 14vw, 62px);
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .brand {
    width: calc(100% - 62px);
    justify-content: flex-start;
  }

  .menu-toggle {
    width: 62px;
    flex-basis: 62px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .audience-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .kit-list div,
  .steps-benefits div,
  .steps-control-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
