/* ===================================================
   EDS DIGITAL — style.css (desktop)
   Versión limpia: sin duplicados, sin !important en exceso,
   font-weight corregidos a valores estándar (100–900).
   =================================================== */

:root {
  --bg: #050711;
  --bg-soft: #090d1d;
  --panel: rgba(255,255,255,.075);
  --panel-strong: rgba(255,255,255,.115);
  --line: rgba(255,255,255,.13);
  --line-strong: rgba(255,255,255,.22);
  --text: #f6f8ff;
  --muted: #aab4cc;
  --muted-soft: #7f8aa6;
  --cyan: #5ee7ff;
  --blue: #7584ff;
  --violet: #b56cff;
  --gold: #f4bd76;
  --green: #65f2bb;
  --danger: #ff6f90;
  --shadow: 0 32px 110px rgba(0,0,0,.46);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(94,231,255,.28), transparent 31%),
    radial-gradient(circle at 86% 9%, rgba(181,108,255,.24), transparent 28%),
    radial-gradient(circle at 70% 58%, rgba(244,189,118,.10), transparent 32%),
    linear-gradient(180deg, #050711 0%, #060918 44%, #080c1c 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 76%);
  opacity: .25;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,.025) 48%, transparent 49%),
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.035), transparent 40%);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

img {
  max-width: 100%;
}

img[src=""],
img:not([src]) {
  display: none;
}

/* ===== LAYOUT ===== */

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

/* ===== HEADER & NAV ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(5,7,17,.82);
  backdrop-filter: blur(24px);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-real {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-real-logo {
  display: block;
  width: 232px;
  max-width: min(52vw, 232px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 34px rgba(94,231,255,.16));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(246,248,255,.76);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: .22s ease;
}

.nav-links a:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.nav-cta {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 17px;
  border-radius: 999px;
  color: #06101e;
  font-size: 14px;
  font-weight: 900;
  background: linear-gradient(135deg, #fbfeff, #aef4ff 42%, #909bff);
  box-shadow: 0 18px 52px rgba(94,231,255,.18);
  transition: .22s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 76px rgba(94,231,255,.26);
}

.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.075);
  border-radius: 15px;
  padding: 10px 13px;
  cursor: pointer;
  transition: .2s ease;
}

.mobile-menu-btn:hover {
  background: rgba(255,255,255,.12);
}

/* ===== SECTIONS ===== */

.section {
  position: relative;
  padding: 104px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: end;
  gap: 34px;
  margin-bottom: 52px;
}

#enfoque .section-heading,
#soluciones .section-heading,
#trabajos .section-heading,
#planes .section-heading {
  align-items: start;
}

.section-kicker {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 13px;
}

.section-title {
  font-size: clamp(38px, 5.4vw, 78px);
  line-height: .95;
}

.section-lead {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

/* ===== TYPOGRAPHY ===== */

h1, h2, h3 {
  font-family: Manrope, Inter, sans-serif;
  margin: 0;
  letter-spacing: -.065em;
}

/* ===== CARDS ===== */

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.042));
  box-shadow: 0 24px 78px rgba(0,0,0,.25);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(94,231,255,.12), transparent 28%);
  pointer-events: none;
}

.card > * {
  position: relative;
  z-index: 1;
}

/* ===== BUTTONS ===== */

.btn {
  border: 0;
  cursor: pointer;
  min-height: 54px;
  padding: 0 21px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: -.02em;
  transition: .22s ease;
}

.btn-primary {
  color: #06101e;
  background: linear-gradient(135deg, #fbfeff, #aef4ff 42%, #909bff);
  box-shadow: 0 25px 78px rgba(94,231,255,.23);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 92px rgba(94,231,255,.34);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,.16);
  color: #f8fbff;
  background: rgba(255,255,255,.07);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.29);
}

/* ===== CHIPS ===== */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 21px;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.06);
  color: rgba(246,248,255,.86);
  font-size: 12px;
  font-weight: 800;
}

/* ===== REVEAL ANIMATION ===== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* ===== HERO ===== */

.hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(70px, 8vw, 112px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  gap: clamp(42px, 5vw, 76px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  width: max-content;
  border: 1px solid rgba(94,231,255,.24);
  background: rgba(94,231,255,.085);
  color: #d8f7ff;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 24px rgba(101,242,187,.82);
}

.hero-title {
  margin-top: 22px;
  max-width: 720px;
  font-size: clamp(56px, 6.3vw, 108px);
  line-height: .88;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, #ffffff 0%, #d5fbff 30%, #d9dfff 60%, #ffe1b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subtitle {
  margin: 28px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
  letter-spacing: -.025em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-proof {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-pill {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  color: rgba(246,248,255,.82);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-media {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: center;
  width: 100%;
}

.premium-site-showcase {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  max-height: 760px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  box-shadow: 0 36px 120px rgba(0,0,0,.38);
}

.premium-site-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,7,17,0) 72%, rgba(5,7,17,.18) 100%),
    radial-gradient(circle at 50% 0%, rgba(94,231,255,.06), transparent 34%);
}

.premium-site-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 3;
}

.hero-metric-card {
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(8,12,28,.72);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 58px rgba(0,0,0,.24);
}

.hero-metric-card small {
  display: block;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 8px;
}

.hero-metric-card strong {
  display: block;
  color: #fff;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: .98;
  letter-spacing: -.055em;
  margin-bottom: 8px;
}

.hero-metric-card span {
  display: block;
  color: rgba(246,248,255,.78);
  font-size: 14px;
  line-height: 1.45;
}

/* ===== TRUTH SECTION ===== */

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

.truth-card {
  min-height: 270px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.truth-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(94,231,255,.10);
  border: 1px solid rgba(94,231,255,.18);
  color: var(--cyan);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 22px;
}

/* ===== STATEMENT ===== */

.statement {
  padding: 14px 0;
}

.statement-box {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 6vw, 76px);
  background:
    radial-gradient(circle at 12% 0%, rgba(94,231,255,.15), transparent 28%),
    radial-gradient(circle at 88% 100%, rgba(181,108,255,.13), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.038));
  box-shadow: 0 36px 110px rgba(0,0,0,.34);
}

.statement-box h2 {
  font-size: clamp(40px, 6vw, 98px);
  line-height: .9;
  max-width: 1080px;
}

.statement-box p {
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.68;
  max-width: 740px;
  margin: 26px 0 0;
}

/* ===== TRANSFORMATION GRID ===== */

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.compare-panel {
  padding: 30px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-label {
  display: inline-flex;
  width: max-content;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 1px solid rgba(255,255,255,.13);
  color: rgba(246,248,255,.82);
  background: rgba(5,7,17,.46);
}

.compare-panel h3 {
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1;
}

.compare-panel p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: rgba(246,248,255,.82);
  font-size: 15px;
  line-height: 1.45;
}

.check-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
}

.check-list.bad li::before {
  content: "×";
  color: var(--danger);
  font-weight: 900;
}

.check-list.good li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

/* ===== INDUSTRIES / ENFOQUE ===== */

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

.industry-card {
  min-height: 448px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.038));
  transition: .24s ease;
}

.industry-card > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.industry-card:hover {
  transform: translateY(-7px);
  border-color: rgba(94,231,255,.30);
  background: linear-gradient(180deg, rgba(94,231,255,.10), rgba(255,255,255,.045));
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(94,231,255,0), rgba(94,231,255,.26), rgba(181,108,255,0));
  opacity: .65;
}

.industry-visual {
  position: relative;
  height: 186px;
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 0;
  background: rgba(255,255,255,.03);
}

.industry-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,7,17,0) 0%, rgba(5,7,17,.12) 55%, rgba(5,7,17,.24) 100%);
  pointer-events: none;
}

.industry-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
  transform: scale(1.01);
}

.industry-card h3 {
  font-size: clamp(28px, 2.4vw, 34px);
  line-height: .98;
  margin: 0;
}

.industry-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}

.industry-card .chips {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ===== MODULES / SOLUCIONES ===== */

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

.module-card {
  min-height: 328px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
}

.module-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(94,231,255,.22);
  border-radius: 20px;
  background: rgba(94,231,255,.105);
  color: var(--cyan);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 24px;
}

/* ===== ARQUITECTURA / EXPERIENCE PANEL ===== */

.experience-panel {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 24px;
  align-items: stretch;
}

.selector-card {
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
}

.selector-card h3 {
  font-size: 34px;
  margin-bottom: 14px;
}

.rubros {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.rubro-btn {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  color: rgba(246,248,255,.84);
  border-radius: 17px;
  padding: 14px 15px;
  text-align: left;
  cursor: pointer;
  font-weight: 800;
  transition: .2s ease;
}

.rubro-btn:hover,
.rubro-btn.active {
  background: rgba(94,231,255,.12);
  border-color: rgba(94,231,255,.35);
  color: #fff;
  transform: translateX(3px);
}

.rubro-display {
  padding: 28px;
  min-height: 520px;
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
}

.rubro-mockup {
  min-height: 420px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(94,231,255,.22), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.105), rgba(255,255,255,.04));
  padding: 18px;
  box-shadow: 0 28px 86px rgba(0,0,0,.28);
}

.real-mockup {
  padding: 0;
  overflow: hidden;
}

.rubro-real-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 30px;
}

.rubro-copy h3 {
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: .96;
  margin-bottom: 18px;
}

.rubro-copy p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.rubro-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.rubro-features li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: rgba(246,248,255,.84);
  line-height: 1.45;
}

.rubro-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

/* ===== CASES ===== */

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

.case-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.038));
  box-shadow: 0 24px 78px rgba(0,0,0,.25);
  display: flex;
  flex-direction: column;
  min-height: 500px;
  transition: .24s ease;
}

.case-card:hover {
  transform: translateY(-7px);
  border-color: rgba(94,231,255,.30);
  background: linear-gradient(180deg, rgba(94,231,255,.10), rgba(255,255,255,.045));
}

.case-large {
  grid-column: span 12;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: stretch;
}

.case-image {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  background: rgba(255,255,255,.035);
}

.case-large .case-image {
  min-height: 560px;
}

.case-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
}

.case-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,7,17,0) 42%, rgba(5,7,17,.34) 100%),
    radial-gradient(circle at 20% 0%, rgba(94,231,255,.13), transparent 32%);
  pointer-events: none;
}

.case-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.case-card:not(.case-large) .case-content {
  justify-content: flex-start;
}

.case-tag {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(94,231,255,.19);
  background: rgba(94,231,255,.10);
  color: #dffbff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.case-content h3 {
  font-family: Manrope, Inter, sans-serif;
  margin: 0;
  font-size: clamp(34px, 4vw, 62px);
  line-height: .95;
  letter-spacing: -.06em;
}

.case-card:not(.case-large) .case-content h3 {
  font-size: 32px;
}

.case-content p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.case-content .chips {
  margin-top: 6px;
}

/* ===== PROCESS ===== */

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.process-step {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  padding: 20px;
  min-height: 250px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
}

.process-step strong {
  display: block;
  color: var(--cyan);
  font-size: 13px;
  margin-bottom: 34px;
  font-weight: 900;
}

.process-step h3 {
  font-size: 22px;
  letter-spacing: -.045em;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  font-size: 14px;
}

/* ===== PLANS ===== */

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

.plan-card {
  padding: 26px;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card.featured {
  border-color: rgba(94,231,255,.32);
  background:
    radial-gradient(circle at 50% 0%, rgba(94,231,255,.20), transparent 34%),
    linear-gradient(180deg, rgba(94,231,255,.11), rgba(255,255,255,.045));
}

.plan-name {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}

.plan-card h3 {
  font-size: 31px;
  letter-spacing: -.05em;
  line-height: 1.02;
  margin-bottom: 14px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 13px;
  color: rgba(246,248,255,.78);
  font-size: 14px;
  line-height: 1.45;
}

.plan-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
}

.plan-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

/* ===== CONTACTO ===== */

.contact-section {
  padding: 48px 0 112px;
}

.contact-box {
  display: grid;
  gap: 22px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 0% 0%, rgba(94,231,255,.18), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(181,108,255,.16), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  box-shadow: 0 36px 110px rgba(0,0,0,.34);
}

.contact-box-premium {
  grid-template-columns: minmax(0, .92fr) minmax(360px, .86fr);
  grid-template-areas:
    "copy visual"
    "form visual";
  align-items: stretch;
}

.contact-box-premium .contact-copy { grid-area: copy; min-width: 0; }
.contact-box-premium .contact-form { grid-area: form; min-width: 0; }

.contact-copy h2 {
  font-size: clamp(40px, 5.4vw, 78px);
  line-height: .94;
}

.contact-copy p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
  max-width: 535px;
  margin-top: 20px;
}

.contact-highlights {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-highlight {
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  padding: 14px 16px;
  color: rgba(246,248,255,.84);
  line-height: 1.45;
}

.contact-emails {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}

.contact-email-card {
  position: relative;
  min-height: 98px;
  padding: 18px 54px 18px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(circle at 0% 0%, rgba(94,231,255,.15), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  color: #fff;
  display: grid;
  align-content: space-between;
  gap: 12px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(0,0,0,.16);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.contact-email-card:hover {
  transform: translateY(-4px);
  border-color: rgba(94,231,255,.34);
  box-shadow: 0 24px 70px rgba(94,231,255,.12);
}

.contact-email-card::after {
  content: "↗";
  position: absolute;
  right: 15px;
  top: 15px;
  width: 27px;
  height: 27px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.11);
  color: rgba(246,248,255,.78);
  font-size: 13px;
  font-weight: 900;
}

.contact-email-label {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  color: #dffbff;
  background: rgba(94,231,255,.11);
  border: 1px solid rgba(94,231,255,.18);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
}

.contact-email-card strong {
  display: block;
  min-width: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -.025em;
  overflow-wrap: anywhere;
}

.contact-whatsapp-action {
  margin-top: 22px;
}

.contact-whatsapp-btn,
.contact-submit-btn {
  width: auto;
  min-width: 0;
  max-width: max-content;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  justify-self: start;
}

/* Panel visual de contacto */

.contact-visual-panel {
  grid-area: visual;
  position: relative;
  min-height: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  overflow: hidden;
  background: radial-gradient(circle at 20% 0%, rgba(94,231,255,.18), transparent 34%), rgba(5,7,18,.38);
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
}

.contact-visual-image {
  position: absolute;
  inset: 0;
}

.contact-visual-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #050711;
  object-position: center center;
  filter: saturate(.96) contrast(1.03);
}

.contact-visual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,7,17,.08) 0%, rgba(5,7,17,.16) 46%, rgba(5,7,17,.76) 100%);
  pointer-events: none;
}

.contact-visual-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  padding: 20px;
  background: rgba(6,10,24,.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 58px rgba(0,0,0,.32);
}

.contact-visual-card span {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  color: #dffbff;
  background: rgba(94,231,255,.12);
  border: 1px solid rgba(94,231,255,.18);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-visual-card strong {
  display: block;
  color: #fff;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: .95;
  letter-spacing: -.06em;
  margin-bottom: 10px;
}

.contact-visual-card small {
  display: block;
  color: rgba(246,248,255,.76);
  font-size: 14px;
  line-height: 1.45;
}

/* Formulario */

.contact-form {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  padding: clamp(18px, 2.6vw, 26px);
  background: radial-gradient(circle at 100% 0%, rgba(181,108,255,.12), transparent 32%), rgba(5,7,18,.28);
  box-shadow: 0 22px 70px rgba(0,0,0,.16);
  display: grid;
  gap: 13px;
}

.contact-form .field textarea {
  min-height: 126px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: rgba(246,248,255,.78);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(5,7,18,.48);
  color: var(--text);
  border-radius: 16px;
  padding: 14px;
  outline: none;
  transition: .2s ease;
}

.field select option {
  color: #0b1020;
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(94,231,255,.48);
  box-shadow: 0 0 0 4px rgba(94,231,255,.10);
}

/* ===== FOOTER ===== */

.site-footer {
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(5,7,18,.48);
  padding: 36px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 800;
}

.footer-links a:hover {
  color: #fff;
}

/* ===== HIDDEN LEGACY ELEMENTS ===== */
/* Clases de versiones anteriores que ya no se usan en el HTML actual */

.brand-logo,
.brand-mark,
.brand-copy,
.brand-text-fallback,
.hero-plaque,
.hero-signature,
.hero-stat,
.transformation-stage,
.floating-card,
.visual-orb,
.local-box,
.local-visual,
.local-card,
.local-icon,
.local-chip {
  display: none;
}

/* ===================================================
   RESPONSIVE — 1120px (tablet/laptop)
   =================================================== */

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

  .hero-media {
    order: -1;
    max-width: 820px;
    margin-inline: auto;
  }

  .premium-site-showcase {
    aspect-ratio: 16 / 12;
    max-height: 680px;
  }

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

  .section-heading,
  .experience-panel {
    grid-template-columns: 1fr;
  }

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

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

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

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .nav-links.open {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 88px;
    display: grid;
    gap: 6px;
    padding: 14px;
    background: rgba(5,7,17,.96);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 22px;
    box-shadow: var(--shadow);
    z-index: 100;
  }

  .case-card,
  .case-large {
    grid-column: span 12;
  }

  .case-large {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .case-large .case-image {
    min-height: 380px;
  }

  .rubro-display {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-box-premium {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "visual" "form";
  }

  .contact-visual-panel {
    min-height: 420px;
  }
}

/* ===================================================
   RESPONSIVE — 760px (mobile)
   =================================================== */

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

  .nav {
    min-height: 72px;
  }

  .brand-real-logo {
    width: 176px;
    max-width: 176px;
  }

  .nav-cta {
    display: none;
  }

  .nav-links.open {
    top: 74px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 34px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-media {
    gap: 12px;
  }

  .premium-site-showcase {
    aspect-ratio: 4 / 5;
    border-radius: 24px;
  }

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

  .hero-metric-card {
    padding: 15px;
    border-radius: 18px;
  }

  .hero-metric-card strong {
    font-size: 25px;
  }

  .hero-copy .hero-title,
  .hero-title {
    font-size: clamp(45px, 13vw, 66px);
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .truth-grid,
  .transformation-grid,
  .modules-grid,
  .rubro-display,
  .plans-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .industry-card {
    min-height: auto;
    padding: 18px;
  }

  .industry-visual {
    height: 172px;
    border-radius: 18px;
  }

  .industry-card h3 {
    font-size: 26px;
  }

  .industry-card p,
  .section-lead,
  .contact-copy p {
    font-size: 16px;
  }

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

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

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

  .process-step strong {
    margin-bottom: 18px;
  }

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

  .case-image,
  .case-large .case-image {
    min-height: 230px;
  }

  .case-content {
    padding: 20px;
  }

  .case-content h3,
  .case-card:not(.case-large) .case-content h3 {
    font-size: 30px;
  }

  .case-content p {
    font-size: 16px;
  }

  .cases-grid {
    gap: 18px;
  }

  .case-card {
    min-height: auto;
    border-radius: 24px;
  }

  .contact-visual-panel {
    min-height: 420px;
    border-radius: 24px;
  }

  .contact-visual-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    border-radius: 20px;
    padding: 16px;
  }

  .contact-email-card {
    min-height: auto;
  }

  .contact-form {
    padding: 18px;
    border-radius: 24px;
  }

  .contact-whatsapp-btn,
  .contact-submit-btn {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }
}
