/*
 * Tema visual alineado al landing Dash de Zentro Data Group.
 * Mantiene intactos el contenido, la estructura y la lógica de la subweb.
 */

:root {
  --dash-bg-main: #f4f7fb;
  --dash-bg-alt: #eaf0f6;
  --dash-surface: #ffffff;
  --dash-surface-soft: #f8fbff;
  --dash-line: #c9d6e5;
  --dash-ink-900: #10243a;
  --dash-ink-700: #2b4966;
  --dash-ink-500: #5b7693;
  --dash-brand-950: #0b2136;
  --dash-brand-900: #143a63;
  --dash-brand-700: #1c588b;
  --dash-brand-500: #2f79bb;
  --dash-accent: #d57b1a;
  --dash-accent-strong: #b86208;
  --dash-success: #1f7a61;
  --dash-shadow: 0 14px 36px rgba(16, 36, 58, 0.12);
  --dash-shadow-strong: 0 22px 54px rgba(7, 25, 43, 0.22);
  --dash-radius-lg: 18px;
  --dash-radius-md: 12px;
  --dash-radius-sm: 8px;
  --dash-maxw: 1180px;
}

html {
  scroll-padding-top: 94px;
}

#inicio,
#enfoque,
#precios,
#adicionales,
#proceso,
#faq,
#contacto {
  scroll-margin-top: 94px;
}

body {
  color: var(--dash-ink-900);
  background: var(--dash-bg-main);
  font-family: "Segoe UI", "Trebuchet MS", Verdana, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  display: none;
}

::selection {
  color: #ffffff;
  background: var(--dash-brand-700);
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(213, 123, 26, 0.75);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--dash-maxw));
}

.skip-link {
  color: var(--dash-ink-900);
  background: #ffffff;
  border-radius: 0 0 var(--dash-radius-sm) 0;
}

/* Cabecera */
.topbar {
  position: sticky;
  top: 0;
  min-height: 94px;
  color: #ffffff;
  background: rgba(11, 33, 54, 0.95);
  border-bottom: 1px solid rgba(201, 214, 229, 0.24);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.topbar.is-scrolled {
  background: rgba(11, 33, 54, 0.98);
  border-color: rgba(201, 214, 229, 0.2);
  box-shadow: 0 8px 24px rgba(4, 18, 31, 0.18);
}

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

.topbar-inner {
  min-height: 94px;
  gap: 16px;
}

.brand {
  gap: 12px;
  color: #ffffff;
}

.brand img,
.topbar.is-scrolled .brand img {
  width: 53px;
  height: 53px;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand-copy {
  gap: 4px;
  line-height: 1;
}

.brand-copy strong {
  color: #ffffff;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: 0.2px;
}

.brand-copy small {
  margin-top: 0;
  color: #d2deea;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: none;
}

.main-nav {
  justify-content: flex-start;
  gap: 8px;
}

.main-nav > a:not(.nav-cta) {
  min-height: 0;
  padding: 8px 10px;
  color: #e6eef8;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: var(--dash-radius-sm);
}

.main-nav > a:not(.nav-cta)::after {
  display: none;
}

.main-nav > a:not(.nav-cta):hover,
.main-nav > a:not(.nav-cta):focus-visible {
  color: #ffffff;
  background: rgba(47, 121, 187, 0.18);
  border-color: rgba(201, 214, 229, 0.35);
}

@media (min-width: 1081px) {
  .topbar-inner {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .brand {
    flex: 0 0 auto;
  }

  .main-nav {
    flex: 1 1 auto;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 6px;
  }

  .desktop-only {
    flex: 0 0 auto;
    margin-left: auto;
  }
}

.menu-toggle {
  width: 44px;
  height: 42px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--dash-radius-sm);
}

.menu-toggle span {
  background: #ffffff;
}

/* Botones */
.btn {
  min-height: 44px;
  padding: 13px 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.005em;
  border-radius: var(--dash-radius-sm);
  box-shadow: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(16, 36, 58, 0.2);
}

.btn-primary {
  color: #ffffff;
  background: var(--dash-accent);
  border-color: transparent;
  box-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: #ffffff;
  background: var(--dash-accent-strong);
}

.btn-secondary {
  color: var(--dash-brand-900);
  background: #ffffff;
  border-color: var(--dash-line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--dash-brand-950);
  background: #f3f7fb;
  border-color: #b5c7da;
}

.btn-large {
  min-height: 48px;
  padding: 13px 21px;
}

/* Hero */
.hero {
  min-height: 86vh;
  display: grid;
  align-items: center;
  padding: 0;
  color: #ffffff;
  font-family: "Segoe UI", "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.5;
  background:
    linear-gradient(90deg, rgba(7, 28, 47, 0.96) 0%, rgba(10, 43, 72, 0.86) 48%, rgba(15, 61, 98, 0.62) 100%),
    url("../img/dash-theme/dash_hero.webp") center 44% / cover no-repeat;
  border: 0;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(3, 16, 28, 0.18), transparent 38%, rgba(3, 16, 28, 0.22)),
    radial-gradient(circle at 82% 28%, rgba(73, 158, 224, 0.18), transparent 30%);
}

.hero::after {
  display: none;
}

.hero-grid,
.hero-glow {
  display: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: 0;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 26px;
  align-items: center;
  padding-block: 54px;
}

.hero-copy {
  color: #ffffff;
  max-width: none;
}

.eyebrow,
.section-kicker {
  gap: 9px;
  color: var(--dash-brand-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.eyebrow {
  display: inline-block;
  width: fit-content;
  margin: 0 0 12px;
  padding: 6px 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(202, 219, 236, 0.48);
  border-radius: 999px;
}

.hero .eyebrow::before {
  display: none;
}

.eyebrow::before,
.section-kicker::before {
  width: 7px;
  height: 7px;
  background: var(--dash-accent);
  box-shadow: 0 0 0 4px rgba(213, 123, 26, 0.14);
}

.hero h1 {
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: normal;
  text-shadow: none;
}

.hero h1 span {
  color: #ffdba9;
}

.hero-subtitle {
  max-width: 65ch;
  margin: 18px 0 0;
  color: #dfe9f4;
  font-size: 17px;
  line-height: inherit;
}

.hero-actions {
  gap: 12px;
  margin-top: 24px;
}

.hero-actions .btn {
  min-height: initial;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: normal;
  border: 0;
  border-radius: var(--dash-radius-sm);
}

.hero-actions .btn-primary {
  background: var(--dash-accent);
  border-color: transparent;
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-primary:focus-visible {
  background: var(--dash-accent-strong);
}

.hero-actions .btn-secondary {
  color: var(--dash-brand-900);
  background: #ffffff;
  border: 1px solid var(--dash-line);
}

.hero-note {
  margin: 14px 0 0;
  color: #d3e2f1;
  font-size: 13px;
  font-weight: 600;
}

.hero-badges {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: initial;
  padding: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 400;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-badges li::before {
  position: static;
  color: #7be0b0;
  font-size: inherit;
  font-weight: 700;
  line-height: 1.2;
  content: "✔";
}

.hero-badges strong {
  color: #ffffff;
  font-weight: 700;
}

.hero-visual {
  align-self: center;
  justify-self: stretch;
}

.hero-proof-stack {
  display: grid;
  gap: 12px;
  width: 100%;
  margin-left: 0;
}

.hero-proof-card {
  min-height: 0;
  padding: 16px;
  color: var(--dash-ink-900);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(201, 214, 229, 0.9);
  border-radius: var(--dash-radius-md);
  box-shadow: var(--dash-shadow);
  backdrop-filter: none;
}

.hero-proof-card h3 {
  margin: 0;
  color: var(--dash-brand-900);
  font-size: 34px;
  font-weight: 700;
  line-height: normal;
}

.hero-proof-card p {
  margin: 5px 0 0;
  color: var(--dash-ink-700);
  font-size: 14px;
  line-height: inherit;
}

.visual-frame {
  min-height: 430px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--dash-radius-lg);
  box-shadow: var(--dash-shadow-strong);
  backdrop-filter: blur(12px);
}

.visual-frame::before {
  inset: 16px;
  background: linear-gradient(145deg, rgba(47, 121, 187, 0.08), rgba(234, 240, 246, 0.52));
  border: 1px solid rgba(47, 121, 187, 0.15);
  border-radius: var(--dash-radius-md);
}

.visual-frame img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 20px 26px rgba(16, 36, 58, 0.17));
}

.visual-label {
  top: 28px;
  right: 28px;
  min-height: 32px;
  padding: 6px 10px;
  color: var(--dash-brand-900);
  font-size: 11px;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(47, 121, 187, 0.18);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(16, 36, 58, 0.12);
}

.status-dot {
  background: var(--dash-success);
  box-shadow: 0 0 0 4px rgba(31, 122, 97, 0.14);
}

/* Bases de sección */
.focus-section,
.section-block,
.clients-section,
.extras-section,
.faq-section,
.final-contact-section {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
}

.focus-section,
.problem-section,
.clients-section,
.extras-section,
.faq-section {
  color: var(--dash-ink-900);
  background-color: var(--dash-bg-main);
  border: 0;
  isolation: isolate;
}

.focus-section::before,
.problem-section::before,
.clients-section::before,
.extras-section::before,
.faq-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: url("../img/dash-theme/dash_office2.webp") center / cover no-repeat;
}

.focus-section::after,
.problem-section::after,
.clients-section::after,
.extras-section::after,
.faq-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(244, 247, 251, 0.93);
}

.problem-section::before,
.extras-section::before {
  background-image: url("../img/dash-theme/dash_office3.webp");
}

.problem-section::after,
.extras-section::after {
  background: rgba(244, 247, 251, 0.95);
}

.section-head {
  max-width: 800px;
  margin-bottom: 38px;
}

.section-head .section-kicker {
  justify-content: center;
}

.section-head h2,
.section-head-left h2,
.faq-intro h2,
.final-contact-copy h2,
.benefits-copy h2 {
  color: var(--dash-ink-900);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 770;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section-head > p:last-child,
.section-head-left > p:last-child,
.faq-intro > p:not(.section-kicker) {
  max-width: 740px;
  color: var(--dash-ink-500);
  font-size: 16px;
  line-height: 1.6;
}

.section-head-left {
  margin-bottom: 38px;
}

/* Tarjetas generales */
.focus-grid,
.problem-grid,
.service-family-grid,
.client-grid,
.extras-grid {
  gap: 18px;
}

.focus-card,
.problem-card,
.service-family-card,
.client-card,
.extra-card {
  border-radius: var(--dash-radius-md);
  box-shadow: var(--dash-shadow);
}

.focus-card,
.problem-card,
.client-card,
.extra-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(201, 214, 229, 0.82);
  backdrop-filter: blur(8px);
}

.focus-card:hover,
.problem-card:hover,
.client-card:hover,
.extra-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 121, 187, 0.42);
  box-shadow: 0 20px 42px rgba(16, 36, 58, 0.16);
}

.focus-card {
  min-height: 220px;
  padding: 26px;
}

.focus-card::after {
  height: 4px;
  background: linear-gradient(90deg, var(--dash-brand-500), var(--dash-accent));
}

.focus-number,
.extra-index,
.client-index {
  color: var(--dash-brand-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.focus-card h3,
.problem-card h3,
.service-family-card h3,
.client-card h3,
.extra-card h3 {
  color: var(--dash-ink-900);
  font-size: 19px;
  font-weight: 750;
  line-height: 1.28;
}

.focus-card p,
.problem-card p,
.client-card > p,
.extra-card > p:last-child {
  color: var(--dash-ink-500);
  font-size: 14px;
  line-height: 1.65;
}

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

.focus-card {
  position: relative;
}

.focus-card .focus-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  color: #ffffff;
  background: var(--dash-brand-700);
  border: 4px solid rgba(228, 240, 250, 0.95);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(20, 58, 99, 0.18);
}

.focus-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.problem-section {
  padding: 76px 0;
}

.problem-card {
  min-height: 220px;
  padding: 25px;
}

.problem-icon {
  width: 46px;
  height: 46px;
  color: var(--dash-brand-700);
  background: rgba(47, 121, 187, 0.1);
  border: 1px solid rgba(47, 121, 187, 0.18);
  border-radius: var(--dash-radius-sm);
}

/* Secciones oscuras fotográficas */
.services-section,
.benefits-section,
.pricing-section,
.process-section,
.demo-section,
.final-contact-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  border: 0;
  isolation: isolate;
}

.services-section {
  padding: 76px 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 46, 0.94), rgba(13, 52, 85, 0.86)),
    url("../img/dash-theme/dash_hero.webp") center / cover no-repeat;
}

.services-grid-bg,
.demo-grid-bg {
  display: none;
}

.services-section .section-kicker,
.demo-section .section-kicker,
.benefits-section .section-kicker,
.process-section .section-kicker,
.pricing-section .section-kicker,
.final-contact-section .section-kicker {
  color: #9bd0f4;
}

.services-section .section-head h2,
.demo-section .section-head h2,
.pricing-section .section-head h2,
.process-section .section-head h2,
.benefits-copy h2,
.final-contact-copy h2 {
  color: #ffffff;
}

.services-section .section-head > p:last-child,
.demo-section .section-head > p:last-child,
.pricing-section .section-head > p:last-child,
.process-section .section-head > p:last-child,
.benefits-copy > p:not(.section-kicker),
.final-contact-copy > p:not(.section-kicker) {
  color: rgba(232, 242, 251, 0.78);
}

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

.service-family-card {
  min-height: 300px;
  padding: 25px;
  color: var(--dash-ink-900);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--dash-radius-lg);
  box-shadow: 0 16px 38px rgba(1, 15, 27, 0.22);
  backdrop-filter: blur(10px);
}

.service-family-card::after {
  height: 4px;
  background: linear-gradient(90deg, var(--dash-brand-500), var(--dash-accent));
}

.service-family-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 50px rgba(1, 15, 27, 0.3);
}

.service-family-card.is-featured {
  color: #ffffff;
  background: rgba(24, 76, 119, 0.97);
  border-color: rgba(150, 208, 246, 0.34);
}

.service-family-card.is-featured h3,
.service-family-card.is-featured > p,
.service-family-card.is-featured li {
  color: #ffffff;
}

.service-family-card.is-featured > p {
  color: rgba(232, 242, 251, 0.76);
}

.service-family-top {
  margin-bottom: 18px;
}

.service-family-code {
  color: var(--dash-brand-700);
}

.service-family-label,
.client-badge {
  color: var(--dash-brand-700);
  background: rgba(47, 121, 187, 0.09);
  border: 1px solid rgba(47, 121, 187, 0.16);
  border-radius: 999px;
}

.service-family-card.is-featured .service-family-code,
.service-family-card.is-featured .service-family-label {
  color: #ffffff;
}

.service-family-card.is-featured .service-family-label {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-family-card > p,
.service-family-card li {
  color: var(--dash-ink-500);
  font-size: 14px;
}

.service-family-card li::before,
.client-card li::before,
.project-price-card li::before {
  color: var(--dash-accent);
}

.services-cta {
  margin-top: 22px;
  padding: 21px 23px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--dash-radius-md);
  box-shadow: 0 12px 30px rgba(1, 15, 27, 0.15);
  backdrop-filter: blur(10px);
}

.services-cta strong {
  color: #ffffff;
}

.services-cta p {
  color: rgba(232, 242, 251, 0.75);
}

/* Clientes */
.clients-section {
  background-color: var(--dash-bg-alt);
}

.client-card {
  min-height: 330px;
  padding: 25px;
}

.client-card.is-primary {
  color: #ffffff;
  background: #184c77;
  border-color: rgba(47, 121, 187, 0.32);
}

.client-card.is-primary .client-badge {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.client-card.is-primary h3,
.client-card.is-primary li {
  color: #ffffff;
}

.client-card.is-primary > p {
  color: rgba(232, 242, 251, 0.75);
}

/* Beneficios */
.benefits-section {
  padding: 82px 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 46, 0.96), rgba(13, 52, 85, 0.78)),
    url("../img/dash-theme/dash_hero.webp") center 38% / cover no-repeat;
}

.benefits-layout {
  gap: clamp(36px, 6vw, 76px);
}

.benefit-list {
  gap: 12px;
}

.benefit-list li {
  min-height: 92px;
  padding: 18px 20px;
  color: var(--dash-ink-900);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--dash-radius-md);
  box-shadow: 0 14px 34px rgba(1, 15, 27, 0.22);
  backdrop-filter: blur(10px);
}

.benefit-list li > span:first-child {
  color: var(--dash-brand-700);
  background: rgba(47, 121, 187, 0.1);
  border-radius: var(--dash-radius-sm);
}

.benefit-list strong {
  color: var(--dash-ink-900);
}

.benefit-list small {
  color: var(--dash-ink-500);
}

/* Precios */
.pricing-section {
  padding: 80px 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 46, 0.95), rgba(13, 52, 85, 0.78)),
    url("../img/dash-theme/dash_office1.webp") center / cover no-repeat;
}

.pricing-browser {
  overflow: hidden;
  background: rgba(244, 247, 251, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--dash-radius-lg);
  box-shadow: 0 24px 60px rgba(1, 15, 27, 0.32);
  backdrop-filter: blur(12px);
}

.pricing-tabs {
  padding: 8px;
  gap: 7px;
  background: #e4ebf3;
  border-bottom: 1px solid var(--dash-line);
}

.pricing-tab {
  min-height: 58px;
  color: var(--dash-ink-700);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--dash-radius-sm);
}

.pricing-tab:hover {
  color: var(--dash-brand-900);
  background: rgba(255, 255, 255, 0.64);
}

.pricing-tab.is-active {
  color: #ffffff;
  background: var(--dash-brand-700);
  border-color: rgba(47, 121, 187, 0.26);
  box-shadow: 0 10px 22px rgba(20, 58, 99, 0.2);
}

.pricing-tab small {
  color: inherit;
  opacity: 0.68;
}

.pricing-panel {
  padding: 30px;
}

.pricing-panel-head {
  padding-bottom: 23px;
  border-bottom: 1px solid var(--dash-line);
}

.pricing-segment-badge {
  color: var(--dash-brand-700);
  background: rgba(47, 121, 187, 0.09);
  border: 1px solid rgba(47, 121, 187, 0.16);
  border-radius: 999px;
}

.pricing-panel-head h3 {
  color: var(--dash-ink-900);
}

.pricing-panel-head p {
  color: var(--dash-ink-500);
}

.pricing-segment-cta {
  color: var(--dash-brand-700);
  border-color: var(--dash-brand-500);
  border-radius: var(--dash-radius-sm);
}

.pricing-segment-cta:hover,
.pricing-segment-cta:focus-visible {
  color: #ffffff;
  background: var(--dash-brand-700);
}

.project-price-grid {
  gap: 16px;
}

.project-price-card {
  padding: 23px;
  background: #ffffff;
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-md);
  box-shadow: 0 12px 28px rgba(16, 36, 58, 0.09);
}

.project-price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 121, 187, 0.42);
}

.project-price-label,
.project-recommended {
  color: var(--dash-brand-700);
  background: rgba(47, 121, 187, 0.09);
  border: 1px solid rgba(47, 121, 187, 0.15);
  border-radius: 999px;
}

.project-price-card h4,
.project-price {
  color: var(--dash-ink-900);
}

.project-price {
  font-size: 27px;
}

.project-description,
.project-price-card li {
  color: var(--dash-ink-500);
}

.recurring-prices {
  padding: 24px;
  background: var(--dash-bg-alt);
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-md);
}

.recurring-title span {
  color: var(--dash-brand-700);
  background: rgba(47, 121, 187, 0.1);
  border-radius: var(--dash-radius-sm);
}

.recurring-title strong,
.recurring-grid h4 {
  color: var(--dash-ink-900);
}

.recurring-grid article {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(201, 214, 229, 0.9);
  border-radius: var(--dash-radius-sm);
}

.recurring-grid p {
  color: var(--dash-brand-700);
}

.recurring-grid small {
  color: var(--dash-ink-500);
}

.pricing-notice {
  color: #ffffff;
  background: rgba(7, 27, 46, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--dash-radius-md);
  backdrop-filter: blur(12px);
}

.notice-mark {
  color: #ffffff;
  background: var(--dash-accent);
  border-radius: var(--dash-radius-sm);
}

.pricing-notice p {
  color: rgba(232, 242, 251, 0.75);
}

/* Precios con lenguaje visual de Planes Dash */
.pricing-section .container {
  width: min(calc(100% - 48px), 1520px);
}

.pricing-section .section-head {
  max-width: 760px;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.pricing-section .section-head h2 {
  max-width: 680px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
}

.pricing-section .section-head > p:last-child {
  max-width: 760px;
  margin-right: 0;
  margin-left: 0;
  font-size: 16px;
  color: #f4f9ff;
}

.pricing-browser {
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.pricing-tabs {
  width: min(100%, 920px);
  margin: 20px auto 18px;
  overflow: hidden;
  padding: 8px;
  gap: 8px;
  background: rgba(7, 27, 46, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--dash-radius-lg);
  box-shadow:
    0 22px 48px rgba(1, 15, 27, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px) saturate(1.08);
}

.pricing-tabs .pricing-tab {
  color: var(--dash-brand-950);
  background: #eef5fb;
  border: 1px solid #c8d8e8;
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 8px 20px rgba(1, 15, 27, 0.12);
  backdrop-filter: none;
}

.pricing-tabs .pricing-tab:hover,
.pricing-tabs .pricing-tab:focus-visible {
  color: var(--dash-brand-950);
  background: #ffffff;
  border-color: #a9bfd4;
}

.pricing-tabs .pricing-tab.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #1c588b, #143a63);
  border-color: rgba(255, 255, 255, 0.66);
  box-shadow:
    0 12px 28px rgba(1, 15, 27, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.pricing-panel {
  min-height: 0;
  padding: 0;
  outline: none;
}

.pricing-panel-head {
  display: block;
  max-width: 760px;
  margin: 0 0 22px;
  padding: 0;
  color: #ffffff;
  border-bottom: 0;
}

.pricing-panel-head h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 24px;
}

.pricing-panel-head p {
  max-width: 760px;
  color: #e7f2fb;
  font-size: 15px;
}

.pricing-segment-badge {
  margin-bottom: 10px;
  color: #dbe8f4;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 214, 229, 0.35);
  border-radius: 999px;
}

.pricing-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.project-plan-card {
  position: relative;
  min-height: 100%;
  padding: 22px;
  color: var(--dash-ink-900);
  background: rgba(248, 251, 255, 0.98);
  border: 1px solid rgba(201, 214, 229, 0.95);
  border-radius: var(--dash-radius-lg);
  box-shadow: 0 18px 44px rgba(1, 15, 27, 0.22);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project-plan-card h3 {
  margin: 0;
  color: var(--dash-ink-900);
  font-size: 22px;
  line-height: 1.15;
}

.project-plan-label {
  margin: 0;
  color: var(--dash-ink-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-price {
  min-height: 76px;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: var(--dash-brand-900);
}

.project-price-range {
  min-height: 62px;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 4px;
  white-space: nowrap;
}

.price-prefix {
  align-self: center;
  margin-right: 2px;
  color: var(--dash-ink-700);
  font-size: 14px;
  font-weight: 800;
}

.project-price-range .price-prefix {
  align-self: baseline;
  font-size: 13px;
}

.project-price-range .price-currency {
  font-size: clamp(22px, 1.55vw, 26px);
}

.price-currency {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.price-value {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.price-value-long {
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.02;
}

.project-price-range .price-value-long {
  font-size: clamp(21px, 1.55vw, 26px);
  line-height: 1;
  letter-spacing: -0.025em;
}

.price-period {
  margin-top: 8px;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.price-value-long + .price-period {
  flex-basis: 100%;
  margin-top: -4px;
  margin-left: 56px;
}

.project-price-range .price-value-long + .price-period {
  flex-basis: auto;
  margin-top: 0;
  margin-left: 0;
}

.project-price-range .price-period {
  align-self: flex-start;
  margin-top: 5px;
  font-size: 10px;
}

.project-offer-label {
  width: fit-content;
  margin: -2px 0 0;
  padding: 5px 9px;
  color: var(--dash-accent-strong);
  background: rgba(213, 123, 26, 0.12);
  border: 1px solid rgba(213, 123, 26, 0.22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-recommended-line {
  min-height: 0;
  margin: -2px 0 0;
  color: var(--dash-ink-700);
  font-size: 13px;
  font-weight: 700;
}

.plan-tagline {
  min-height: 68px;
  margin: 0;
  color: var(--dash-ink-700);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.project-plan-card .btn {
  width: 100%;
  margin-top: 2px;
  justify-content: center;
}

.plan-includes {
  margin: 4px 0 0;
  color: var(--dash-ink-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-plan-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: var(--dash-ink-700);
  font-size: 14px;
}

.plan-featured {
  color: #ffffff;
  background: linear-gradient(170deg, #103559 0%, #1c588b 100%);
  border-color: transparent;
  box-shadow: 0 18px 48px rgba(1, 15, 27, 0.3);
}

.plan-featured h3,
.plan-featured .project-plan-label,
.plan-featured .project-price,
.plan-featured .price-prefix,
.plan-featured .project-offer-label,
.plan-featured .project-recommended-line,
.plan-featured .plan-tagline,
.plan-featured .plan-includes,
.plan-featured ul {
  color: #edf4fc;
}

.plan-featured .project-offer-label {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.badge {
  position: absolute;
  top: -12px;
  right: 16px;
  padding: 6px 11px;
  color: #ffffff;
  background: var(--dash-accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.pricing-recurring-table {
  margin-top: 18px;
}

.plan-compare-wrap {
  background: rgba(9, 29, 48, 0.34);
  border: 1px solid rgba(201, 214, 229, 0.35);
  border-radius: var(--dash-radius-md);
  padding: 14px;
}

.plan-compare-title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 18px;
}

.plan-compare-scroll {
  overflow-x: auto;
}

.plan-compare-table {
  width: 100%;
  min-width: 700px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  border-collapse: collapse;
  border-radius: 10px;
}

.plan-compare-table th,
.plan-compare-table td {
  padding: 10px 12px;
  color: var(--dash-ink-700);
  border: 1px solid #d8e3ef;
  font-size: 14px;
  text-align: left;
}

.plan-compare-table th {
  color: var(--dash-ink-900);
  background: #eff5fb;
  font-weight: 800;
}

.plan-compare-table tbody tr:nth-child(even) {
  background: #f8fbff;
}

.pricing-notice {
  width: min(100%, 920px);
  margin: 18px auto 0;
}

.pricing-section .legal-note.pricing-notice {
  display: block;
  width: 100%;
  margin: 18px 0 0;
  padding: 10px 12px;
  color: #d3e2f1;
  background: rgba(9, 29, 48, 0.38);
  border: 1px solid rgba(201, 214, 229, 0.35);
  border-radius: var(--dash-radius-sm);
  font-size: 13px;
  line-height: 1.45;
  backdrop-filter: none;
}

.pricing-section .legal-note.pricing-notice strong {
  display: inline;
  margin: 0;
  color: #ffffff;
  font-weight: 800;
}

/* Adicionales */
.extra-card {
  min-height: 250px;
  padding: 24px;
}

.extra-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 12px;
  color: var(--dash-brand-700);
  background: rgba(47, 121, 187, 0.1);
  border: 1px solid rgba(47, 121, 187, 0.2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.extra-price {
  color: var(--dash-brand-700);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.35;
}

.extras-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(201, 214, 229, 0.82);
  border-radius: var(--dash-radius-lg);
  box-shadow: var(--dash-shadow);
  backdrop-filter: blur(8px);
}

.extras-cta h3 {
  margin: 0 0 5px;
  color: var(--dash-ink-900);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.25;
}

.extras-cta p {
  margin: 0;
  color: var(--dash-ink-500);
  font-size: 14px;
  line-height: 1.55;
}

.commercial-rules {
  color: #ffffff;
  background: #102f4d;
  border: 1px solid rgba(47, 121, 187, 0.28);
  border-radius: var(--dash-radius-lg);
  box-shadow: var(--dash-shadow);
}

.commercial-rules-head h3,
.commercial-rule-grid strong {
  color: #ffffff;
}

.commercial-rules-head .section-kicker {
  color: #9bd0f4;
}

.commercial-rule-grid article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--dash-radius-sm);
}

.commercial-rule-grid article > span {
  color: #ffffff;
  background: var(--dash-brand-500);
  border-radius: var(--dash-radius-sm);
}

.commercial-rule-grid p {
  color: rgba(232, 242, 251, 0.72);
}

/* Proceso */
.process-section {
  padding: 82px 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 46, 0.95), rgba(13, 52, 85, 0.72)),
    url("../img/dash-theme/dash_steps.webp") center / cover no-repeat;
}

.process-timeline {
  gap: 15px;
}

.process-timeline::before {
  background: rgba(255, 255, 255, 0.24);
}

.process-step {
  min-height: 250px;
  padding: 23px;
  color: var(--dash-ink-900);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--dash-radius-md);
  box-shadow: 0 15px 36px rgba(1, 15, 27, 0.22);
  backdrop-filter: blur(8px);
}

.process-number {
  color: #ffffff;
  background: var(--dash-brand-700);
  border: 4px solid rgba(228, 240, 250, 0.95);
  box-shadow: 0 8px 20px rgba(20, 58, 99, 0.22);
}

.process-label {
  color: var(--dash-brand-700);
}

.process-step h3 {
  color: var(--dash-ink-900);
}

.process-step > div > p:last-child {
  color: var(--dash-ink-500);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comparison-panel {
  min-height: 100%;
  padding: 26px;
  color: var(--dash-ink-900);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--dash-radius-lg);
  box-shadow: 0 18px 44px rgba(1, 15, 27, 0.24);
  backdrop-filter: blur(10px);
}

.comparison-after {
  color: #ffffff;
  background: linear-gradient(170deg, rgba(16, 53, 89, 0.96) 0%, rgba(28, 88, 139, 0.94) 100%);
  border-color: rgba(255, 255, 255, 0.18);
}

.comparison-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201, 214, 229, 0.64);
}

.comparison-after .comparison-head {
  border-color: rgba(255, 255, 255, 0.18);
}

.comparison-badge {
  width: fit-content;
  padding: 6px 10px;
  color: var(--dash-brand-700);
  background: rgba(47, 121, 187, 0.1);
  border: 1px solid rgba(47, 121, 187, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-after .comparison-badge {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.comparison-head h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
}

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

.comparison-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 14px;
  background: rgba(236, 244, 252, 0.72);
  border: 1px solid rgba(201, 214, 229, 0.82);
  border-radius: var(--dash-radius-sm);
}

.comparison-after .comparison-list li {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.comparison-list li > span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #ffffff;
  background: var(--dash-brand-700);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.comparison-after .comparison-list li > span {
  color: var(--dash-brand-950);
  background: #8ce7d0;
}

.comparison-list strong {
  display: block;
  margin-bottom: 4px;
  color: inherit;
  font-size: 15px;
}

.comparison-list p {
  margin: 0;
  color: var(--dash-ink-500);
  font-size: 14px;
  line-height: 1.55;
}

.comparison-after .comparison-list p {
  color: rgba(237, 244, 252, 0.78);
}

.process-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* Demos */
.demo-section {
  padding: 80px 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 46, 0.96), rgba(13, 52, 85, 0.8)),
    url("../img/dash-theme/dash_hero.webp") center 62% / cover no-repeat;
}

.demo-browser {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--dash-radius-lg);
  box-shadow: 0 24px 60px rgba(1, 15, 27, 0.3);
}

.demo-tabs {
  padding: 8px;
  gap: 6px;
  background: var(--dash-bg-alt);
  border-bottom: 1px solid var(--dash-line);
}

.demo-tab {
  color: var(--dash-ink-700);
  background: transparent;
  border-radius: var(--dash-radius-sm);
}

.demo-tab:hover {
  background: rgba(255, 255, 255, 0.72);
}

.demo-tab.is-active {
  color: #ffffff;
  background: var(--dash-brand-700);
  box-shadow: 0 9px 20px rgba(20, 58, 99, 0.2);
}

.demo-panel {
  padding: 30px;
  color: var(--dash-ink-900);
}

.demo-product {
  color: var(--dash-brand-700);
  background: rgba(47, 121, 187, 0.09);
  border: 1px solid rgba(47, 121, 187, 0.16);
  border-radius: 999px;
}

.demo-copy h3 {
  color: var(--dash-ink-900);
}

.demo-copy > p,
.demo-copy li {
  color: var(--dash-ink-500);
}

.demo-copy li::before {
  color: var(--dash-accent);
}

.demo-image-button {
  overflow: hidden;
  background: var(--dash-bg-alt);
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-md);
  box-shadow: 0 16px 36px rgba(16, 36, 58, 0.14);
}

.demo-image-button > span {
  color: #ffffff;
  background: rgba(11, 33, 54, 0.9);
  border-radius: var(--dash-radius-sm);
}

.demo-disclaimer {
  color: #ffffff;
  background: rgba(7, 27, 46, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--dash-radius-md);
  backdrop-filter: blur(10px);
}

.demo-disclaimer span {
  color: #ffffff;
  background: var(--dash-accent);
  border-radius: var(--dash-radius-sm);
}

.demo-disclaimer p {
  color: rgba(232, 242, 251, 0.76);
}

/* Secciones clonadas desde Dash: FAQ, contacto y footer */
.section {
  padding: 76px 0;
}

.section h2 {
  margin: 0 0 10px;
  color: var(--dash-ink-900);
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.2;
}

.section-sub {
  margin: 0;
  color: var(--dash-ink-700);
}

.section-faq {
  position: relative;
  background-image:
    linear-gradient(150deg, rgba(236, 244, 252, 0.97) 0%, rgba(242, 247, 252, 0.96) 100%),
    url("../img/dash-theme/OFICINA2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.faq-item {
  overflow: clip;
  background: #ffffff;
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-md);
  box-shadow: none;
  backdrop-filter: none;
}

.faq-item:hover {
  border-color: var(--dash-line);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  position: relative;
  width: 100%;
  padding: 14px 46px 14px 18px;
  color: var(--dash-ink-900);
  background: #ffffff;
  border: 0;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--dash-brand-700);
  font-size: 22px;
  line-height: 1;
  content: "+";
  transform: translateY(-50%);
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-symbol {
  display: none;
}

.faq-answer {
  padding: 0 18px 16px;
  color: var(--dash-ink-700);
  font-size: 14px;
}

.faq-answer p {
  color: inherit;
}

.section-contact {
  position: relative;
  background-image: url("../img/dash-theme/FONDO_HTML_BIENVENIDO.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(8, 28, 47, 0.9), rgba(20, 58, 99, 0.72));
  backdrop-filter: blur(1px);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.contact-copy {
  color: #ffffff;
}

.contact-copy h2 {
  color: #ffffff;
}

.contact-copy p {
  color: #d7e4f1;
}

.contact-copy ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.contact-copy li {
  color: #d7e4f1;
}

.contact-copy a {
  color: #ffffff;
}

.contact-form {
  display: grid;
  gap: 8px;
  padding: 20px;
  color: var(--dash-ink-900);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(201, 214, 229, 0.88);
  border-radius: var(--dash-radius-lg);
}

.contact-form h3 {
  margin: 0 0 6px;
  color: var(--dash-ink-900);
}

.contact-form label {
  color: var(--dash-ink-900);
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  color: var(--dash-ink-900);
  background: #ffffff;
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-sm);
  font: inherit;
}

.form-feedback {
  min-height: 22px;
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.form-feedback.error {
  color: #b03a2e;
}

.form-feedback.ok {
  color: var(--dash-success);
}

.policy-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  margin: 6px 0 4px;
  padding: 11px 12px;
  color: var(--dash-ink-700);
  background: rgba(236, 244, 252, 0.72);
  border: 1px solid rgba(30, 78, 120, 0.22);
  border-radius: var(--dash-radius-sm);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.policy-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--dash-brand-700);
}

.policy-consent a {
  color: var(--dash-brand-700);
  font-weight: 800;
}

/* Modal */
.demo-modal {
  background: rgba(4, 18, 31, 0.78);
  backdrop-filter: blur(8px);
}

.demo-modal-panel {
  background: #ffffff;
  border: 1px solid rgba(201, 214, 229, 0.9);
  border-radius: var(--dash-radius-lg);
  box-shadow: 0 28px 80px rgba(1, 15, 27, 0.42);
}

.demo-modal-close {
  color: #ffffff;
  background: var(--dash-brand-950);
  border-radius: var(--dash-radius-sm);
}

.demo-modal-kicker {
  color: var(--dash-brand-700);
}

.demo-modal-panel h2 {
  color: var(--dash-ink-900);
}

.demo-modal-panel img {
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-md);
}

/* Footer y WhatsApp */
.footer {
  color: #dbe8f4;
  background: #0e2235;
  border-top: 1px solid rgba(201, 214, 229, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
  gap: 16px;
  align-items: start;
  padding: 26px 0;
}

.footer-grid p {
  margin: 6px 0 0;
  color: #b4cae0;
  font-size: 14px;
}

.footer-nav {
  display: grid;
  gap: 6px;
}

.footer-nav a {
  color: #eaf3fb;
  font-size: 14px;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.whatsapp-float {
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: #1f9d66;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(6, 35, 24, 0.3);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #168554;
  box-shadow: 0 18px 36px rgba(6, 35, 24, 0.36);
}

/* Movimiento */
.reveal {
  transform: translateY(18px);
}

.reveal.is-visible {
  transform: translateY(0);
}

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

/* Tablet y navegación compacta */
@media (max-width: 1080px) {
  .topbar-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: none;
    padding: 12px;
    background: rgba(11, 33, 54, 0.985);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--dash-radius-md);
    box-shadow: 0 20px 44px rgba(1, 15, 27, 0.32);
    backdrop-filter: blur(16px);
  }

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

  .main-nav > a:not(.nav-cta) {
    justify-content: flex-start;
    padding: 11px 12px;
  }

  .nav-cta {
    min-height: 44px;
    margin-top: 4px;
    padding: 11px 14px;
    color: #ffffff;
    background: var(--dash-accent);
    border-radius: var(--dash-radius-sm);
  }

  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-layout {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 44px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    width: min(100%, 650px);
    margin: 0;
  }

  .hero-proof-stack {
    width: 100%;
    margin-left: 0;
  }

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

  .benefits-layout,
  .faq-layout,
  .final-contact-card {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 80px;
  }

  #inicio,
  #enfoque,
  #precios,
  #adicionales,
  #proceso,
  #faq,
  #contacto {
    scroll-margin-top: 80px;
  }

  .container {
    width: min(calc(100% - 30px), var(--dash-maxw));
  }

  .topbar,
  .topbar-inner {
    min-height: 80px;
  }

  .brand img,
  .topbar.is-scrolled .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    font-size: 12px;
  }

  .hero {
    padding: 0;
    background-position: 58% center;
  }

  .hero h1 {
    font-size: clamp(30px, 4.4vw, 50px);
  }

  .hero-layout {
    gap: 38px;
  }

  .focus-section,
  .problem-section,
  .services-section,
  .clients-section,
  .benefits-section,
  .pricing-section,
  .extras-section,
  .process-section,
  .demo-section,
  .faq-section,
  .final-contact-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .service-family-grid,
  .project-price-grid,
  .recurring-grid,
  .commercial-rule-grid {
    grid-template-columns: 1fr;
  }

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

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

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .pricing-tabs,
  .demo-tabs {
    grid-template-columns: 1fr;
  }

  .pricing-tab,
  .demo-tab {
    justify-content: flex-start;
    text-align: left;
  }

  .pricing-panel,
  .demo-panel {
    padding: 22px;
  }

  .pricing-panel-head {
    align-items: flex-start;
  }

  .process-timeline::before {
    display: none;
  }
}

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

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 24px), var(--dash-maxw));
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    display: none;
  }

  .main-nav {
    right: 12px;
    left: 12px;
  }

  .hero {
    padding: 0;
    background-position: 64% center;
  }

  .hero::before {
    background: rgba(4, 22, 38, 0.34);
  }

  .hero h1 {
    font-size: clamp(30px, 4.4vw, 50px);
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-layout {
    padding-block: 38px 48px;
  }

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

  .hero-proof-card {
    min-height: 0;
    padding: 16px;
  }

  .visual-frame {
    min-height: 320px;
    padding: 11px;
    border-radius: var(--dash-radius-md);
  }

  .visual-frame::before {
    inset: 11px;
  }

  .visual-frame img {
    max-height: 300px;
  }

  .visual-label {
    top: 20px;
    right: 20px;
  }

  .focus-grid,
  .problem-grid,
  .client-grid,
  .extras-grid,
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .section-head-left h2,
  .faq-intro h2,
  .final-contact-copy h2,
  .benefits-copy h2 {
    font-size: clamp(27px, 8.5vw, 36px);
  }

  .focus-card,
  .problem-card,
  .service-family-card,
  .client-card,
  .extra-card,
  .process-step {
    min-height: 0;
    padding: 21px;
  }

  .extras-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
  }

  .extras-cta .btn {
    width: 100%;
  }

  .pricing-browser,
  .demo-browser,
  .commercial-rules,
  .final-contact-card {
    border-radius: var(--dash-radius-md);
  }

  .pricing-panel,
  .demo-panel {
    padding: 18px;
  }

  .project-price-card,
  .recurring-prices,
  .contact-action-card {
    padding: 20px;
  }

  .final-contact-card {
    padding: 24px 18px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}
