/* ═══════════════════════════════════════════════════
   MIRADATA — Main Stylesheet
   Brand: #1E2D2B (dark teal), #4D6F67 (mid teal),
          #FF7A59 (coral/orange), #F2E6D6 (warm cream)
   Font: Montserrat (headings), Outfit (body)
═══════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  /* Brand Colors */
  --teal-deep:   #1E2D2B;
  --teal-mid:    #2D4140;
  --teal-soft:   #4D6F67;
  --teal-muted:  #6B8C84;
  --coral:       #FF7A59;
  --coral-dark:  #E5654A;
  --coral-light: #FF9678;
  --coral-pale:  #FFF0EB;
  --cream:       #F2E6D6;
  --cream-dark:  #EBD9C4;
  --cream-light: #FAF6F1;
  --white:       #FFFFFF;
  --silver:      #D9D9D9;
  --green-ok:    #3A7A52;
  --red-alert:   #C0392B;

  /* Typography */
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Outfit', sans-serif;

  /* Spacing */
  --section-pad: 108px;
  --wrap-max: 1120px;
  --wrap-pad: 40px;

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur: .25s;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream-light);
  color: var(--teal-deep);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--coral);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 0 0 4px 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }
:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── LAYOUT ── */
.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
}
.section { padding: var(--section-pad) 0; }
.section--white { background: var(--white); }
.section--bone  { background: var(--cream-light); }
.section--dark  { background: var(--teal-deep); position: relative; overflow: hidden; }
.section--cta   { background: var(--teal-deep); position: relative; overflow: hidden; padding: 120px 0; text-align: center; }

/* ── TYPOGRAPHY ── */
h1, h2 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
}
h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.25;
}
.eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--coral);
}
.eyebrow--light { color: var(--coral-light); }
.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.eyebrow-line::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow-line--center {
  justify-content: center;
}

/* ── SECTION HEADER ── */
.section__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 72px;
}
.section__header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--teal-deep);
  margin-bottom: 16px;
}
.section__header p {
  font-size: 17px;
  color: var(--teal-soft);
  font-weight: 300;
}
.section__header--light h2 { color: var(--white); }
.section__header--light p  { color: rgba(255,255,255,.45); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 3px;
  text-decoration: none;
  border: none;
  transition: all var(--dur) var(--ease);
}
.btn__arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--coral);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 8px 24px rgba(255,122,89,.35);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--teal-deep);
  border: 1.5px solid rgba(30,45,43,.25);
}
.btn--ghost:hover {
  border-color: var(--teal-deep);
  background: rgba(30,45,43,.05);
}
.btn--ghost-light {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1.5px solid rgba(255,255,255,.2);
}
.btn--ghost-light:hover {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
  background: rgba(255,255,255,.06);
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(30,45,43,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: border-color .3s;
}
.nav--scrolled { border-bottom-color: rgba(255,122,89,.2); }
.nav__inner {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -.02em;
}
.nav__logo-text strong { font-weight: 700; color: var(--coral); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.nav__link:hover { color: var(--white); }
.nav__cta { padding: 10px 20px !important; font-size: 11px !important; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all .3s;
  border-radius: 1px;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 66px; left: 0; right: 0; bottom: 0;
  background: var(--teal-deep);
  z-index: 190;
  padding: 40px var(--wrap-pad);
  display: flex;
  flex-direction: column;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,.07); }
.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--coral); }
.mobile-menu .btn--primary {
  margin-top: 32px;
  width: 100%;
  justify-content: center;
  font-size: 13px;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--teal-deep);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Animated lines */
.hero__canvas { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero__line {
  position: absolute;
  width: 1px;
  background: rgba(255,122,89,.06);
}
.hero__line--1 { height: 100%; left: 15%; animation: linerise 12s ease-in-out infinite; }
.hero__line--2 { height: 70%; left: 35%; animation: linerise 16s ease-in-out infinite .8s; }
.hero__line--3 { height: 85%; right: 22%; animation: linerise 14s ease-in-out infinite 1.5s; }
.hero__line--4 { height: 50%; right: 8%; animation: linerise 18s ease-in-out infinite .3s; }
@keyframes linerise {
  0%,100% { opacity: .4; }
  50% { opacity: 1; }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__h1 {
  font-size: clamp(38px, 5vw, 60px);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
}
.hero__h1 em {
  font-style: italic;
  color: var(--coral-light);
  font-weight: 600;
}
.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 500px;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero__stats {
  display: flex;
  gap: 44px;
}
.hero__stat-n {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero__stat-n sup { font-size: 16px; color: var(--coral-light); }
.hero__stat-t {
  font-size: 12px;
  color: rgba(255,255,255,.38);
  margin-top: 6px;
  font-weight: 300;
  line-height: 1.45;
}

/* Hero card */
.hcard {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 4px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.hcard::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--coral-light), transparent);
}
.hcard__label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 20px;
}
.hcard__finding {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hcard__finding:last-of-type { border-bottom: none; }
.hcard__ico {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hcard__ico--red   { background: rgba(192,57,43,.18); }
.hcard__ico--orange{ background: rgba(255,122,89,.15); }
.hcard__ico--green { background: rgba(58,122,82,.15); }
.hcard__text {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
}
.hcard__text strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 14px;
  font-family: var(--font-head);
}
.hcard__footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.28);
}
.hcard__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-ok);
  animation: pulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ══════════════════════════════════════
   STRIP
══════════════════════════════════════ */
.strip {
  background: var(--cream-dark);
  padding: 20px 0;
  border-top: 1px solid rgba(30,45,43,.1);
  border-bottom: 1px solid rgba(30,45,43,.1);
}
.strip__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.strip__label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-muted);
  white-space: nowrap;
}
.strip__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.strip__tag {
  background: var(--white);
  border: 1px solid rgba(30,45,43,.1);
  color: var(--teal-soft);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 7px 16px;
  border-radius: 2px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ══════════════════════════════════════
   PROBLEMA
══════════════════════════════════════ */
.prob__intro {
  max-width: 640px;
  margin-bottom: 64px;
}
.prob__intro h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--teal-deep);
  margin-bottom: 16px;
}
.prob__intro p {
  font-size: 17px;
  color: var(--teal-soft);
  font-weight: 300;
}
.prob__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(30,45,43,.1);
  border: 1px solid rgba(30,45,43,.1);
  border-radius: 3px;
  overflow: hidden;
}
.prob__item {
  background: var(--white);
  padding: 36px 28px;
  position: relative;
}
.prob__item::before {
  content: '';
  position: absolute;
  top: 0; left: 28px;
  width: 32px;
  height: 2px;
  background: var(--coral);
}
.prob__n {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: rgba(30,45,43,.05);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.prob__item h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 10px;
  letter-spacing: .01em;
}
.prob__item p {
  font-size: 14px;
  color: var(--teal-soft);
  line-height: 1.65;
}
.prob__quote {
  margin-top: 56px;
  padding: 48px 56px;
  background: var(--teal-deep);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  border-left: 3px solid var(--coral);
}
.prob__quote::before {
  content: '\201C';
  position: absolute;
  top: -30px; left: 32px;
  font-family: var(--font-head);
  font-size: 200px;
  color: rgba(255,122,89,.06);
  line-height: 1;
  pointer-events: none;
}
.prob__quote p {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--white);
  line-height: 1.55;
  position: relative;
  z-index: 1;
  font-weight: 500;
}
.prob__quote p em {
  font-style: italic;
  color: var(--coral-light);
  font-weight: 400;
}

/* ══════════════════════════════════════
   STEPS
══════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  list-style: none;
}
.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: var(--coral);
  opacity: .2;
}
.step {
  padding: 0 20px;
  text-align: center;
}
.step__ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  background: var(--cream-light);
  position: relative;
  z-index: 1;
}
.step__ring span {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--teal-deep);
}
.step h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 10px;
  letter-spacing: .01em;
}
.step p {
  font-size: 14px;
  color: var(--teal-soft);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   OPORTUNIDADES
══════════════════════════════════════ */
.oport__header { margin-bottom: 52px; }
.oport__header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--teal-deep);
  margin-bottom: 16px;
  max-width: 520px;
}
.oport__header p {
  font-size: 17px;
  color: var(--teal-soft);
  max-width: 520px;
  font-weight: 300;
}
.oport__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ocard {
  border: 1px solid rgba(30,45,43,.1);
  border-radius: 3px;
  padding: 32px;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.ocard::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.ocard:hover {
  border-color: rgba(255,122,89,.3);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(30,45,43,.08);
}
.ocard:hover::after { transform: scaleX(1); }
.ocard__ico { margin-bottom: 20px; opacity: .7; transition: opacity .2s; }
.ocard:hover .ocard__ico { opacity: 1; }
.ocard h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 8px;
  letter-spacing: .01em;
}
.ocard p { font-size: 14px; color: var(--teal-soft); line-height: 1.65; }

/* ══════════════════════════════════════
   HALLAZGOS
══════════════════════════════════════ */
.hz__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hz__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,122,89,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,122,89,.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hz__grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hzcard {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 3px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur), transform var(--dur);
}
.hzcard:hover {
  border-color: rgba(255,122,89,.3);
  transform: translateY(-2px);
}
.hzcard__tag {
  display: inline-block;
  background: rgba(255,122,89,.12);
  color: var(--coral-light);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hzcard blockquote {
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--white);
  line-height: 1.55;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 16px;
}
.hzcard blockquote::before { content: none; }
.hzcard__impact { font-size: 13px; color: rgba(255,255,255,.4); }
.hzcard__impact strong { color: #5cb98c; }

/* ══════════════════════════════════════
   SECTORES
══════════════════════════════════════ */
.sec__tabs {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 48px;
  border: 1px solid rgba(30,45,43,.12);
  border-radius: 3px;
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.sec__tab {
  padding: 13px 28px;
  border: none;
  border-right: 1px solid rgba(30,45,43,.12);
  background: transparent;
  color: var(--teal-muted);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sec__tab:last-child { border-right: none; }
.sec__tab--active,
.sec__tab[aria-selected="true"] {
  background: var(--teal-deep);
  color: var(--white);
}
.sec__tab:not(.sec__tab--active):hover {
  background: rgba(30,45,43,.06);
  color: var(--teal-deep);
}
.sec__panel { display: none; }
.sec__panel--active,
.sec__panel[aria-hidden="false"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  animation: fadeslide .3s var(--ease);
}
@keyframes fadeslide {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.sec__content h3 {
  font-size: 26px;
  color: var(--teal-deep);
  margin-bottom: 6px;
}
.sec__sub {
  font-size: 14px;
  color: var(--teal-muted);
  margin-bottom: 24px;
  font-weight: 300;
}
.sec__content p {
  font-size: 16px;
  color: var(--teal-soft);
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 300;
}
.sec__findings {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sec__findings li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-soft);
  line-height: 1.5;
  letter-spacing: .01em;
}
.sec__findings li::before {
  content: '→';
  color: var(--coral);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.sec__case {
  background: var(--teal-deep);
  border-radius: 3px;
  padding: 36px;
  color: var(--white);
}
.sec__case-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 20px;
}
.sec__case h4 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 600;
  line-height: 1.35;
}
.sec__metrics { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.sec__metric {
  background: rgba(255,255,255,.05);
  border-radius: 2px;
  padding: 16px 20px;
  border-left: 2px solid var(--coral);
}
.sec__metric-v {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--coral-light);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.sec__metric-d { font-size: 13px; color: rgba(255,255,255,.4); }
.sec__note { font-size: 13px; color: rgba(255,255,255,.3); font-style: italic; line-height: 1.6; }

/* ══════════════════════════════════════
   BENEFICIOS
══════════════════════════════════════ */
.ben__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.ben__left h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--teal-deep);
  margin-bottom: 16px;
}
.ben__left > p {
  font-size: 17px;
  color: var(--teal-soft);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 40px;
}
.ben__list { display: flex; flex-direction: column; gap: 28px; }
.ben__item { display: flex; gap: 18px; align-items: flex-start; }
.ben__icon {
  width: 44px;
  height: 44px;
  background: var(--coral-pale);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ben__item h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 4px;
  letter-spacing: .01em;
}
.ben__item p { font-size: 14px; color: var(--teal-soft); line-height: 1.65; }

/* Ben Visual */
.ben__visual {
  background: var(--teal-deep);
  border-radius: 3px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.ben__visual::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,122,89,.07) 0%, transparent 65%);
  border-radius: 50%;
}
.ben__visual-title {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 32px;
}
.ben__row {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.ben__row:last-of-type { border-bottom: none; }
.ben__row-l {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-weight: 300;
}
.ben__row-v {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--coral-light);
  text-align: right;
  letter-spacing: -.01em;
}
.ben__row-v small {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  display: block;
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0;
}
.ben__row-v--alert { color: #e08080; }
.ben__row-v--green { color: #5cb98c; }
.ben__note {
  font-size: 11px;
  color: rgba(255,255,255,.22);
  margin-top: 28px;
  font-style: italic;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   DIFERENCIACIÓN
══════════════════════════════════════ */
.dif__wrapper { overflow-x: auto; }
.dif__table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(30,45,43,.08);
}
.dif__table thead tr { background: var(--teal-deep); }
.dif__table thead th {
  padding: 18px 22px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: left;
  color: rgba(255,255,255,.4);
}
.dif__th--highlight { color: var(--coral-light) !important; }
.dif__table tbody tr {
  background: var(--white);
  border-bottom: 1px solid rgba(30,45,43,.05);
  transition: background .15s;
}
.dif__table tbody tr:last-child { border-bottom: none; }
.dif__table tbody tr:hover { background: rgba(255,122,89,.025); }
.dif__table td {
  padding: 16px 22px;
  font-size: 14px;
  color: var(--teal-soft);
  vertical-align: middle;
}
.dif__table td:first-child {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-deep);
}
.dif__highlight { background: rgba(255,122,89,.04) !important; }
.dif__check { color: #3a7a52; font-size: 15px; font-weight: 700; }
.dif__x { color: #c0392b; font-size: 13px; }
.dif__partial { color: var(--teal-muted); font-size: 13px; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq__list {
  max-width: 740px;
  margin: 0 auto;
}
.faq__item { border-bottom: 1px solid rgba(30,45,43,.1); }
.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color .2s;
  letter-spacing: .01em;
}
.faq__question:hover { color: var(--coral); }
.faq__toggle {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(30,45,43,.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--teal-muted);
  transition: all .2s;
  line-height: 1;
}
.faq__question[aria-expanded="true"] .faq__toggle {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  transform: rotate(45deg);
}
.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s var(--ease), padding .25s;
}
.faq__answer:not([hidden]) {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq__answer[hidden] { display: block !important; max-height: 0; padding-bottom: 0; }
.faq__answer p {
  font-size: 15px;
  color: var(--teal-soft);
  line-height: 1.75;
  font-weight: 300;
}

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.cta__bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,122,89,.06) 0%, transparent 65%);
  pointer-events: none;
}
.cta__content { position: relative; z-index: 1; }
.cta__content h2 {
  font-size: clamp(32px, 5vw, 54px);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.1;
}
.cta__content h2 em { font-style: italic; color: var(--coral-light); }
.cta__content > p {
  font-size: 17px;
  color: rgba(255,255,255,.45);
  max-width: 520px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.7;
}
.cta__form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 3px;
  padding: 44px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.cta__form h3 {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 6px;
  font-weight: 600;
}
.cta__form > p {
  font-size: 14px;
  color: rgba(255,255,255,.38);
  margin-bottom: 32px;
  font-weight: 300;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form__group label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  font-weight: 300;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(255,255,255,.22); }
.form__group select option { background: var(--teal-mid); color: var(--white); }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: rgba(255,122,89,.55);
  background: rgba(255,122,89,.04);
}
.form__group textarea { resize: vertical; min-height: 90px; }
.form__submit {
  width: 100%;
  padding: 16px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  margin-top: 8px;
}
.form__submit:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,122,89,.4);
}
.form__note {
  font-size: 12px;
  color: rgba(255,255,255,.22);
  text-align: center;
  margin-top: 16px;
  font-weight: 300;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: #0f1a19;
  padding: 64px 0 40px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.footer__logo strong { font-weight: 700; color: var(--coral); }
.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,.22);
  line-height: 1.65;
  font-weight: 300;
}
.footer__col h5 {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,.32);
  text-decoration: none;
  transition: color .2s;
  font-weight: 300;
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.04);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,.18); font-weight: 300; }
.footer__bottom a { color: rgba(255,255,255,.18); text-decoration: none; transition: color .2s; }
.footer__bottom a:hover { color: var(--white); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }
.reveal--delay-4 { transition-delay: .4s; }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 88px; }

  .hero__grid { grid-template-columns: 1fr; }
  .hcard { display: none; }

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

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
  .steps::before { display: none; }

  .oport__grid { grid-template-columns: repeat(2, 1fr); }
  .hz__grid-cards { grid-template-columns: repeat(2, 1fr); }
  .ben__grid { grid-template-columns: 1fr; gap: 60px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
══════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-pad: 72px;
    --wrap-pad: 20px;
  }

  body { font-size: 16px; }

  /* Nav */
  .nav__inner { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  /* Hero */
  .hero { padding: 100px 0 64px; }
  .hero__stats { gap: 28px; }
  .hero__stat-n { font-size: 28px; }

  /* Sections */
  .section__header { margin-bottom: 48px; }
  .prob__grid { grid-template-columns: 1fr; }
  .prob__quote { padding: 28px 24px; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .oport__grid { grid-template-columns: 1fr; }
  .hz__grid-cards { grid-template-columns: 1fr; }
  .sec__tabs { flex-wrap: wrap; width: 100%; border-radius: 3px; }
  .sec__tab { border-right: none; border-bottom: 1px solid rgba(30,45,43,.12); width: 50%; justify-content: center; }
  .sec__tab:nth-child(3), .sec__tab:nth-child(4) { border-bottom: none; }
  .sec__panel--active,
  .sec__panel[aria-hidden="false"] { grid-template-columns: 1fr; gap: 32px; }
  .form__row { grid-template-columns: 1fr; }
  .cta__form { padding: 28px 20px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .dif__table td, .dif__table th { padding: 12px 14px; font-size: 13px; }
}

/* ══════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
