/* ══════════════════════════════════════════════════
   E BEATS PERÚ — LANDING PAGE CSS
   Design System: Clean Professional · Negro + Rojo · White BG
   ══════════════════════════════════════════════════ */

/* RESET & BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Colors */
  --red: #E53E3E;
  --red-dark: #ba1f1f;
  --red-light: #FFE5E5;
  --red-mid: #FF9A9A;
  --black: #0A0A0B;
  --dark: #111114;
  --dark-2: #1C1D22;

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F6F6F8;
  --gray-100: #ECECF1;
  --gray-150: #E1E1E7;
  --gray-200: #D7D7DF;
  --gray-300: #BABAC6;
  --gray-400: #8C8C98;
  --gray-500: #737380;
  --gray-600: #5C5C69;
  --gray-700: #3C3C45;
  --gray-800: #24242A;
  --gray-900: #141418;

  /* Typography */
  --font: 'Geist', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-py: 104px;
  --section-py-sm: 68px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(5, 5, 5, .12);
  --shadow-md: 0 10px 35px rgba(15, 15, 15, .12);
  --shadow-lg: 0 30px 80px rgba(5, 5, 5, .35);
  --shadow-xl: 0 50px 120px rgba(5, 5, 5, .4);
  --shadow-red: 0 15px 60px rgba(229, 62, 62, .35);

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(.32, .72, 0, 1);
  --ease-spring: cubic-bezier(.33, 1, .68, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: radial-gradient(circle at top, rgba(229, 62, 62, .08), transparent 45%), linear-gradient(145deg, #050507 0%, #0B0B10 55%, #090909 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.sidebar-open {
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg width="240" height="240" viewBox="0 0 240 240" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 239.5H239.5V0" stroke="%23ffffff0f"/%3E%3C/svg%3E');
  opacity: .5;
  pointer-events: none;
  z-index: -1;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

::selection {
  background: rgba(229, 62, 62, .25);
  color: var(--white);
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

main {
  background: linear-gradient(180deg, rgba(255, 255, 255, .04) 0%, rgba(6, 6, 7, 0) 35%), #09090E;
}

section {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
   ══════════════════════════════════════════════════ */
.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 18px;
}

.typing-waiting {
  position: relative;
  min-height: 1.2em;
}

.typing-active::after {
  content: '|';
  position: relative;
  margin-left: 2px;
  font-weight: 300;
  color: var(--red);
  animation: typingCursor 0.9s steps(2, end) infinite;
}

@keyframes typingCursor {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.section-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .6);
  max-width: 640px;
  line-height: 1.75;
}

.section-header {
  text-align: left;
  margin-bottom: 68px;
}

.section-header .section-sub {
  margin: 0;
}

/* ══════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  min-height: 46px;
  justify-content: center;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
  padding: 14px 28px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  position: relative;
  background: linear-gradient(120deg, #ff4b4b, #cc1f1f 55%, #a51212);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 25px 55px rgba(229, 62, 62, .35);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 35px 80px rgba(229, 62, 62, .45);
}

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

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, .35), transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.btn:hover::after {
  opacity: .35;
}

@keyframes bounceBtn {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.btn-urgencia {
  animation: bounceBtn 2s ease-in-out infinite;
}

.btn-ghost {
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .85);
  border-color: rgba(255, 255, 255, .12);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .35);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

.btn-xl {
  padding: 18px 36px;
  font-size: 17px;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 12px;
}

.btn-primary-light {
  background: rgba(255, 255, 255, .15);
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.btn-primary-light:hover {
  background: rgba(255, 255, 255, .3);
  transform: translateY(-3px);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .45);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .45);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .7);
  transform: translateY(-2px);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
  letter-spacing: .04em;
}

/* ══════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all .3s var(--ease), transform .3s ease, opacity .3s ease;
  background: transparent;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(8, 8, 12, .8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.navbar.navbar--hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(1240px, 100% - 32px);
  margin: 0 auto;
  padding: 10px 28px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(120deg, rgba(255, 255, 255, .16) 0%, rgba(16, 16, 24, .9) 55%, rgba(7, 7, 12, .95) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .55);
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 38px;
  width: auto;
  transition: transform .3s var(--ease);
}

.logo-img:hover {
  transform: scale(1.04);
}

.nav-agency-name {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  user-select: none;
}

.nav-links {
  display: none;
}

.nav-link {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: color .2s var(--ease), background .2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta {
  flex-shrink: 0;
}

/* Sidebar navigation drawer */
.sidebar-nav {
  position: fixed;
  inset: 0;
  z-index: 1400;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.sidebar-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 4, .65);
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.sidebar-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(340px, 80%);
  background: rgba(5, 5, 8, .96);
  border-left: 1px solid rgba(255, 255, 255, .08);
  box-shadow: -30px 0 90px rgba(0, 0, 0, .6);
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 32px 28px 40px;
  gap: 22px;
}

.sidebar-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-nav__label {
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.sidebar-nav__close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s var(--ease);
  position: relative;
}

.sidebar-nav__close span {
  position: absolute;
  width: 16px;
  height: 2px;
  background: rgba(255, 255, 255, .8);
  border-radius: 2px;
}

.sidebar-nav__close span:first-child {
  transform: rotate(45deg);
}

.sidebar-nav__close span:last-child {
  transform: rotate(-45deg);
}

.sidebar-nav__close:hover {
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .1);
}

.sidebar-nav__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  transition: all .2s var(--ease);
  justify-content: space-between;
}

.sidebar-link:hover,
.sidebar-link:focus-visible {
  color: var(--white);
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .08);
}

.sidebar-nav--open {
  opacity: 1;
  pointer-events: auto;
}

.sidebar-nav--open::before {
  opacity: 1;
}

.sidebar-nav--open .sidebar-nav__panel {
  transform: translateX(0);
}

.hamburger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, .8);
  border-radius: 2px;
  transition: all .3s var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-title {
  font-size: clamp(36px, 5.2vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--black);
  margin-bottom: 20px;
}

.highlight {
  color: var(--red);
  position: relative;
}

/* Typewriter cursor */
#hero-typewriter::after {
  content: '|';
  display: inline-block;
  color: var(--red);
  font-weight: 300;
  opacity: 1;
  margin-left: 2px;
  animation: tw-blink .75s step-end infinite;
}

@keyframes tw-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ══════════════════════════════════════════════════
   HERO ENTRANCE ANIMATIONS
   ══════════════════════════════════════════════════ */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroScaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-item {
  opacity: 0;
  transform: translateY(28px);
}

.hero-item--visible {
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-item--scale {
  opacity: 0;
  transform: scale(0.96);
}

.hero-item--scale.hero-item--visible {
  animation: heroScaleIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Stagger delays for hero items */
.hero-item[data-hero-delay="0"] { animation-delay: 0s; }
.hero-item[data-hero-delay="1"] { animation-delay: 0.08s; }
.hero-item[data-hero-delay="2"] { animation-delay: 0.16s; }
.hero-item[data-hero-delay="3"] { animation-delay: 0.26s; }
.hero-item[data-hero-delay="4"] { animation-delay: 0.36s; }
.hero-item[data-hero-delay="5"] { animation-delay: 0.46s; }
.hero-item[data-hero-delay="6"] { animation-delay: 0.56s; }

/* Trust items stagger */
.trust-item {
  opacity: 0;
  transform: translateY(12px);
}

.trust-item--visible {
  animation: heroFadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Hero background orb subtle animation */
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -20px) scale(1.03); }
  66% { transform: translate(-10px, 10px) scale(0.98); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-12px, 15px) scale(0.97); }
  66% { transform: translate(18px, -8px) scale(1.02); }
}

.hero-bg-orb--1 {
  animation: orbFloat1 18s ease-in-out infinite;
}

.hero-bg-orb--2 {
  animation: orbFloat2 22s ease-in-out infinite;
}

.hero-typewriter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  margin-top: 4px;
  min-height: 24px;
}

.hero-tw-label {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
  flex-shrink: 0;
}

.hero-typewriter-row .highlight {
  font-size: 15px;
  font-weight: 600;
}

.hero-sub {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
}

.mockup-wrapper {
  position: relative;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .18));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.mockup-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

.mockup-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

.mockup-badge--1 {
  bottom: -16px;
  left: 30px;
}

.mockup-badge--2 {
  top: 20px;
  right: -20px;
  color: #16a34a;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: rgba(34, 197, 94, .3);
  border-radius: 50%;
  animation: pulse 1.8s ease-out infinite;
}

.pulse-dot--light {
  background: white;
}

.pulse-dot--light::after {
  background: rgba(255, 255, 255, .4);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* BG Decoratives */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: .12;
}

.hero-bg-orb--1 {
  width: 600px;
  height: 600px;
  background: var(--red);
  top: -200px;
  right: -100px;
}

.hero-bg-orb--2 {
  width: 400px;
  height: 400px;
  background: #f97316;
  bottom: -100px;
  left: -100px;
}

/* ─── Hero Animated Dot Grid ─── */
.hero-dot-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  grid-template-rows: repeat(13, 1fr);
  place-items: center;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

/* ══════════════════════════════════════════════════
   2024 REDESIGN COMPONENTS
   ══════════════════════════════════════════════════ */
.hero {
  background: radial-gradient(circle at 12% 10%, rgba(229, 62, 62, .25), transparent 45%), radial-gradient(circle at 90% 0%, rgba(255, 255, 255, .1), transparent 40%), #040406;
  color: var(--white);
  padding: clamp(140px, 22vh, 210px) 0 140px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-full);
  padding: 8px 22px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: 24px;
  text-wrap: balance;
  color: var(--red);
}

.hero-title__line {
  display: block;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: clamp(12px, 1vw, 14px);
  color: rgba(255, 255, 255, .65);
  margin-bottom: 12px;
}

.hero-title__type {
  position: relative;
  display: inline-block;
  padding-right: 20px;
  color: var(--red);
  white-space: normal;
}

.hero-title__type::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 2px;
  background: rgba(255, 255, 255, .8);
  animation: heroCursor 1s steps(30) infinite;
}

@keyframes heroCursor {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title__type::after {
    animation: none;
    opacity: 1;
  }

  .mockup-block {
    animation: none;
    transform: none;
  }
}

.hero-typewriter-wrap {
  display: block;
  font-weight: 600;
  color: var(--white);
  min-height: 1em;
}

.hero-typewriter {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 6px;
  color: var(--white);
}

.hero-list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: rgba(255, 255, 255, .72);
}

.hero-list li {
  display: flex;
  gap: 14px;
  font-size: 15px;
}

.hero-list li::before {
  content: '';
  width: 32px;
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .55), transparent);
}

.hero-note {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.hero-panel {
  position: relative;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 46px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 45px 120px rgba(0, 0, 0, .5);
}

.hero-panel::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, .08);
  pointer-events: none;
}

.hero-panel__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .32em;
  color: rgba(255, 255, 255, .55);
}

.hero-panel__steps {
  margin-top: 18px;
  padding-left: 18px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.85;
}

.hero-panel__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.hero-panel__stats div {
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .6);
}

.hero-panel__stats strong {
  display: block;
  font-size: 26px;
  letter-spacing: -.02em;
  margin-top: 10px;
  color: var(--white);
}

/* ─── Story / Proceso Section ─── */
.story {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, #040406 0%, #06060a 100%);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.story-copy .section-sub {
  margin-bottom: 26px;
}

.story-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.story-pill-group li {
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.story-steps {
  display: grid;
  gap: 18px;
}

.story-steps article {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  padding: 26px;
  color: rgba(255, 255, 255, .8);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.story-steps header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.story-steps header span {
  font-size: 14px;
  letter-spacing: .28em;
  color: rgba(255, 255, 255, .5);
}

.story-steps h3 {
  font-size: 20px;
  color: var(--white);
  margin: 0;
}

.story-meta {
  margin-top: 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .5);
}

.pain {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .04) 0%, rgba(8, 8, 10, 0) 100%);
}

.section-heading {
  text-align: left;
  max-width: 720px;
  margin: 0 auto 48px auto;
  text-align: center;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.pain-card {
  padding: 32px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  min-height: 220px;
  color: rgba(255, 255, 255, .8);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
}

.services {
  padding: var(--section-py) 0;
  background: #070709;
}

.services-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}

.services-stat {
  max-width: 360px;
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.services-stat p {
  margin: 0;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius: 34px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: rgba(255, 255, 255, .78);
}

.service-card ul {
  padding-left: 18px;
  color: rgba(255, 255, 255, .6);
}

.service-label {
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--red);
}

.service-meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

.services-note {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
}

.mockup-section {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, #050506 0%, #09090f 100%);
  border-top: 1px solid rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .02);
  overflow: visible;
}

.mockup-section--alt {
  background: linear-gradient(180deg, #070708 0%, #050507 100%);
}

.mockup-block {
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 8, 12, .75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  color: rgba(255, 255, 255, .78);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .45);
  position: relative;
  overflow: hidden;
  animation: mockupLevitate 12s ease-in-out infinite;
  transform-origin: center;
  will-change: transform, box-shadow;
}

.mockup-block--plain {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  animation: none;
  gap: clamp(24px, 5vw, 56px);
  align-items: flex-start;
  overflow: visible;
}

.mockup-block--plain::after {
  display: none;
}

@media (min-width: 992px) {
  .mockup-block {
    flex-direction: row;
    align-items: center;
    gap: 36px;
  }

  .mockup-block--reverse {
    flex-direction: row-reverse;
  }

  .mockup-headline,
  .mockup-visual {
    flex: 1;
    min-width: 0;
  }

  .mockup-headline {
    max-width: 420px;
  }

  .mockup-block--plain {
    flex-direction: row;
    align-items: center;
  }
}

@keyframes mockupLevitate {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 35px 90px rgba(0, 0, 0, .45);
  }
  50% {
    transform: translateY(-14px) scale(1.01);
    box-shadow: 0 45px 120px rgba(0, 0, 0, .5);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 35px 90px rgba(0, 0, 0, .45);
  }
}

.mockup-block::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .05);
  pointer-events: none;
}

.mockup-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 45px 120px rgba(0, 0, 0, .6);
}

.mockup-block--plain,
.mockup-block--plain:hover {
  transform: none;
  box-shadow: none;
}

.mockup-block--plain .mockup-visual,
.mockup-block--plain:hover .mockup-visual {
  box-shadow: none;
  border: none;
}

.mockup-headline {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-direction: column;
}

.mockup-headline h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 6px;
}

.mockup-headline p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
}

.mockup-visual {
  border-radius: 0;
  padding: 0;
  border: none;
  background: transparent;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: visible;
}

.mockup-visual span {
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
  max-width: 260px;
  z-index: 1;
}

.mockup-video {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  z-index: 1;
  object-fit: cover;
  min-height: 200px;
  background: #050507;
}

.mockup-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: none;
  border: none;
  position: relative;
  z-index: 1;
  object-fit: cover;
  background: transparent;
  transform: none;
}

.mockup-image--front {
  position: relative;
  z-index: 1;
  transform: translateY(-12px);
  box-shadow: 0 40px 110px rgba(0, 0, 0, .5);
  animation: frontFloat 7s ease-in-out infinite;
}

@keyframes frontFloat {
  0%, 100% {
    transform: translateY(-12px) scale(1.01);
  }
  50% {
    transform: translateY(-32px) scale(1.03);
  }
}

.mockup-block:hover .mockup-visual {
  border-color: rgba(229, 62, 62, .45);
  box-shadow: 0 0 40px rgba(229, 62, 62, .25);
}

.mockup-block--plain:hover .mockup-visual {
  border-color: transparent;
  box-shadow: none;
}
}

.benefits {
  padding: var(--section-py) 0;
  background: #050506;
}

.benefits-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.benefits-note {
  max-width: 360px;
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.benefit-card {
  border-radius: 26px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .03);
  min-height: 190px;
  color: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}

.cta-banner {
  padding: 90px 0;
  background: radial-gradient(circle at 5% 50%, rgba(229, 62, 62, .25), transparent 55%), #050506;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.cta-banner__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.cta-banner__inner p {
  color: rgba(255, 255, 255, 0.75);
}

.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-anchor {
  display: block;
  height: 1px;
  margin-top: -120px;
  visibility: hidden;
}

.agenda {
  padding: var(--section-py) 0 calc(var(--section-py) + 48px);
  background: linear-gradient(180deg, #050507 0%, #07070a 100%);
}

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: stretch;
  margin-top: 40px;
}

.agenda-card {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: rgba(255, 255, 255, .7);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.agenda-card h3 {
  font-size: 20px;
  color: var(--white);
}

.agenda-list {
  margin-top: 16px;
  padding-left: 18px;
  color: rgba(255, 255, 255, .6);
}

.urgency-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  transform: translateY(0);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
  padding: 12px 0;
  pointer-events: none;
}

.urgency-bar--hidden {
  transform: translateY(110%);
}

.urgency-bar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  background: rgba(7, 7, 10, .92);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  box-shadow: 0 25px 90px rgba(0, 0, 0, .45);
  pointer-events: all;
  animation: barFloat .6s var(--ease) both;
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.urgency-bar__copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(255, 255, 255, .8);
  align-items: center;
  text-align: center;
  flex: 1;
}

.urgency-bar__label {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

.urgency-bar__copy strong {
  font-size: 14px;
  color: var(--white);
}

.urgency-bar__note {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
}

.btn-urgency {
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(229, 62, 62, .35);
  white-space: nowrap;
}

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

@media (prefers-reduced-motion: reduce) {
  .urgency-bar__content {
    animation: none;
  }
}

.dot {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

/* ══════════════════════════════════════════════════
   PROBLEMS
   ══════════════════════════════════════════════════ */
.problems {
  padding: var(--section-py) 0;
  background: #040406;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}

.problem-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 30px;
  padding: 30px;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: rgba(255, 255, 255, .8);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.problem-card .problem-icon {
  margin: 0 0 18px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  border-radius: 18px;
}
.problem-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.problem-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
}

/* Hover lift for problem cards */
.problem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .2);
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 110px rgba(0, 0, 0, .55);
  border-color: rgba(255, 255, 255, .2);
}

.problem-card:hover::before {
  opacity: 1;
}

/* ══════════════════════════════════════════════════
   DIAGNOSTIC
   ══════════════════════════════════════════════════ */
.diagnostic {
  padding: var(--section-py) 0;
  background: var(--white);
}

.diagnostic-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.diagnostic-intro {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 28px;
}

.diag-why {
  background: var(--gray-50);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 22px;
  margin-bottom: 28px;
}

.diag-why h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.diag-why p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

.diag-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.diag-bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.diag-bullet-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.diag-bullet strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.diag-bullet span {
  font-size: 14px;
  color: var(--gray-500);
}

/* Diagnostic System Card */
.diagnostic-card-wrap {
  position: relative;
}

.diagnostic-system-card {
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 36px;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.diagnostic-system-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: var(--red);
  border-radius: 50%;
  opacity: .08;
}

.dsc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.dsc-icon {
  width: 46px;
  height: 46px;
  background: var(--red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dsc-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 3px;
}

.dsc-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.dsc-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.dsc-step {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: all .2s var(--ease);
}

.dsc-step:last-child {
  border-bottom: none;
}

.dsc-step:hover {
  padding-left: 4px;
}

.dsc-step-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .05em;
  flex-shrink: 0;
  width: 24px;
  margin-top: 1px;
}

.dsc-step-content strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.dsc-step-content span {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.5;
}

.dsc-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.dsc-stat {
  text-align: center;
}

.dsc-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}

.dsc-stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
}

/* ══════════════════════════════════════════════════
   INCLUDES
   ══════════════════════════════════════════════════ */
.includes {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.include-card {
  background: var(--white);
  border: 1px solid var(--gray-150);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all .3s var(--ease);
  position: relative;
}

.include-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}

.include-card--highlight {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.include-card--highlight h3 {
  color: var(--white);
}

.include-card--highlight p {
  color: rgba(255, 255, 255, .9);
}

.include-card--highlight:hover {
  box-shadow: var(--shadow-red);
}

.include-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--red-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform .3s var(--ease);
}

.include-card:hover .include-icon-wrap {
  transform: scale(1.08);
}

.include-card--highlight .include-icon-wrap {
  background: rgba(255, 255, 255, .2);
}

.include-card--highlight .include-icon {
  stroke: white;
}

.include-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.include-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

.include-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .25);
  color: white;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* Step badge inside include-card */
.inc-step-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.inc-step-badge--light {
  color: white;
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .3);
}

/* ══════════════════════════════════════════════════
   QUÉ NO INCLUYE BLOCK
   ══════════════════════════════════════════════════ */
.noinclude-block {
  margin-top: 60px;
  background: var(--gray-50);
  border: 1px solid var(--gray-150);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Accordion summary (header clickable) */
.noinclude-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-700);
  transition: background .2s;
}

.noinclude-summary::-webkit-details-marker {
  display: none;
}

.noinclude-summary:hover {
  background: var(--gray-100);
}

.noinclude-summary span {
  flex: 1;
}

.noinclude-chevron {
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}

details[open] .noinclude-chevron {
  transform: rotate(180deg);
}

/* Body content (visible when open) */
.noinclude-body {
  padding: 0 28px 28px;
}

.noinclude-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.noinclude-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--gray-150);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.noinclude-x {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.noinclude-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 3px;
}

.noinclude-item span {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.55;
}

.noinclude-reason {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  border-top: 1px solid var(--gray-150);
  padding-top: 24px;
  margin: 0;
  font-style: italic;
}

/* ══════════════════════════════════════════════════
   POR QUÉ PAGAN BLOCK
   ══════════════════════════════════════════════════ */
.paywhy-block {
  margin-top: 48px;
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
}

.paywhy-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}

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

.paywhy-item {
  border-left: 2px solid var(--red);
  padding-left: 16px;
}

.paywhy-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.paywhy-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   BRIDGE (Diagnóstico → Implementación)
   ══════════════════════════════════════════════════ */
.bridge {
  padding: var(--section-py) 0;
  background: var(--white);
}

.bridge-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 48px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.bridge-step {
  flex: 1;
  min-width: 200px;
  background: var(--gray-50);
  border: 2px solid var(--gray-150);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  position: relative;
  transition: all .3s var(--ease);
}

.bridge-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bridge-step--active {
  background: var(--black);
  border-color: var(--black);
}

.bridge-step--active h3,
.bridge-step--active .bridge-step-body h3 {
  color: var(--white) !important;
}

.bridge-step--active p,
.bridge-step--active .bridge-step-body p {
  color: rgba(255, 255, 255, .75) !important;
}

.bridge-step--active .bridge-step-output {
  color: rgba(255, 255, 255, .5);
  border-color: rgba(255, 255, 255, .1);
}

.bridge-step-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.bridge-step--active .bridge-step-num {
  color: rgba(255, 255, 255, .5);
}

.bridge-step-icon {
  width: 46px;
  height: 46px;
  background: var(--red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.bridge-step:not(.bridge-step--active) .bridge-step-icon {
  background: var(--gray-200);
}

.bridge-step:not(.bridge-step--active) .bridge-step-icon svg path,
.bridge-step:not(.bridge-step--active) .bridge-step-icon svg circle {
  stroke: var(--gray-500);
}

.bridge-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.bridge-step p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 14px;
}

.bridge-step-output {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
  border-top: 1px solid var(--gray-200);
  padding-top: 12px;
}

.bridge-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  flex-shrink: 0;
  opacity: .5;
}

/* Risk card */
.bridge-cta-block {
  text-align: center;
}

.bridge-risk-card {
  display: inline-flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  text-align: left;
  max-width: 700px;
}

.bridge-risk-card strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--red-dark);
  margin-bottom: 6px;
}

.bridge-risk-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

.bridge-risk-card>svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════
   METHODOLOGY
   ══════════════════════════════════════════════════ */
.methodology {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.method-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.method-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-150);
  transition: all .3s var(--ease);
}

.method-step:last-child {
  border-bottom: none;
}

.method-step:hover {
  padding-left: 8px;
}

.method-step-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.method-step-line {
  position: absolute;
  top: 60px;
  bottom: -40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gray-200), transparent);
  left: 50%;
  transform: translateX(-50%);
}

.method-step-line--last {
  display: none;
}

.method-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--black);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s var(--ease-spring);
}

.method-step:hover .method-icon-wrap {
  background: var(--red);
  transform: scale(1.1) rotate(-3deg);
}

.method-step-content {
  padding: 4px 0;
}

.method-step-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.method-step-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}

.method-step-content p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 600px;
}

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

.method-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
}

.method-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   TOOLS
   ══════════════════════════════════════════════════ */
.tools {
  padding: var(--section-py) 0;
  background: var(--white);
}

.tools-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tools-content .section-title {
  margin-bottom: 16px;
}

.tools-content p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 28px;
}

.tools-philosophy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tools-phil-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
}

.tools-phil-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.tools-visual {
  position: relative;
}

.tools-mockup-wrap {
  background: var(--white);
  border: 1px solid var(--gray-150);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.tools-mockup-img {
  width: 100%;
}

.tools-extra-badge {
  position: absolute;
  bottom: -18px;
  right: 24px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}

.tools-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-50);
  border: 1px solid var(--gray-150);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

/* ══════════════════════════════════════════════════
   FOR WHOM
   ══════════════════════════════════════════════════ */
.forwhom {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.forwhom-card {
  background: var(--white);
  border: 1px solid var(--gray-150);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  transition: all .3s var(--ease);
}

.forwhom-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-200);
}

.forwhom-card--not {
  background: var(--gray-50);
  border-color: var(--gray-200);
}

.forwhom-card--not:hover {
  transform: none;
  box-shadow: none;
}

.forwhom-check {
  width: 36px;
  height: 36px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.forwhom-check--no {
  background: var(--gray-100);
}

.forwhom-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.35;
}

.forwhom-card--not .forwhom-body h3 {
  color: var(--gray-500);
}

.forwhom-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════════ */
.final-cta {
  padding: var(--section-py) 0;
  background: radial-gradient(circle at 85% 10%, rgba(229, 62, 62, .25), transparent 40%), #040405;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: var(--red);
  border-radius: 50%;
  opacity: .07;
  filter: blur(80px);
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: #f97316;
  border-radius: 50%;
  opacity: .05;
  filter: blur(60px);
}

.final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}

.final-cta-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

.final-cta-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
  margin-bottom: 40px;
}

.final-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.final-cta-disclaimer {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 14px;
  /* Negative logo is white, needs dark background */
  filter: brightness(1);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  transition: all .2s var(--ease);
}

.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 18px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 10px;
  transition: color .2s;
  font-weight: 400;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-location {
  font-size: 13px !important;
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom span {
  font-size: 13px;
  color: rgba(255, 255, 255, .25);
}

.footer-legal-link {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal-link:hover {
  color: rgba(255, 255, 255, .9);
  text-decoration: underline;
}

/* ══════════════════════════════════════════════════
   AOS ANIMATIONS
   ══════════════════════════════════════════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

[data-aos-delay="100"] {
  transition-delay: .1s;
}

[data-aos-delay="150"] {
  transition-delay: .15s;
}

[data-aos-delay="200"] {
  transition-delay: .2s;
}

[data-aos="fade-left"] {
  transform: translateX(24px);
}

[data-aos="fade-right"] {
  transform: translateX(-24px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .bridge-flow {
    flex-wrap: wrap;
  }

  .bridge-step {
    min-width: 180px;
  }

  .bridge-arrow {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --section-py: 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-panel {
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-content,
  .hero-panel {
    width: 100%;
  }

  .hero-content {
    order: 1;
  }

  .hero-panel {
    order: 2;
  }

  .hero-visual {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: clamp(30px, 7vw, 46px);
  }

  .diagnostic-inner,
  .tools-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .method-step {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .method-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .nav-inner {
    padding: 8px 16px;
    gap: 16px;
  }

  main {
    padding-bottom: 150px;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-panel__stats {
    grid-template-columns: 1fr;
  }

  .section-header {
    text-align: center;
  }

  .section-header .section-sub {
    margin: 0 auto;
    text-align: center;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner__actions {
    justify-content: center;
  }

  .urgency-bar__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 24px;
    width: calc(100% - 32px);
  }

  .btn-urgency {
    width: 100%;
    justify-content: center;
  }

  .wa-float {
    bottom: 150px;
    right: 18px;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .includes-grid {
    grid-template-columns: 1fr;
  }

  .forwhom-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .bridge-flow {
    flex-direction: column;
  }

  .bridge-step {
    min-width: unset;
  }

  .method-step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .method-step-side {
    flex-direction: row;
    align-items: center;
  }

  .method-step-line {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .mockup-section {
    padding: 60px 0;
  }

  .mockup-block--plain {
    gap: 24px;
    width: 100%;
  }

  .mockup-headline {
    align-items: flex-start;
    text-align: left;
  }

  .mockup-visual {
    width: 100%;
    max-width: 520px;
    margin: 8px auto 0;
  }

  .mockup-image--front {
    width: 100%;
    max-width: 520px;
    transform: translateY(-6px);
  }

  .story-steps article {
    padding: 22px;
  }

  .services-intro,
  .benefits-header {
    flex-direction: column;
  }

  .services-stat,
  .benefits-note {
    max-width: 100%;
  }

  .final-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .final-cta-actions .btn {
    width: 100%;
    max-width: 380px;
    justify-content: center;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .nav-agency-name {
    display: none;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-actions .btn {
    padding: 10px 16px;
    font-size: 12px;
    min-height: 42px;
  }

  .hero {
    padding: 90px 0 64px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-panel {
    padding: 26px;
    border-radius: 32px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-badge {
    font-size: 10px;
    letter-spacing: .18em;
    padding: 6px 16px;
  }

  .hero-title {
    line-height: 1.08;
  }

  .hero-note {
    letter-spacing: .12em;
  }

  .mockup-block,
  .story-steps article,
  .pain-card,
  .service-card {
    padding: 24px;
  }

  .mockup-section {
    padding: 52px 0;
  }

  .mockup-visual {
    max-width: 480px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: clamp(26px, 10vw, 34px);
  }

  .section-label {
    letter-spacing: .18em;
    font-size: 11px;
  }

  .urgency-bar__copy strong {
    font-size: 13px;
  }

  .urgency-bar__content {
    padding: 12px 14px;
    gap: 10px;
  }

  .urgency-bar__label {
    letter-spacing: .18em;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  :root {
    --section-py: 56px;
  }

  .section-title {
    font-size: 26px;
  }

  .mockup-badge--2 {
    display: none;
  }
}

/* ══════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ══════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 150px;
  right: 28px;
  z-index: 8000;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  transition: transform .25s var(--ease), opacity .3s ease, box-shadow .25s var(--ease);
  opacity: 1;
  pointer-events: auto;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .6);
}

.wa-float--hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(.8);
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .4);
  animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: .6;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ══════════════════════════════════════════════════
   MODAL DIAGNÓSTICO
   ══════════════════════════════════════════════════ */

/* ─── Overlay ─── */
.diag-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px 40px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}

.diag-modal-overlay.diag-modal--open {
  opacity: 1;
  pointer-events: all;
}

/* ─── Container ─── */
.diag-modal-container {
  position: relative;
  background: radial-gradient(circle at top, rgba(229, 62, 62, .15), transparent 45%), #050506;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, .08);
  width: 100%;
  max-width: 720px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .6);
  overflow: hidden;
  transform: translateY(20px) scale(.98);
  transition: transform .35s var(--ease-spring);
}

.diag-modal-overlay.diag-modal--open .diag-modal-container {
  transform: translateY(0) scale(1);
}

/* ─── Close button ─── */
.diag-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s var(--ease);
}

.diag-modal-close:hover {
  background: rgba(229, 62, 62, .2);
  color: var(--white);
  border-color: rgba(229, 62, 62, .4);
  transform: rotate(90deg);
}

/* ─── Progress bar ─── */
.diag-modal-progress {
  height: 5px;
  background: rgba(255, 255, 255, .08);
  position: relative;
}

.diag-modal-progress-bar {
  height: 100%;
  background: linear-gradient(110deg, #ff5c5c, var(--red));
  border-radius: 0 4px 4px 0;
  transition: width .45s var(--ease);
  width: 33.33%;
  box-shadow: 0 0 18px rgba(229, 62, 62, .45);
}

/* ─── Scroll area ─── */
.diag-modal-scroll {
  padding: 48px 52px 56px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.diag-modal-scroll::-webkit-scrollbar {
  width: 6px;
}

.diag-modal-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.diag-modal-scroll::-webkit-scrollbar-thumb {
  background: var(--gray-200);
  border-radius: 3px;
}

/* ─── Header ─── */
.diag-modal-header {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.diag-modal-title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.diag-modal-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
}

.diag-header-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.diag-header-meta div {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .02);
}

.diag-header-meta strong {
  display: block;
  font-size: 15px;
  color: var(--white);
}

.diag-meta-label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

@media (max-width: 640px) {
  .diag-modal-scroll {
    padding: 32px 20px 36px;
  }

  .diag-step {
    padding: 24px;
  }

  .diag-header-meta {
    grid-template-columns: 1fr;
  }
}

/* ─── Steps ─── */
.diag-step {
  animation: diagStepIn .35s var(--ease-spring);
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.diag-step:last-of-type {
  margin-bottom: 0;
}

.diag-step--hidden {
  display: none !important;
}

@keyframes diagStepIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.diag-step-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.diag-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  background: rgba(229, 62, 62, .18);
  border: 1px solid rgba(229, 62, 62, .4);
  padding: 3px 12px;
  border-radius: var(--radius-full);
}

.diag-step-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
}

/* ─── Form Grid ─── */
.diag-form-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 28px;
}

/* ─── Fields ─── */
.diag-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.diag-field--full {
  grid-column: 1 / -1;
}

.diag-field--hidden {
  display: none !important;
}

/* ─── Phone Group con prefijo de país ─── */
.diag-phone-group {
  display: flex;
  border: 1.5px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .03);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.diag-phone-group:focus-within {
  background: rgba(255, 255, 255, .08);
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, .18);
}

.diag-phone-group.diag-input--error {
  border-color: var(--red);
  background: rgba(254, 242, 242, .5);
}

.diag-phone-prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: rgba(255, 255, 255, .04);
  border-right: 1.5px solid rgba(255, 255, 255, .1);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .78);
  white-space: nowrap;
  min-width: 58px;
  font-family: var(--font);
  transition: background .2s;
  letter-spacing: 0.02em;
}

.diag-phone-group input {
  flex: 1;
  min-width: 0;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: rgba(255, 255, 255, .9);
  outline: none;
}

.diag-phone-group input::placeholder {
  color: rgba(255, 255, 255, .4);
}

/* ─── Pills (checkbox y radio tipo chip) ─── */
.diag-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.diag-pill {
  cursor: pointer;
  display: inline-flex;
  position: relative;
}

.diag-pill input[type="checkbox"],
.diag-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.diag-pill span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 1.5px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
  transition: all .18s var(--ease);
  cursor: pointer;
  user-select: none;
  line-height: 1.3;
  white-space: nowrap;
  font-family: var(--font);
}

.diag-pill:hover span {
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .12);
  color: var(--white);
}

.diag-pill input:checked+span {
  border-color: rgba(229, 62, 62, .65);
  background: rgba(229, 62, 62, .18);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(229, 62, 62, .25);
}

.diag-field label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .78);
}

.diag-field label svg {
  color: rgba(255, 255, 255, .45);
  flex-shrink: 0;
}

.diag-required {
  color: var(--red);
  font-weight: 700;
}

.diag-optional {
  color: rgba(255, 255, 255, .45);
  font-weight: 400;
  font-style: italic;
}

/* Inputs & textarea */
.diag-field input[type="text"],
.diag-field input[type="email"],
.diag-field input[type="tel"],
.diag-field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 14px;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .04);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  resize: vertical;
}

.diag-field input:focus,
.diag-field textarea:focus {
  background: rgba(255, 255, 255, .08);
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, .18);
}

.diag-field input.diag-input--error,
.diag-field input.diag-input--error:focus {
  border-color: var(--red);
  background: rgba(229, 62, 62, .14);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, .2);
}

.diag-field input::placeholder,
.diag-field textarea::placeholder {
  color: rgba(255, 255, 255, .4);
}

/* Field error */
.diag-field-error {
  font-size: 12px;
  color: var(--red);
  font-weight: 500;
  display: none;
  align-items: center;
  gap: 4px;
}

.diag-field-error.diag-error--visible {
  display: flex;
}

/* ─── Custom Select ─── */
.diag-select-wrap {
  position: relative;
}

.diag-select-wrap select {
  width: 100%;
  font-family: var(--font);
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .04);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 13px 40px 13px 16px;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.diag-select-wrap select:focus {
  background: rgba(255, 255, 255, .08);
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, .18);
}

.diag-select-wrap select.diag-input--error {
  border-color: var(--red);
  background: rgba(229, 62, 62, .14);
}

.diag-select-arrow {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .6);
  pointer-events: none;
}

/* ─── Radio Cards ─── */
.diag-radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.diag-radio-group--vert {
  grid-template-columns: 1fr;
}

.diag-radio-card {
  cursor: pointer;
}

.diag-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.diag-radio-box {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  transition: all .2s var(--ease);
  cursor: pointer;
}

.diag-radio-box--icon {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.diag-radio-card input:checked+.diag-radio-box {
  border-color: var(--red);
  background: var(--red-light);
  box-shadow: 0 0 0 2px rgba(229, 62, 62, .15);
}

.diag-radio-card:hover .diag-radio-box {
  border-color: var(--gray-300);
  background: var(--white);
}

.diag-radio-card input:checked+.diag-radio-box .diag-radio-title {
  color: var(--red-dark);
}

.diag-radio-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.3;
  transition: color .2s;
}

.diag-radio-desc {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.5;
}

/* ─── Checkbox Cards ─── */
.diag-checkbox-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.diag-check-card {
  cursor: pointer;
}

.diag-check-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.diag-check-card span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1.5px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
  transition: all .2s var(--ease);
  cursor: pointer;
  line-height: 1.3;
}

.diag-check-card span svg {
  flex-shrink: 0;
  opacity: 0;
  transition: opacity .2s;
}

.diag-check-card input:checked+span {
  border-color: rgba(229, 62, 62, .65);
  background: rgba(229, 62, 62, .18);
  color: var(--white);
  font-weight: 600;
}

.diag-check-card input:checked+span svg {
  opacity: 1;
}

.diag-check-card:hover span {
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .12);
}

/* ─── Step Footer ─── */
.diag-step-footer {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 20px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.diag-step-footer .btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ─── Privacy Policy Checkbox ─── */
.diag-privacy {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.diag-privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
  cursor: pointer;
}

.diag-privacy-checkbox {
  display: none;
}

.diag-privacy-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid rgba(255, 255, 255, .35);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
  margin-top: 1px;
  background: rgba(255, 255, 255, .05);
}

.diag-privacy-checkbox:checked + .diag-privacy-custom {
  background: var(--red);
  border-color: var(--red);
}

.diag-privacy-checkbox:checked + .diag-privacy-custom::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.diag-privacy-label:hover .diag-privacy-custom {
  border-color: var(--red);
}

.diag-privacy-link {
  color: var(--red);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}

.diag-privacy-link:hover {
  color: var(--red-dark);
}

.diag-privacy-error {
  display: none;
  margin-top: 6px;
  margin-left: 30px;
  font-size: 12px;
}

.diag-privacy-error.diag-error--visible {
  display: block;
}

/* ─── Success Screen ─── */
.diag-success {
  text-align: center;
  padding: 36px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
  color: rgba(255, 255, 255, .8);
}

.diag-success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  animation: diagSuccessIn .6s var(--ease-spring);
}

@keyframes diagSuccessIn {
  from {
    transform: scale(.5) rotate(-15deg);
    opacity: 0;
  }

  to {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

.diag-success-icon svg {
  width: 72px;
  height: 72px;
}

.diag-success-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.diag-success-text {
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 28px;
}

.diag-success-text strong {
  color: var(--white);
  font-weight: 700;
}

.diag-success-schedule {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(229, 62, 62, .12);
  border: 1.5px solid rgba(229, 62, 62, .35);
  border-radius: 20px;
  padding: 16px 20px;
  margin: 0 auto 24px;
  max-width: 420px;
  text-align: left;
}

.diag-success-schedule-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.diag-success-schedule-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.diag-success-schedule-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.diag-success-schedule-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  font-weight: 500;
}

.diag-success-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.diag-success-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-400);
}

/* ─── Calendly Section ─── */
/* ─── Calendly Section ─── */
.diag-calendly-section {
  padding: 0;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.diag-calendly-header {
  text-align: center;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .8);
}

.diag-calendly-title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.diag-calendly-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 24px;
}

.diag-calendly-checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
}

.diag-calendly-checklist li {
  position: relative;
  padding-left: 24px;
}

.diag-calendly-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 700;
  font-size: 16px;
}

.diag-calendly-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  min-height: 600px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  overflow: hidden;
  background: #0e0e12;
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.diag-calendly-container iframe {
  width: 100%;
  height: 600px;
  border: none;
}

.diag-calendly-footer {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ─── Responsive ─── */
@media (max-width: 680px) {
  .diag-calendly-section {
    padding: 24px;
    margin-bottom: 24px;
  }

  .diag-calendly-title {
    font-size: 24px;
  }

  .diag-calendly-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .diag-calendly-checklist {
    font-size: 13px;
  }

  .diag-calendly-container {
    min-height: 500px;
    border-radius: 18px;
  }

  .diag-calendly-container iframe {
    height: 500px;
  }

  .diag-calendly-footer {
    margin-top: 24px;
  }
}

.diag-calendly-header {
  text-align: center;
  margin-bottom: 24px;
}

.diag-calendly-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.diag-calendly-subtitle {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
}

.diag-calendly-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  min-height: 600px;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.diag-calendly-container iframe {
  width: 100%;
  height: 600px;
  border: none;
}

.diag-calendly-footer {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* ─── Responsive ─── */
@media (max-width: 680px) {
  .diag-modal-scroll {
    padding: 28px 24px 36px;
  }

  .diag-form-grid {
    grid-template-columns: 1fr;
  }

  .diag-field--full {
    grid-column: 1;
  }

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

  .diag-radio-group {
    grid-template-columns: 1fr;
  }

  .diag-step-footer {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .diag-step-footer .btn {
    width: 100% !important;
    justify-content: center;
    min-height: 52px;
    font-size: 16px;
  }

  .diag-success-actions {
    flex-direction: column;
    align-items: center;
  }

  .diag-success-actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .diag-calendly-container {
    min-height: 500px;
  }

  .diag-calendly-container iframe {
    height: 500px;
  }
}

@media (max-width: 400px) {
  .diag-checkbox-group {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════
   NUEVAS SECCIONES - ESTILOS MÍNIMOS
   ══════════════════════════════════════════════════ */

/* VIDEO SECTION */
.video-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

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

/* VIDEO PLAYER — Vimeo iframe embed */
.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(229, 62, 62, 0.3);
  background: #000;
  border: 2px solid rgba(229, 62, 62, 0.5);
}

.video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* VIDEO CUSTOM CONTROLS */
.video-custom-controls {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-custom-controls.vc-visible {
  opacity: 1;
  pointer-events: auto;
}

.video-player:hover .video-custom-controls.vc-visible,
.video-custom-controls.vc-visible:focus-within {
  opacity: 1;
}

@media (hover: none) {
  .video-custom-controls.vc-visible {
    opacity: 1;
  }
}

/* BIG PLAY BUTTON */
.video-big-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  cursor: pointer;
}

.video-big-play.vc-hidden {
  display: none;
}

.vc-big-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  background: rgba(229, 62, 62, 0.9);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(229, 62, 62, 0.5);
  padding: 0;
}

.vc-big-btn svg {
  width: 36px;
  height: 36px;
  margin-left: 4px;
}

.vc-big-btn:hover {
  transform: scale(1.12);
  background: #e53e3e;
  box-shadow: 0 6px 32px rgba(229, 62, 62, 0.7);
}

.vc-big-btn:active {
  transform: scale(0.95);
}

.vc-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  padding: 0;
}

.vc-btn:hover {
  background: rgba(229, 62, 62, 0.85);
  transform: scale(1.1);
}

.vc-btn:active {
  transform: scale(0.95);
}

.vc-icon {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.video-player:fullscreen,
.video-player:-webkit-full-screen {
  border-radius: 0;
  border: none;
}

.video-player:fullscreen .video-custom-controls,
.video-player:-webkit-full-screen .video-custom-controls {
  opacity: 1;
}

.video-cta {
  text-align: center;
  margin-top: 2rem;
}

.video-cta-sub {
  margin-top: 0.5rem;
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* PARADIGM SECTION */
.paradigm {
  padding: var(--section-py) 0;
  background: var(--white);
}

.paradigm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.paradigm-card {
  padding: 2rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-150);
  transition: all 0.3s var(--ease);
}

.paradigm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.paradigm-icon {
  width: 48px;
  height: 48px;
  background: var(--red-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform .3s var(--ease);
}

.paradigm-card:hover .paradigm-icon {
  transform: scale(1.08);
}

.paradigm-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.paradigm-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* FAQ SECTION */
.faq-grid {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  position: relative;
}
.faq-item:hover {
  border-color: var(--red);
  box-shadow: 0 4px 12px rgba(229, 62, 62, 0.15), 0 0 0 1px rgba(229, 62, 62, 0.1);
}
.faq-item::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    transparent 0%,
    rgba(229, 62, 62, 0) 40%,
    rgba(229, 62, 62, 0.1) 50%,
    rgba(229, 62, 62, 0) 60%,
    transparent 100%
  );
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.faq-item:hover::after {
  opacity: 1;
}
.faq-question {
  padding: 1.5rem;
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  position: relative;
  overflow: hidden;
}
.faq-question::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: all 0.6s ease;
}
.faq-item:hover .faq-question::before {
  left: 100%;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-chevron {
  transition: transform 0.3s var(--ease);
}
details[open] .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Sparkle effect for FAQ items */
.faq-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.faq-item:hover::after {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.faq-question {
  padding: 1.5rem;
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  transition: transform 0.3s var(--ease);
}

details[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
}

/* FORWHOM LIST */
.forwhom-list {
  margin-top: 1rem;
  padding-left: 0;
}

.forwhom-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.forwhom-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
}

.forwhom-list--no li::before {
  color: var(--gray-400);
}

.forwhom-card--yes {
  border-left: 4px solid #22c55e;
}

.forwhom-card--no {
  border-left: 4px solid var(--gray-400);
}

.forwhom-check--yes svg path {
  stroke: #22c55e;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .paradigm-grid {
    grid-template-columns: 1fr;
  }
  
  .video-container {
    padding: 0 1rem;
  }
}

/* HERO FULL WIDTH MODIFICATIONS */
.hero {
  padding: 120px 0 80px; /* Reducir padding superior */
}

.hero-inner--full {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  padding: 0;
  width: 100%;
}

.hero-content--full {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.hero-title--center {
  text-align: center;
}

.hero-sub--center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions--center {
  justify-content: center;
}

.hero-trust--center {
  justify-content: center;
}

@media (max-width: 768px) {
  .hero-content--full {
    padding: 0 1rem;
  }
}

/* RESULTADO DEL WEBHOOK */
.diag-result-message {
  padding: 1.2rem;
  margin: 1.2rem 0;
  border-radius: 18px;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

.diag-result-message--hidden {
  display: none;
}

.diag-result-message--success {
  background-color: rgba(16, 185, 129, .15);
  color: #d1ffee;
  border: 1px solid rgba(16, 185, 129, .5);
}

.diag-result-message--error {
  background-color: rgba(229, 62, 62, .12);
  color: #ffb3b3;
  border: 1px solid rgba(229, 62, 62, .45);
}

/* BOTÓN DE AGENDAR EN MENSAJE */
.diag-agendar-container {
  margin-top: 1.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.diag-agendar-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.diag-agendar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

/* ══════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ══════════════════════════════════════════════════ */
@keyframes faqGlow {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.15), 0 0 0 1px rgba(229, 62, 62, 0.1);
  }
  50% {
    box-shadow: 0 4px 20px rgba(229, 62, 62, 0.25), 0 0 0 2px rgba(229, 62, 62, 0.15);
  }
}

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

.faq-item:hover {
  animation: faqGlow 2s ease-in-out infinite;
}

.faq-item .sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
  animation: sparkle 0.6s ease-in-out;
}

@media (min-width: 768px) {
  .diag-agendar-btn {
    width: auto;
    min-width: 250px;
  }
}

@media (max-width: 480px) {
  .diag-agendar-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* ══════════════════════════════════════════════════
   ACCESSIBILITY: REDUCED MOTION
   ══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-item,
  .trust-item {
    opacity: 1;
    transform: none;
  }

  .problem-card,
  .include-card,
  .paradigm-card,
  .diagnostic-system-card {
    transition: none;
  }
}
.mockup-lead {
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 10px;
}

.mockup-description {
  color: rgba(255, 255, 255, .56);
  line-height: 1.7;
}
