: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,
#como-funciona,
#planes,
#galeria,
#nichos,
#beneficios,
#faq,
#contacto {
  scroll-margin-top: 94px;
}

body.public-shell {
  color: var(--dash-ink-900);
  background:
    radial-gradient(circle at 10% 0%, rgba(47, 121, 187, 0.11), transparent 28%),
    linear-gradient(180deg, #eef4fa 0%, var(--dash-bg-main) 34%, #ffffff 100%);
  font-family: "Segoe UI", "Trebuchet MS", Verdana, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.public-shell.nav-open {
  overflow: hidden;
}

body.public-shell {
  overflow-x: hidden;
}

body.public-shell::before {
  display: none;
}

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

body.public-shell a,
body.public-shell button {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

.public-shell .desktop-only {
  display: inline-flex;
}

.public-shell .mobile-only {
  display: none;
}

.public-shell .btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--dash-radius-sm);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.public-shell .btn:hover,
.public-shell .btn:focus-visible {
  transform: translateY(-2px);
}

.public-shell .btn-primary {
  color: #ffffff;
  background: var(--dash-accent);
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(181, 98, 8, 0.2);
}

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

.public-shell .btn-secondary {
  color: var(--dash-brand-900);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(201, 214, 229, 0.78);
}

.public-shell .btn-large {
  min-height: 52px;
  padding: 0 22px;
}

/* Cabecera igualada al landing hermano */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  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 {
  display: grid;
  min-height: 94px;
  grid-template-columns: minmax(240px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  justify-self: start;
  color: #ffffff;
  text-decoration: none;
}

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

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.brand-copy small {
  margin-top: 2px;
  color: #d7e4f1;
  font-size: 13px;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.topbar .nav-actions.desktop-only {
  display: inline-flex;
}

.nav-actions {
  justify-self: end;
  align-items: center;
  gap: 10px;
}

.btn-nav-login {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-nav-login:hover,
.btn-nav-login:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
}

.topbar .btn.desktop-only,
.topbar .nav-actions.desktop-only {
  justify-self: end;
}

.main-nav > a:not(.nav-cta) {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: var(--dash-radius-sm);
  color: #d7e4f1;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}

.main-nav > a:not(.nav-cta):hover,
.main-nav > a:not(.nav-cta):focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(177, 220, 243, 0.25);
  border-radius: 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

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

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

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

/* Hero con fondos de marca */
.hero {
  position: relative;
  min-height: calc(100vh - 94px);
  overflow: hidden;
  color: #ffffff;
  background-image:
    linear-gradient(110deg, rgba(7, 25, 43, 0.92) 0%, rgba(16, 58, 99, 0.84) 48%, rgba(7, 25, 43, 0.28) 100%),
    url("../img/dash-theme/dash_hero.webp");
  background-position: center 44%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 33, 54, 0.1), rgba(11, 33, 54, 0.34)),
    radial-gradient(circle at 12% 12%, rgba(213, 123, 26, 0.22), transparent 28%);
  content: "";
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100vh - 94px);
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: 52px;
  padding-block: 74px;
}

.hero-layout > *,
.hero-copy,
.hero-preview,
.topbar-inner,
.brand-copy {
  min-width: 0;
}

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

.section-kicker {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  color: #dbe8f4;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(201, 214, 229, 0.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 18px 0 16px;
  color: #ffffff;
  font-size: clamp(42px, 5.7vw, 72px);
  line-height: 0.98;
  overflow-wrap: break-word;
}

.hero p {
  max-width: 680px;
  margin: 0;
  color: #d7e4f1;
  font-size: 19px;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-trial-note {
  display: inline-flex;
  min-height: 0;
  max-width: 420px;
  align-items: center;
  margin: 0;
  padding: 0;
  color: #f7c47b;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
}

.hero-stats {
  display: grid;
  max-width: 680px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 32px 0 0;
}

.hero-stats div {
  padding: 15px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 214, 229, 0.18);
  border-radius: var(--dash-radius-md);
  backdrop-filter: blur(8px);
}

.hero-stats dt {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: #c9dcea;
  font-size: 13px;
  font-weight: 800;
}

.hero-preview {
  position: relative;
  min-height: 505px;
  padding: 18px;
  color: var(--dash-ink-900);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(201, 214, 229, 0.8);
  border-radius: var(--dash-radius-lg);
  box-shadow: var(--dash-shadow-strong);
}

.hero-preview::before {
  position: absolute;
  inset: 16px;
  z-index: -1;
  background: rgba(213, 123, 26, 0.2);
  filter: blur(32px);
  content: "";
}

.preview-browser {
  display: flex;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--dash-line);
}

.preview-browser span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--dash-accent);
}

.preview-browser span:nth-child(2) {
  background: #d8a646;
}

.preview-browser span:nth-child(3) {
  background: var(--dash-success);
}

.preview-hero {
  height: 160px;
  margin-top: 18px;
  border-radius: var(--dash-radius-md);
  background-image:
    linear-gradient(120deg, rgba(11, 33, 54, 0.72), rgba(47, 121, 187, 0.2)),
    url("../img/dash-theme/dash_steps.webp");
  background-position: center;
  background-size: cover;
}

.preview-lines {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.preview-lines span {
  height: 12px;
  border-radius: 999px;
  background: #dce7f4;
}

.preview-lines span:nth-child(1) {
  width: 76%;
  background: #9fc0e6;
}

.preview-lines span:nth-child(2) {
  width: 92%;
}

.preview-lines span:nth-child(3) {
  width: 58%;
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.preview-cards article {
  min-height: 92px;
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(234, 240, 246, 0.9));
}

.preview-footer {
  height: 46px;
  margin-top: 18px;
  border-radius: var(--dash-radius-md);
  background: linear-gradient(90deg, var(--dash-brand-950), var(--dash-brand-700));
}

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

.reveal.is-visible,
.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* Secciones internas */
.section {
  position: relative;
  padding: 76px 0;
  overflow: hidden;
  background: #ffffff;
}

.section:nth-of-type(even) {
  background: var(--dash-bg-main);
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.steps-heading {
  display: block;
  max-width: none;
}

.steps-heading h2 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 48px);
}

.steps-heading p {
  max-width: 860px;
  margin: 4px 0 0;
}

.steps-heading p strong {
  color: var(--dash-ink-900);
  font-size: 18px;
}

.section-heading p,
.benefit-grid > div > p,
.step-card p,
.plan-card p,
.plan-card li,
.benefit-list p {
  color: var(--dash-ink-700);
}

.section.section-steps {
  background-color: var(--dash-bg-main);
  background-image:
    linear-gradient(150deg, rgba(244, 247, 251, 0.9), rgba(255, 255, 255, 0.93)),
    url("../img/dash-theme/OFICINA2.jpg");
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}

.step-grid,
.plans-grid {
  display: grid;
  gap: 18px;
}

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

.step-card,
.plan-card,
.benefit-list article {
  min-height: 100%;
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-md);
  box-shadow: var(--dash-shadow);
}

.step-card {
  position: relative;
  display: flex;
  min-height: 146px;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  padding: 24px 26px 24px 86px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 121, 187, 0.09), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 254, 0.96));
  border-color: rgba(174, 195, 218, 0.98);
  box-shadow: 0 18px 42px rgba(16, 36, 58, 0.12);
}

.step-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--dash-brand-500), var(--dash-brand-900));
  content: "";
}

.step-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(47, 121, 187, 0.06), transparent 40%);
  content: "";
}

.step-card-title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step-card span {
  position: absolute;
  top: 0;
  left: -62px;
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(145deg, var(--dash-brand-500), var(--dash-brand-900));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(28, 88, 139, 0.25);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.step-card-title small {
  display: block;
  margin: 1px 0 4px;
  color: var(--dash-ink-500);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}

.step-card h3,
.plan-card h3,
.benefit-list h3 {
  margin: 12px 0 8px;
  color: var(--dash-ink-900);
}

.step-card-title h3 {
  margin: 0;
  font-size: 22px;
}

.step-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 540px;
  line-height: 1.55;
}

.step-card > strong {
  display: none;
}

.plans-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.section-plans {
  color: #ffffff;
  background:
    linear-gradient(125deg, rgba(11, 33, 54, 0.96), rgba(20, 58, 99, 0.86)),
    url("../img/dash-theme/dash_hero.webp") center / cover no-repeat;
}

.section-plans h2,
.section-plans .section-heading p {
  color: #ffffff;
}

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

.section-plans .section-heading > p:not(.plans-included-note):not(.plans-tax-note) {
  max-width: 780px;
  margin-inline: auto;
}

.plan-card {
  position: relative;
  display: grid;
  min-height: 100%;
  grid-template-rows: 28px 29px 72px 432px 46px 164px minmax(164px, 1fr);
  align-items: start;
  gap: 8px;
  overflow: hidden;
  padding: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 121, 187, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 255, 0.96));
  border-color: rgba(201, 214, 229, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 20px 46px rgba(8, 30, 50, 0.16);
}

.plan-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, rgba(47, 121, 187, 0.75), rgba(213, 123, 26, 0.65));
  content: "";
}

.plan-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.55), transparent 36%);
  content: "";
}

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

.plan-topline {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.plan-card h3 {
  min-height: 29px;
  margin: 0;
  color: var(--dash-ink-900);
  font-size: 23px;
  line-height: 1.2;
}

.plan-trial-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 7px 11px;
  color: var(--dash-accent-strong);
  background: rgba(213, 123, 26, 0.12);
  border: 1px solid rgba(213, 123, 26, 0.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
}

.plan-summary {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.plans-tax-note {
  max-width: 760px;
  margin: 10px auto 0 !important;
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.plans-included-note {
  width: fit-content;
  margin: 14px auto 0 !important;
  padding: 9px 14px;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.plan-pricing {
  display: grid;
  align-self: stretch;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, minmax(124px, 1fr));
  gap: 9px;
  padding: 8px;
  background: rgba(47, 121, 187, 0.055);
  border: 1px solid rgba(47, 121, 187, 0.16);
  border-radius: calc(var(--dash-radius-md) - 4px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.plan-price-block {
  display: grid;
  min-width: 0;
  grid-template-columns: 1fr;
  gap: 5px;
  align-items: start;
  min-height: 112px;
  padding: 10px 12px 10px 15px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(47, 121, 187, 0.12);
  border-radius: calc(var(--dash-radius-md) - 6px);
}

.plan-price-block-free {
  background:
    linear-gradient(90deg, rgba(213, 123, 26, 0.16), rgba(255, 255, 255, 0.86) 86%);
  box-shadow: inset 4px 0 0 rgba(213, 123, 26, 0.92);
}

.plan-price-block-activation {
  background:
    linear-gradient(90deg, rgba(47, 121, 187, 0.13), rgba(255, 255, 255, 0.82) 86%);
  box-shadow: inset 4px 0 0 rgba(47, 121, 187, 0.72);
}

.plan-price-block-monthly {
  background: rgba(255, 255, 255, 0.5);
}

.plan-price-block > span {
  display: block;
  min-height: 20px;
  color: var(--dash-ink-500);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.plan-price-block > strong {
  display: flex;
  min-height: 35px;
  align-items: center;
  color: var(--dash-brand-900);
  font-size: 35px;
  font-weight: 900;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}

.plan-price-block-activation > span,
.plan-price-block-activation > strong,
.plan-price-block-free > span,
.plan-price-block-free > strong,
.plan-price-block-monthly > span,
.plan-price-block-monthly > strong {
  grid-column: 1 / -1;
}

.plan-price-block-free > strong,
.plan-price-block-activation > strong {
  font-size: 35px;
  text-align: left;
}

.plan-price-block > strong small {
  color: inherit;
  margin-left: 3px;
  font-size: 15px;
  font-weight: 900;
}

.plan-price-block > small {
  display: block;
  grid-column: 1 / -1;
  min-height: 38px;
  color: var(--dash-ink-700);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.32;
}

.plan-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1px;
  color: var(--dash-brand-900);
  background: #ffffff;
  border-color: var(--dash-line);
  box-shadow: none;
  font-size: 16px;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.plan-card:not(.plan-featured) .plan-action {
  border: 2px solid rgba(20, 58, 99, 0.24);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.75),
    0 12px 24px rgba(20, 58, 99, 0.08);
}

.plan-action:hover,
.plan-action:focus-visible {
  color: #ffffff;
  background: var(--dash-accent);
  border-color: var(--dash-accent);
  transform: translateY(-1px);
}

.plan-include-title {
  margin: 0;
  color: var(--dash-ink-500);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-feature-group {
  display: grid;
  align-content: start;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(47, 121, 187, 0.14);
}

.plan-page-features,
.plan-monthly-features {
  min-height: 164px;
}

.plan-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.42;
}

.plan-card li::marker {
  color: var(--dash-brand-700);
}

.plan-featured {
  z-index: 1;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(74, 139, 202, 0.3), transparent 34%),
    linear-gradient(150deg, #0b2947 0%, #123e68 52%, #0a223b 100%);
  border: 1px solid rgba(237, 164, 75, 0.96);
  box-shadow:
    0 0 0 1px rgba(237, 164, 75, 0.78),
    0 24px 52px rgba(4, 18, 31, 0.38);
}

.plan-featured::before {
  background: linear-gradient(90deg, #f0a044, rgba(255, 255, 255, 0.92), #f0a044);
}

.plan-featured::after {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 40%);
}

.plan-featured h3,
.plan-featured li,
.plan-featured .plan-label,
.plan-featured .plan-include-title {
  color: #ffffff;
}

.plan-featured .plan-summary {
  color: rgba(255, 255, 255, 0.9);
}

.plan-featured .plan-pricing {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.plan-featured .plan-price-block-free {
  background: linear-gradient(90deg, rgba(213, 123, 26, 0.34), rgba(255, 255, 255, 0.075) 86%);
  box-shadow: inset 4px 0 0 #f0a044;
}

.plan-featured .plan-price-block-activation {
  background: linear-gradient(90deg, rgba(47, 121, 187, 0.26), rgba(255, 255, 255, 0.06) 86%);
  box-shadow: inset 4px 0 0 rgba(126, 184, 238, 0.86);
}

.plan-featured .plan-price-block {
  background-color: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.18);
}

.plan-featured .plan-price-block-monthly {
  background-color: rgba(255, 255, 255, 0.055);
}

.plan-featured .plan-price-block > span,
.plan-featured .plan-price-block > small {
  color: rgba(255, 255, 255, 0.82);
}

.plan-featured .plan-price-block > strong {
  color: #ffffff;
}

.plan-featured .plan-feature-group {
  border-color: rgba(255, 255, 255, 0.2);
}

.plan-featured li::marker {
  color: #f0a044;
}

.plan-badge {
  width: fit-content;
  margin: -4px 0 2px;
  padding: 8px 11px;
  color: var(--dash-brand-900);
  background: rgba(213, 123, 26, 0.12);
  border: 1px solid rgba(213, 123, 26, 0.24);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.plan-featured .plan-badge {
  color: #ffffff;
  background: rgba(213, 123, 26, 0.86);
  border-color: rgba(255, 255, 255, 0.18);
}

.plan-label {
  margin: 0;
  color: var(--dash-ink-500);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-featured .plan-trial-badge {
  color: #ffffff;
  background: rgba(213, 123, 26, 0.86);
  border-color: rgba(255, 255, 255, 0.22);
}

.plan-featured .plan-action {
  color: #ffffff;
  background: linear-gradient(135deg, var(--dash-accent), #f0a044);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 16px 30px rgba(4, 18, 31, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.plan-featured .plan-action:hover,
.plan-featured .plan-action:focus-visible {
  color: var(--dash-brand-900);
  background: #ffffff;
  border-color: #ffffff;
}

.plans-notes {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding: 18px 0 0;
  text-align: center;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(201, 214, 229, 0.28);
  border-radius: 0;
  box-shadow: none;
}

.plans-premium-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.plans-premium-note a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(213, 123, 26, 0.78);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* Galería comercial: los tres productos se comparan juntos y cada demo
   completa se recorre en un modal aislado del panel y de MySQL. */
.section.section-gallery {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 8%, rgba(47, 121, 187, 0.34), transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(213, 123, 26, 0.22), transparent 30%),
    linear-gradient(145deg, #071a2d 0%, #0b2136 52%, #102e4d 100%);
}

.section-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 92%);
}

.section-gallery .container {
  position: relative;
  z-index: 1;
}

.gallery-heading {
  max-width: 760px;
}

.gallery-heading .section-kicker {
  color: #f0a044;
}

.gallery-heading h2 {
  max-width: 700px;
  margin: 10px 0 12px;
  color: #ffffff;
}

.gallery-heading p {
  color: rgba(229, 240, 250, 0.82);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.gallery-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 24px 56px rgba(0, 9, 20, 0.3);
  backdrop-filter: blur(18px) saturate(1.18);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.gallery-card:hover,
.gallery-card:focus-within {
  transform: translateY(-7px);
  border-color: rgba(240, 160, 68, 0.72);
  box-shadow: 0 32px 68px rgba(0, 9, 20, 0.42);
}

.gallery-card-trigger {
  width: 100%;
  display: grid;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.gallery-card-media {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 16 / 10;
  background: #0b2136;
}

.gallery-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 12, 23, 0.58), transparent 55%);
}

.gallery-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-card:hover .gallery-card-media img,
.gallery-card:focus-within .gallery-card-media img {
  transform: scale(1.045);
}

.gallery-card-type {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 14px;
  left: 16px;
  width: fit-content;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(5, 23, 39, 0.76);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.gallery-card-informativa .gallery-card-type {
  background: rgba(28, 88, 139, 0.84);
}

.gallery-card-catalogo .gallery-card-type {
  background: rgba(181, 98, 8, 0.88);
}

.gallery-card-copy {
  min-height: 244px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.gallery-card-copy > strong {
  color: #ffffff;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.12;
}

.gallery-card-copy > span:not(.gallery-card-action) {
  margin-top: 13px;
  color: rgba(229, 240, 250, 0.78);
  line-height: 1.55;
}

.gallery-card-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
  color: #f0a044;
  font-weight: 900;
}

.gallery-card-action span {
  font-size: 20px;
  transition: transform 0.2s ease;
}

.gallery-card:hover .gallery-card-action span,
.gallery-card:focus-within .gallery-card-action span {
  transform: translateX(5px);
}

.section.section-niches {
  background-color: var(--dash-bg-main);
  background-image:
    linear-gradient(150deg, rgba(236, 244, 252, 0.9), rgba(255, 255, 255, 0.92)),
    url("../img/dash-theme/OFICINA2.jpg");
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}

.niche-float-field {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background:
    radial-gradient(circle at 18% 22%, rgba(47, 121, 187, 0.14), transparent 30%),
    radial-gradient(circle at 84% 74%, rgba(213, 123, 26, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(201, 214, 229, 0.9);
  border-radius: var(--dash-radius-lg);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.65),
    0 22px 48px rgba(16, 36, 58, 0.12);
}

.niche-float-field::before {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px dashed rgba(28, 88, 139, 0.18);
  border-radius: calc(var(--dash-radius-lg) - 6px);
  content: "";
}

.niche-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(10, max-content);
  justify-content: center;
  gap: 16px 8px;
}

.niche-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  color: var(--dash-brand-900);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 253, 0.94));
  border: 1px solid rgba(201, 214, 229, 0.9);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(16, 36, 58, 0.1);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  animation: nicheBob 5.2s ease-in-out infinite;
}

.niche-list span:nth-child(2n) {
  animation-delay: -1.2s;
}

.niche-list span:nth-child(3n) {
  animation-delay: -2.1s;
}

.niche-list span:nth-child(4n) {
  animation-delay: -3.1s;
}

.niche-list span:nth-child(5n) {
  animation-delay: -4s;
}

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

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

@media (prefers-reduced-motion: reduce) {
  .niche-list span {
    animation: none;
  }
}

.section.section-benefits {
  color: #ffffff;
  background-color: #0b2136;
  background-image:
    linear-gradient(125deg, rgba(7, 27, 47, 0.94), rgba(20, 58, 99, 0.86)),
    url("../img/dash-theme/dash_hero.webp");
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}

.section-benefits h2,
.section-benefits h3 {
  color: #ffffff;
}

.section-benefits p {
  color: #d7e4f1;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.benefit-heading {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.benefit-heading h2,
.benefit-heading p {
  max-width: none;
}

.benefit-heading h2 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
}

.section-benefits .benefit-heading p {
  max-width: 880px;
  margin: 14px auto 0;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.7;
  opacity: 1;
}

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

.benefit-list article {
  position: relative;
  overflow: hidden;
  color: var(--dash-ink-900);
}

.section-benefits .benefit-list article {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.7), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.96));
  border: 1px solid rgba(201, 214, 229, 0.82);
  border-radius: var(--dash-radius-lg);
  box-shadow: 0 18px 42px rgba(4, 18, 31, 0.22);
}

.benefit-card-head {
  position: relative;
  z-index: 1;
  display: block;
}

.benefit-card-head small {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 12px;
  padding: 9px 14px;
  color: var(--dash-accent-strong);
  background: rgba(213, 123, 26, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.section-benefits .benefit-list h3 {
  position: relative;
  margin: 0;
  color: var(--dash-ink-900);
  font-size: 22px;
  line-height: 1.2;
}

.section-benefits .benefit-list p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--dash-ink-700);
  line-height: 1.65;
}

.section-benefits .benefit-list strong {
  display: none;
}

/* FAQ, contacto y footer con el formato de la landing hermana */
.section-faq {
  position: relative;
  background-image:
    linear-gradient(150deg, rgba(236, 244, 252, 0.9) 0%, rgba(242, 247, 252, 0.92) 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;
}

.section-contact {
  position: relative;
  color: #ffffff;
  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-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.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%;
  min-height: 42px;
  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;
  min-height: 0;
  margin: 1px 0 0;
  accent-color: var(--dash-brand-700);
}

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

.footer {
  padding: 0;
  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 strong {
  color: #ffffff;
}

.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;
}

.legal-page {
  padding: 72px 0;
  background: var(--dash-bg-main);
}

.legal-document {
  max-width: 820px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-md);
  box-shadow: var(--dash-shadow);
}

.legal-document h1 {
  margin: 18px 0;
  color: var(--dash-ink-900);
  font-size: clamp(34px, 5vw, 54px);
}

.legal-content,
.legal-note {
  color: var(--dash-ink-700);
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .topbar-inner {
    grid-template-columns: 1fr auto;
  }

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

  .public-shell .desktop-only {
    display: none;
  }

  .public-shell .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,
  .main-nav.open {
    display: grid;
  }

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

  .public-shell .nav-auth.mobile-only {
    display: grid;
    gap: 8px;
    margin-top: 4px;
  }

  .nav-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    color: #ffffff;
    background: var(--dash-accent);
    border-radius: var(--dash-radius-sm);
    text-decoration: none;
  }

  .nav-cta.nav-login {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.24);
  }

  .hero {
    min-height: auto;
  }

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

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

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

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

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

  .niche-list {
    grid-template-columns: repeat(4, max-content);
  }

  .benefit-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-card:last-child {
    width: calc(50% - 10px);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .plans-grid .plan-card:last-child {
    width: calc(50% - 9px);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .footer-grid {
    gap: 22px;
  }
}

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

  #inicio,
  #como-funciona,
  #planes,
  #galeria,
  #nichos,
  #beneficios,
  #faq,
  #contacto {
    scroll-margin-top: 80px;
  }

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

  .public-shell .topbar .container {
    width: min(calc(100vw - 30px), 1520px);
  }

  .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 {
    background-position: 58% center;
  }

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

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

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

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

  .gallery-card:last-child {
    width: 100%;
    grid-column: auto;
  }

  .gallery-card-copy {
    min-height: 0;
  }

  .gallery-card-action {
    margin-top: 22px;
    padding-top: 0;
  }

  .plans-grid .plan-card:last-child {
    width: 100%;
    grid-column: auto;
  }

  .plan-card,
  .plan-featured {
    display: flex;
    flex-direction: column;
    align-content: start;
    grid-template-rows: none;
  }

  .plan-summary,
  .plan-price-block-free,
  .plan-price-block-activation,
  .plan-price-block-monthly,
  .plan-page-features,
  .plan-monthly-features {
    min-height: 0;
  }

}

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

  .public-shell .topbar .container {
    width: min(calc(100vw - 24px), 1520px);
  }

  .brand-copy small {
    display: none;
  }

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

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

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

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

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

  .hero h1 {
    font-size: clamp(30px, 8.3vw, 34px);
    line-height: 1.05;
    max-width: calc(100vw - 24px);
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero p,
  .hero-copy {
    max-width: calc(100vw - 24px);
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-trial-note {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

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

  .hero-stats,
  .preview-cards,
  .step-grid,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .plan-pricing {
    grid-template-columns: 1fr;
  }

  .niche-float-field {
    padding: 16px;
  }

  .niche-list {
    grid-template-columns: repeat(2, max-content);
    gap: 14px 10px;
  }

  .hero-preview {
    min-height: 410px;
    padding: 14px;
    border-radius: var(--dash-radius-md);
  }

  .preview-hero {
    height: 128px;
  }

  .plan-card,
  .step-card,
  .benefit-list article {
    padding: 20px;
  }

  .step-card {
    padding-left: 78px;
  }

  .step-card span {
    left: -58px;
  }
}
