:root {
  color-scheme: light;

  /* Paleta principal NexoNova */
  --brand-navy: #00143f;
  --brand-blue: #075dff;
  --brand-cyan: #00a4d6;
  --brand-ink: #152033;
  --brand-muted: #748096;

  /* Base neutra */
  --white: #ffffff;
  --black: #000000;
  --line: #dfe4eb;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brand-ink);
  background: var(--white);
  font-family: "General Sans", "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, button, input, select, textarea {
  font-family: "General Sans", "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html.campaign-loader-active,
html.campaign-loader-active body {
  overflow: hidden;
}

.campaign-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  height: 100svh;
  display: none;
  overflow: hidden;
  background: transparent;
}

.campaign-loader-active .campaign-loader {
  display: block;
}

.campaign-loader-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.campaign-loader-column {
  position: relative;
  width: 100%;
  height: 100%;
  align-self: end;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: #05070d;
  will-change: height;
}

.campaign-loader-column:last-child {
  border-right: 0;
}

.campaign-loader-track {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: none;
  will-change: transform;
}

.campaign-loader-message {
  width: min(80%, 14ch);
  margin: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 3.6rem);
  font-weight: 720;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.campaign-loader-message span,
.campaign-loader-message strong {
  display: block;
}

.campaign-loader-message strong {
  margin-top: 0.12em;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 430;
}

.campaign-loader-backdrop {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.campaign-loader-brand {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  pointer-events: none;
  user-select: none;
  will-change: opacity, transform;
}

.campaign-loader-brand img {
  width: clamp(210px, 24vw, 340px);
  height: auto;
  filter: drop-shadow(0 20px 44px rgba(0, 0, 0, 0.2));
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--brand-navy);
  line-height: 1.15;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.035em;
  color: var(--brand-navy);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

body > a[href="#contenido-principal"],
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border: 1px solid var(--black);
  color: var(--black);
  background: var(--white);
}

body > a[href="#contenido-principal"]:focus,
.skip-link:focus {
  transform: translateY(0);
}

.site-topbar {
  background: var(--brand-navy);
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  max-width: 1600px;
  width: calc(100% - 80px);
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981; /* Green */
  margin-right: 6px;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.site-topbar a {
  color: var(--white);
  text-decoration: none;
  transition: color 200ms ease;
}

.site-topbar a:hover {
  color: var(--brand-cyan);
}

.site-topbar {
  background: #f4f6f9;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  border-bottom: 1px solid #e2e8f0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 34px;
  max-width: calc(var(--container) + 80px);
  margin-inline: auto;
  padding-inline: 40px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-item {
  color: #64748b;
  font-weight: 400;
}

.topbar-divider {
  display: inline-block;
  width: 1px;
  height: 10px;
  background: #cbd5e1;
}

.site-topbar a {
  color: #334155;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-topbar a:hover {
  color: var(--brand-blue);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid #e8edf4;
  background: #ffffff;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.04);
}

.site-header .container {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: calc(100% - 80px);
  max-width: 1600px;
}

.site-logo,
.footer-logo {
  display: block;
  flex: 0 0 auto;
}

.site-logo img {
  width: 180px;
  height: auto;
}

.site-navigation ul,
.footer-navigation ul {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Footer dot / CL markers */
.footer-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-cyan);
  margin-right: 8px;
  vertical-align: middle;
  flex-shrink: 0;
}

.footer-cl-tag {
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(7, 93, 255, 0.15);
  color: var(--brand-cyan) !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}

/* Perk icon SVG sizing */
.perk-icon svg {
  width: 20px;
  height: 20px;
  color: var(--brand-blue);
}

.site-navigation ul {
  min-height: 94px;
  align-items: stretch;
  gap: 4px;
}

.site-navigation {
  position: static;
  align-self: stretch;
}

.site-navigation > ul > li {
  display: flex;
  align-items: stretch;
}

.site-navigation a,
.footer-navigation a,
.service-card > a {
  text-decoration: none;
}

.site-navigation > ul > li > a,
.nav-services-toggle {
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 0;
  border-radius: 0;
  color: #334155;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1;
  transition: color 180ms ease;
}

.footer-navigation a:hover,
.service-card > a:hover {
  text-decoration: underline;
}

.site-navigation > ul > li > a:hover,
.site-navigation > ul > li > a:focus-visible,
.nav-services-toggle:hover,
.nav-services-toggle:focus-visible,
.nav-services:hover .nav-services-toggle,
.nav-services:focus-within .nav-services-toggle,
.nav-services.is-open .nav-services-toggle {
  color: var(--brand-blue);
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--brand-blue);
  outline: none;
  text-decoration: none;
}

.nav-menu-toggle {
  display: none;
}

.nav-access-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  color: var(--brand-navy);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-access-link[aria-disabled="true"] {
  color: #647084;
  cursor: not-allowed;
}

.nav-access-link[href]:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.header-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 16px;
}

.nav-contact-link {
  color: #475569;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 200ms ease;
}

.nav-contact-link:hover {
  color: var(--brand-navy);
}

/* Topbar CTA pill */
.topbar-cta {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 4px;
  background: var(--brand-blue);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  transition: background 180ms ease;
}

.topbar-cta:hover {
  background: #0550e0 !important;
  color: #ffffff !important;
}

/* Nav sales button — Deep warm tone, no aggressive red */
.nav-sales-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 4px;
  background: #1a1a2e;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid #1a1a2e;
  transition: background 180ms ease, border-color 180ms ease;
}

.nav-sales-btn:hover {
  background: #075dff;
  border-color: #075dff;
}

.nav-client-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 22px;
  background: transparent;
  color: var(--brand-navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 4px;
  border: 1.5px solid #c8d0de;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease;
}

.nav-client-btn:hover {
  background: #f4f6fa;
  border-color: var(--brand-navy);
  color: var(--brand-navy);
}

.nav-services {
  position: static;
  align-items: stretch;
}

.nav-services-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-services-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-services:hover .nav-services-chevron,
.nav-services:focus-within .nav-services-chevron,
.nav-services.is-open .nav-services-chevron {
  transform: translateY(2px) rotate(225deg);
}

.services-mega-menu {
  position: absolute;
  z-index: 60;
  top: calc(100% - 1px);
  left: 50%;
  width: min(860px, calc(100% - 40px));
  padding: 22px;
  transform: translate(-50%, 12px);
  border: 1px solid #dce3ec;
  border-radius: 0 0 22px 22px;
  visibility: hidden;
  opacity: 0;
  background: #ffffff;
  box-shadow: 0 26px 60px rgba(1, 20, 63, 0.16);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.button-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  width: 100%;
  padding: 0 24px;
  border-radius: 6px;
  background-color: #25d366;
  color: #ffffff !important;
  border: 1.5px solid #25d366;
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.4);
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.button-whatsapp:hover {
  background-color: #128c7e;
  border-color: #128c7e;
  color: #ffffff !important;
  box-shadow: 0 10px 28px -4px rgba(18, 140, 126, 0.5);
  transform: translateY(-1px);
}

.button-whatsapp:active {
  transform: translateY(0);
}

.whatsapp-btn-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.nav-services.is-open .services-mega-menu {
  transform: translate(-50%, 0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.services-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 20px 8px 16px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(60,64,67, 0.3), 0 4px 8px 3px rgba(60,64,67, 0.15);
  width: fit-content;
  color: #3c4043;
}

.hero-stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
}

.hero-stars svg {
  width: 16px;
  height: 16px;
}

.hero-trust-badge span {
  font-size: 0.85rem;
  color: #3c4043;
  letter-spacing: 0.01em;
  margin-left: 4px;
}

.hero-trust-badge strong {
  color: #202124;
  font-weight: 700;
}

.site-navigation .services-menu-card {
  min-height: 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 18px 20px;
  border: 1px solid #e8edf4;
  border-radius: 12px;
  color: var(--brand-navy);
  background: #f8fafc;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.menu-card-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(7, 93, 255, 0.08);
  color: var(--brand-blue);
  margin-top: 2px;
}

.menu-card-icon svg {
  width: 18px;
  height: 18px;
}

.menu-card-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.site-navigation .services-menu-card:hover {
  background: #edf2ff;
  border-color: rgba(7, 93, 255, 0.2);
  box-shadow: 0 4px 16px rgba(7, 93, 255, 0.08);
}

.menu-footer-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #f0f4ff;
  font-size: 0.76rem;
  color: var(--brand-muted);
}

.menu-footer-strip a {
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
}

.menu-footer-strip a:hover {
  text-decoration: underline;
}

.site-navigation .services-menu-card:focus-visible {
  border-color: var(--brand-cyan);
  background: #f7fcfe;
  box-shadow: 0 20px 40px -10px rgba(0, 164, 214, 0.15); /* Premium soft glow */
  transform: translateY(-4px); /* Micro-animation */
  text-decoration: none;
}

.services-menu-card strong {
  margin-bottom: 7px;
  font-size: 0.98rem;
  line-height: 1.25;
}

.services-menu-card small {
  color: var(--brand-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.site-navigation .nav-featured {
  color: var(--white);
  background: var(--brand-navy);
}

.site-navigation .nav-featured:hover {
  color: var(--white);
  background: var(--black);
}

.button-header {
  border-color: var(--brand-navy);
  color: var(--white);
  background: var(--brand-navy);
}

.button-header:hover {
  border-color: var(--black);
  background: var(--black);
}

/* ============================================================
   BUTTON SYSTEM — Consistent across all touchpoints
   ============================================================ */

/* Base */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border: 1.5px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease, transform 160ms ease;
  white-space: nowrap;
}

/* Primary — Navy sólido, sin sombra de color */
.button-primary,
.flow-button-primary {
  border-color: var(--brand-navy);
  color: #ffffff;
  background: var(--brand-navy);
}

.button-primary:hover,
.flow-button-primary:hover {
  border-color: #075dff;
  background: #075dff;
  transform: translateY(-1px);
}

/* Secondary — Outlined navy */
.button-secondary,
.flow-button-secondary {
  border-color: #c8d0de;
  color: var(--brand-navy);
  background: #ffffff;
}

.button-secondary:hover,
.flow-button-secondary:hover {
  border-color: var(--brand-navy);
  background: #f0f4fa;
}

/* Accent/CTA — Blue suave, sin sombra de color */
.button-accent {
  border-color: transparent;
  color: #ffffff;
  background: #075dff;
}

.button-accent:hover {
  background: #004bd9;
  transform: translateY(-1px);
}

/* Ghost — transparent w/ border */
.button-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  background: transparent;
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

/* Disabled state */
.button:disabled,
.button[aria-disabled="true"] {
  border-color: #dde3ec;
  color: #9aa5b4;
  background: #edf1f6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  opacity: 1;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0, 164, 214, 0.35);
  outline-offset: 3px;
}

main > section {
  padding-block: 96px;
  background: var(--white);
}

.hero {
  --hero-scrim-heavy: 0.74;
  --hero-scrim-medium: 0.64;
  --hero-scrim-light: 0.58;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 680px;
  display: grid;
  align-items: center;
  padding-block: 64px;
  border-bottom: 1px solid var(--black);
  color: var(--white);
  background: var(--black);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0) 32%),
    linear-gradient(90deg, rgba(0, 0, 0, var(--hero-scrim-heavy)), rgba(0, 0, 0, var(--hero-scrim-medium)) 46%, rgba(0, 0, 0, var(--hero-scrim-light)));
}

.tech-grid-bg {
  position: absolute;
  z-index: 1; /* Above cities */
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center top;
  mask-image: radial-gradient(ellipse at top, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at top, black 40%, transparent 80%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: clamp(32px, 5vw, 72px);
}

.hero-copy {
  min-width: 0;
  max-width: 640px;
}

.hero-copy h1 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.5rem, 4.5vw, 4.15rem);
  font-weight: 730;
  line-height: 1.05;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-typing-text {
  color: var(--brand-cyan);
}

.hero-cursor {
  display: inline-block;
  color: var(--brand-cyan);
  animation: cursor-blink 1s step-end infinite;
  margin-left: 2px;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-currency-mark {
  display: inline-block;
  margin-left: 0.04em;
  color: var(--white);
  font-size: 0.64em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  vertical-align: 0.08em;
}

.hero-copy > p {
  max-width: 430px;
  margin-inline: auto;
  margin-bottom: 30px;
  color: var(--white);
  font-size: clamp(1rem, 1.3vw, 1.13rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 24px;
}

.hero-actions .button {
  border-radius: 999px;
  padding-inline: 24px;
  font-size: 0.9rem;
}

.hero-actions .flow-button-primary {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); /* Glassmorphism */
}

.hero-actions .flow-button-primary:hover {
  border-color: var(--white);
  color: var(--black);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.3);
}

.hero-secondary-link {
  padding-block: 10px;
  color: var(--white);
  font-size: 0.87rem;
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 5px;
}

.hero-secondary-link:hover {
  text-decoration: underline;
}

.hero-secondary-link span {
  margin-left: 4px;
}

.hero a:focus-visible,
.hero button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 5px;
}

/* Presence — photographs and text on separate, quiet surfaces. */
.presence-banner {
  padding-block: clamp(72px, 8vw, 112px);
  border-top: 1px solid #e5e5e5;
  color: #171717;
  background: #ffffff;
}

.presence-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: end;
  gap: clamp(32px, 6vw, 96px);
  margin-bottom: 56px;
}

.presence-heading h2 {
  max-width: 620px;
  margin: 0;
  color: #171717;
  font-size: clamp(2.5rem, 4.8vw, 4.25rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.presence-heading p {
  max-width: 430px;
  margin: 0;
  color: #595959;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

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

.presence-location {
  min-width: 0;
  margin: 0;
}

.presence-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.presence-location figcaption {
  padding-top: 20px;
}

.presence-location h3 {
  margin: 0 0 4px;
  color: #171717;
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.presence-location p {
  margin: 0;
  color: #626262;
  font-size: 0.95rem;
}

.presence-credits {
  display: inline-block;
  margin-top: 32px;
  color: #626262;
  font-size: 0.8rem;
  text-underline-offset: 4px;
}

.presence-credits:hover {
  color: #171717;
}

@media (max-width: 960px) {
  .presence-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .presence-heading p {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .presence-heading {
    margin-bottom: 36px;
  }

  .presence-locations {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .presence-photo {
    aspect-ratio: 3 / 2;
  }
}

.value-proposition .container,
.contact-cta .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.section-heading > p:not(.eyebrow),
.value-content > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--brand-muted);
  font-size: 1.05rem;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.purchase-flow {
  scroll-margin-top: 96px;
  background: #ffffff;
}

.purchase-step-section {
  scroll-margin-top: 96px;
}

.purchase-step-section-domain,
.purchase-step-section-plan {
  background: #ffffff;
}

.purchase-flow-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.purchase-flow-heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--brand-muted);
  font-size: 1.05rem;
}

.purchase-step {
  display: grid;
  gap: 34px;
  padding: clamp(28px, 5vw, 54px);
  scroll-margin-top: 112px;
  border: 1px solid #d8e0ea;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(1, 20, 63, 0.08);
}

.purchase-step-section-domain .purchase-flow-heading {
  margin-inline: auto;
  text-align: center;
}

.purchase-step-section-domain .purchase-step {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(48px, 7vw, 78px);
  border: 0;
  border-radius: 32px;
  background: linear-gradient(128deg, var(--brand-blue) 0%, #063f9d 45%, var(--brand-navy) 100%);
  box-shadow: 0 28px 70px rgba(0, 20, 63, 0.2);
}

.purchase-step-section-domain .purchase-step::before,
.purchase-step-section-domain .purchase-step::after {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.purchase-step-section-domain .purchase-step::before {
  inset: -40% 42% -35% -12%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 46%;
  transform: rotate(-12deg);
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}

.purchase-step-section-domain .purchase-step::after {
  top: -160px;
  right: -110px;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 164, 214, 0.35), transparent 68%);
}

.purchase-step-section-domain .purchase-step-header {
  max-width: 760px;
  justify-self: center;
  justify-content: center;
  text-align: center;
}

.purchase-step-section-domain .purchase-step-number {
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--brand-navy);
  background: var(--white);
}

.purchase-step-section-domain .purchase-step-number::after {
  border-color: rgba(255, 255, 255, 0.62);
}

.purchase-step-section-domain .purchase-step-copy h2 {
  color: var(--white);
}

.purchase-step-section-domain .purchase-step-copy > p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.purchase-step-section-domain .domain-form {
  width: min(100%, 760px);
  justify-self: center;
}

.purchase-step-section-domain .domain-form > label {
  color: var(--white);
}

.purchase-step-section-domain .domain-search-control {
  min-height: 64px;
  grid-template-columns: minmax(0, 1fr) 66px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 20, 63, 0.24);
}

.purchase-step-section-domain .domain-search-control:focus-within {
  border-color: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 164, 214, 0.38), 0 18px 42px rgba(0, 20, 63, 0.24);
}

.purchase-step-section-domain .domain-search-control input {
  min-height: 56px;
  padding-inline: 22px;
  font-size: 1rem;
}

.purchase-step-section-domain .domain-search-submit {
  border-left: 1px solid #d8e3f0;
  background: var(--brand-blue);
}

.purchase-step-section-domain .domain-search-submit:hover {
  background: var(--brand-navy);
}

.purchase-step-section-domain .existing-domain-option {
  justify-content: center;
}

.purchase-step-section-domain .existing-domain-option p {
  color: rgba(255, 255, 255, 0.72);
}

.purchase-step-section-domain .flow-button-secondary {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
  background: transparent;
}

.purchase-step-section-domain .flow-button-secondary:hover {
  border-color: var(--white);
  color: var(--brand-navy);
  background: var(--white);
}

.purchase-step-section-domain .purchase-actions-end {
  width: min(100%, 760px);
  justify-self: center;
}

.purchase-step-section-domain .flow-button-primary:not(:disabled) {
  border-color: var(--white);
  color: var(--brand-navy);
  background: var(--white);
}

.purchase-step-section-domain .flow-button-primary:not(:disabled):hover {
  border-color: var(--brand-cyan);
  background: var(--brand-cyan);
}

.purchase-step-section-plan .purchase-step {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.purchase-step-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.purchase-step-number {
  position: relative;
  width: 52px;
  height: 52px;
  display: grid;
  flex: 0 0 52px;
  place-items: center;
  border: 2px solid var(--brand-navy);
  border-radius: 47% 53% 45% 55% / 54% 46% 56% 44%;
  transform: rotate(-4deg);
  color: var(--brand-navy);
  background: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
}

.purchase-step-number::after {
  position: absolute;
  inset: -5px -4px -4px -5px;
  border: 1px solid rgba(0, 20, 63, 0.55);
  border-radius: 54% 46% 52% 48% / 45% 55% 47% 53%;
  transform: rotate(8deg);
  content: "";
}

[data-purchase-step="2"] .purchase-step-number {
  transform: rotate(3deg);
}

.purchase-step-copy {
  max-width: 720px;
}

.purchase-step-copy h2 {
  margin-bottom: 12px;
}

.purchase-step-copy > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--brand-muted);
}

.domain-form {
  display: grid;
  gap: 12px;
}

.domain-form > label,
.plan-selector legend {
  color: var(--brand-navy);
  font-size: 0.86rem;
  font-weight: 750;
}

.domain-search-row {
  display: block;
}

.domain-search-control {
  width: 100%;
  min-height: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  overflow: hidden;
  border: 2px solid #c7d0dc;
  border-radius: 8px;
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.domain-search-control:focus-within {
  border-color: var(--brand-navy);
  box-shadow: 0 0 0 3px rgba(7, 93, 255, 0.12);
}

.domain-search-control input {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 11px 15px;
  border: 0;
  border-radius: 0;
  color: var(--brand-ink);
  background: var(--white);
  font: inherit;
}

.domain-search-control input:focus {
  outline: none;
}

.domain-search-submit {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: var(--brand-navy);
  cursor: pointer;
  transition: background-color 160ms ease;
}

.domain-search-submit:hover {
  background: var(--brand-blue);
}

.domain-search-submit:focus-visible {
  outline: 3px solid var(--brand-cyan);
  outline-offset: -5px;
}

.domain-search-submit svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.purchase-helper,
.purchase-notice {
  margin: 0;
  color: var(--brand-muted);
  font-size: 0.78rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: var(--brand-navy);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}

.nav-cart-btn:hover {
  background: rgba(7, 93, 255, 0.08);
  color: var(--brand-blue);
}

.cart-count-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--brand-red, #dc2626);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

.cart-count-badge:empty {
  display: none;
}

.existing-domain-option {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.existing-domain-option p {
  max-width: 390px;
  margin: 0;
  color: var(--brand-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

/* ============================================================
   DOMAIN SEARCH RESULT — Clean White UI (Sibling Options)
   ============================================================ */
.domain-result {
  margin-top: 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 20, 63, 0.05);
  overflow: hidden;
  transition: all 200ms ease;
}

.domain-result.is-loading {
  padding: 20px 22px;
  border-color: var(--brand-cyan);
}

.domain-result.is-error {
  padding: 20px 22px;
  border-color: #cbd5e1;
}

.domain-options-list {
  display: flex;
  flex-direction: column;
}

.domain-option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  transition: background 160ms ease;
}

.domain-option-item:last-child {
  border-bottom: none;
}

.domain-option-item.is-selected {
  background: #f8fafc;
}

.domain-option-item.is-unavailable {
  opacity: 1;
}

.domain-option-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.domain-option-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.domain-option-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-navy);
  letter-spacing: -0.025em;
}

.domain-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 0;
  background: transparent;
  border: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.domain-badge.is-available {
  color: #16a34a;
}

.domain-badge.is-registered {
  color: #dc2626;
}

.domain-badge.is-existing {
  color: #0284c7;
}

.domain-option-pricing {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.domain-price-hero {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.domain-price-hero .price-annual-amount {
  font-size: 1.55rem;
  font-weight: 850;
  color: var(--brand-navy);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.domain-price-hero .price-annual-unit {
  font-size: 0.88rem;
  font-weight: 600;
  color: #64748b;
}

.domain-price-sub {
  font-size: 0.84rem;
  color: #64748b;
}

.domain-price-sub strong {
  font-weight: 750;
  color: var(--brand-navy);
}

.domain-option-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.domain-select-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 22px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 4px;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  color: var(--brand-navy);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.domain-select-btn:hover {
  background: #f8fafc;
  border-color: var(--brand-navy);
}

.domain-select-btn.is-active {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: #ffffff;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(0, 20, 63, 0.2);
}

.domain-unavailable-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--brand-muted);
  padding: 0 10px;
}

.domain-result-footer {
  padding: 10px 20px;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: flex-start;
}

.domain-change-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-blue);
  cursor: pointer;
  transition: color 160ms ease;
}

.domain-change-search-btn:hover {
  color: var(--brand-navy);
  text-decoration: underline;
}

/* Loading & Error States */
.domain-loading-state {
  display: flex;
  align-items: center;
  gap: 14px;
}

.domain-spinner {
  width: 24px;
  height: 24px;
  border: 2.5px solid #e2e8f0;
  border-top-color: var(--brand-blue);
  border-radius: 50%;
  animation: domain-spin 0.7s linear infinite;
  flex-shrink: 0;
}

.domain-loading-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brand-navy);
  margin-bottom: 2px;
}

.domain-loading-text p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--brand-muted);
}

.domain-error-state strong {
  display: block;
  font-size: 0.95rem;
  color: #dc2626;
  margin-bottom: 2px;
}

.domain-error-state p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--brand-muted);
}

.domain-loading-text p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--brand-muted);
}

.domain-error-state strong {
  display: block;
  font-size: 0.95rem;
  color: #dc2626;
  margin-bottom: 2px;
}

.domain-error-state p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--brand-muted);
}

@keyframes domain-spin {
  to { transform: rotate(360deg); }
}

.domain-search-submit.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

.domain-search-submit.is-loading svg {
  animation: domain-spin 0.8s linear infinite;
}

.domain-format-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.76rem;
  line-height: 1.5;
}

.purchase-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.purchase-actions-end {
  justify-content: flex-end;
}

.flow-button-primary {
  border-color: var(--brand-navy);
  color: var(--white);
  background: var(--brand-navy);
}

.flow-button-primary:hover {
  border-color: var(--black);
  background: var(--black);
}

.flow-button-secondary {
  border-color: #b8c1ce;
  color: var(--brand-navy);
  background: var(--white);
}

.button:disabled {
  border-color: #d5dbe4;
  color: #929cab;
  background: #edf0f4;
  cursor: not-allowed;
  opacity: 1;
}

.plan-selector {
  margin: 0;
  padding: 0;
  border: 0;
}

.plan-selector legend {
  margin-bottom: 14px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
  padding-top: 22px;
}

.plan-option {
  position: relative;
  display: flex;
}

.plan-option-featured {
  margin-block: -20px -14px;
}

.plan-card-body {
  position: relative;
  min-height: 490px;
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d8e0ea;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(1, 20, 63, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.plan-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0 30px 30px;
}

.plan-card-ribbon {
  position: absolute;
  z-index: 2;
  top: 17px;
  right: 17px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: #111111;
  background: var(--brand-cyan);
  box-shadow: 0 4px 14px rgba(0, 164, 214, 0.3);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.plan-option-featured .plan-card-body {
  border-color: var(--brand-blue);
  box-shadow: 0 20px 45px rgba(7, 93, 255, 0.12);
}

.plan-card-content h3 {
  margin: 0 -30px 24px;
  padding: 20px 30px;
  color: var(--black);
  font-size: 1.55rem;
}

.plan-card-description {
  min-height: 52px;
  margin-bottom: 20px;
  color: var(--brand-muted);
  font-size: 0.94rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 2px;
  color: var(--brand-navy);
}

.plan-price strong {
  font-size: clamp(5rem, 3vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.plan-price span {
  font-size: 0.78rem;
  font-weight: 700;
}

.plan-price-note,
.plan-commercial-note {
  color: var(--brand-muted);
  font-size: 0.72rem;
}

.plan-price-note {
  margin-bottom: 22px;
}

.plan-card-action {
  min-height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid var(--brand-navy);
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand-navy);
  padding: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-feature-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid #e3e7ed;
  list-style: none;
}

.plan-feature-list li {
  position: relative;
  padding-left: 23px;
  color: var(--brand-ink);
  font-size: 0.86rem;
}

.plan-feature-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--brand-cyan);
  content: "✓";
  font-weight: 900;
}

.plan-commercial-note {
  margin: 24px 0 0;
  text-align: center;
}

.plan-option:hover .plan-card-body {
  border-color: var(--brand-navy);
  box-shadow: 0 22px 48px rgba(1, 20, 63, 0.12);
  transform: translateY(-4px);
}

.plan-option.is-selected .plan-card-body {
  border-color: var(--brand-navy);
  box-shadow: 0 0 0 2px var(--brand-navy), 0 22px 48px rgba(1, 20, 63, 0.14);
  transform: translateY(-4px);
}

.plan-option.is-selected .plan-card-action {
  color: var(--brand-navy);
  background: var(--brand-cyan);
}

.plan-card-action:focus-visible {
  outline: 3px solid rgba(0, 164, 214, 0.35);
  outline-offset: 3px;
}

.plan-selection-message {
  margin: 0;
  color: #43526a;
  font-size: 0.85rem;
}

.plan-selection-message:empty {
  display: none;
}

.purchase-noscript {
  margin: 18px 0 0;
  color: #8a260d;
}

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

  .plan-grid {
    padding-top: 0;
  }

  .plan-option-featured {
    margin-block: 0;
  }

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

  .plan-card-description {
    min-height: 0;
  }
}

.value-media {
  min-height: 420px;
  border: 1px dashed var(--line);
  background: var(--white);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

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

.service-card,
.contact-form {
  border: 1px solid var(--line);
  background: var(--white);
}

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  scroll-margin-top: 120px;
}

.service-card > a {
  align-self: flex-start;
  margin-top: auto;
  font-weight: 700;
}

.service-card p {
  color: var(--brand-muted);
}

/* Dark mode overrides for Services section */
#servicios {
  background: #050505;
  color: var(--white);
}

#servicios .section-heading h2 {
  background: none;
  -webkit-text-fill-color: var(--white);
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
}

#servicios .section-heading p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
}

/* Services section: decorative radial glow top-right */
#servicios {
  position: relative;
  overflow: hidden;
}

#servicios::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 164, 214, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

#servicios::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 93, 255, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

#servicios .service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#servicios .service-card h3 {
  color: var(--white);
  font-size: 1.85rem;
}

#servicios .service-card p {
  color: rgba(255, 255, 255, 0.65);
}

#servicios .service-card > a {
  color: var(--brand-cyan);
}

#servicios .service-card > a:hover {
  color: #ffffff;
}

.benefits-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding-left: 22px;
}

/* Process — four clear steps, sin tarjetas ni decoración. Tipografía grande, espacio como separador. */
.process {
  padding-block: clamp(80px, 9vw, 120px);
  color: #171717;
  background: #ffffff;
}

.process .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: end;
  gap: clamp(40px, 7vw, 112px);
  max-width: none;
  margin: 0 0 80px;
  text-align: left;
}

.process .section-heading h2 {
  max-width: 720px;
  margin: 0;
  color: #111111;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.048em;
  text-wrap: balance;
}

.process .section-heading p {
  max-width: 460px;
  margin: 0;
  color: #3d3d3d;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.7;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* El espacio separa, no las líneas */
.process-step {
  min-width: 0;
}

.process-number {
  display: block;
  margin-bottom: 28px;
  color: #bbbbbb;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1;
}

.process-step h3 {
  max-width: 18ch;
  margin: 0 0 16px;
  color: #111111;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.032em;
}

.process-step p {
  max-width: 32ch;
  margin: 0;
  color: #444444;
  font-size: 1.05rem;
  line-height: 1.72;
}

@media (max-width: 960px) {
  .process .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 56px;
  }

  .process .section-heading p {
    max-width: 640px;
  }

  .process-list {
    row-gap: 48px;
  }
}

@media (max-width: 640px) {
  .process .section-heading {
    margin-bottom: 40px;
  }

  .process .section-heading h2 {
    font-size: clamp(2.6rem, 8vw, 3.4rem);
  }

  .process-number {
    margin-bottom: 20px;
    font-size: 2rem;
  }

  .process-step h3,
  .process-step p {
    max-width: none;
  }
}

.evolution-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #050814;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

/* Decorative glows on CTA */
.evolution-cta::before {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 93, 255, 0.18) 0%, rgba(7, 93, 255, 0) 70%);
  content: "";
  pointer-events: none;
}

.evolution-cta::after {
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 32, 32, 0.1) 0%, transparent 70%);
  content: "";
  pointer-events: none;
}

.evolution-cta-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.evolution-copy {
  max-width: 780px;
  margin: 0;
}

.evolution-kicker {
  margin-bottom: 18px;
  color: var(--brand-cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.evolution-copy h2 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.evolution-copy > p:not(.evolution-kicker) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.commercial-action {
  display: grid;
  gap: 12px;
  padding: 28px;
  text-align: center;
}

.commercial-action .button-primary {
  width: 100%;
  min-height: 54px;
  font-size: 0.95rem;
}

.commercial-action .button-ghost {
  width: 100%;
}


.commercial-action p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 300;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--brand-navy);
  font-size: 0.85rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--brand-ink);
  background: var(--white);
  font: inherit;
}

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

.contact-form-note {
  margin: 0;
  color: #526079;
  font-size: 0.8rem;
}

html.cart-open,
html.cart-open body {
  overflow: hidden;
}

.cart-dialog {
  width: min(440px, 100%);
  max-width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--line);
  color: var(--brand-ink);
  background: var(--white);
  box-shadow: -20px 0 80px rgba(0, 20, 63, 0.16);
}

.cart-dialog::backdrop {
  background: rgba(0, 14, 38, 0.4);
}

.cart-shell {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cart-header {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 24px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  margin: 0 0 8px;
  font-size: 1.6rem;
}

.cart-header p {
  margin: 0;
  color: #647084;
  font-size: 0.86rem;
}

.cart-close {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand-navy);
  background: var(--white);
  cursor: pointer;
  font: 26px/1 system-ui, sans-serif;
}

.cart-close:hover {
  color: var(--white);
  background: var(--brand-navy);
}

.cart-content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 28px 24px;
}

.cart-empty {
  padding-block: 28px;
}

.cart-empty h3 {
  max-width: 260px;
  font-size: 1.65rem;
}

.cart-empty p {
  color: #526079;
  font-size: 0.95rem;
}

.cart-item-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.cart-item-type {
  color: #526079;
  font-size: 0.75rem;
}

.cart-item-card h3 {
  margin: 6px 0 12px;
  font-size: 1.5rem;
}

.cart-item-card p {
  overflow-wrap: anywhere;
  font-size: 0.85rem;
}

.cart-item-price strong {
  color: var(--brand-navy);
  font-size: 1.35rem;
}

.cart-item-price span {
  color: #526079;
  font-size: 0.75rem;
}

.cart-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
}

.cart-item-actions button {
  min-height: 44px;
  padding: 8px 0;
  border: 0;
  color: var(--brand-navy);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.77rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cart-helper,
.cart-feedback,
.cart-checkout-note {
  color: #526079;
  font-size: 0.78rem;
  line-height: 1.6;
}

.cart-content > .cart-feedback:empty {
  display: none;
}

.cart-footer {
  flex-shrink: 0;
  padding: 22px 24px max(22px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--white);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.cart-total strong {
  color: var(--brand-navy);
  font-size: 1.35rem;
}

.cart-checkout {
  width: 100%;
  justify-content: space-between;
  border-radius: 999px;
  font-size: 0.9rem;
}

.cart-checkout-note {
  margin: 12px 0 0;
}

/* ============ SITE FOOTER — CLEAN WHITE ============ */
.site-footer {
  background: #ffffff;
  color: #334155;
  border-top: 1px solid #e8edf4;
}

.footer-main {
  padding-block: 64px 48px;
  border-bottom: 1px solid #e8edf4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo img {
  width: 200px;
  height: auto;
}

.footer-tagline {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #64748b;
}

.footer-label {
  margin: 0 0 10px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.footer-col h4 {
  margin: 0 0 18px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f172a;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li,
.footer-col a {
  font-size: 0.875rem;
  color: #64748b;
  text-decoration: none;
  transition: color 180ms ease;
}

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

.footer-bottom {
  padding-block: 22px;
}

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

.footer-bottom p {
  margin: 0;
  color: #94a3b8;
}

.footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--brand-navy);
  text-decoration: underline;
}

/* Footer dot markers */
.footer-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 8px;
  vertical-align: middle;
  opacity: 0.5;
}

.footer-cl-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  background: rgba(7, 93, 255, 0.08);
  color: var(--brand-blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============ PROOF BAND — Editorial clean, sin ruido visual ============ */
.proof-band {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid #e8e8e8;
  padding-block: 88px;
}

/* Flag overlay — almost at the far right edge */
.proof-band-flag {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 0.28;
  pointer-events: none;
  user-select: none;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 22%, rgba(0,0,0,1) 58%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 22%, rgba(0,0,0,1) 58%);
}


.proof-band-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.proof-statement p {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.048em;
  color: #111111;
}

/* Separadores por espacio, no por líneas blancas opacas */
.proof-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.proof-fact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 32px;
  border-right: 1px solid #e0e0e0;
}

.proof-fact:first-child {
  padding-left: 0;
}

.proof-fact:last-child {
  border-right: 0;
}

.proof-fact strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.015em;
}

.proof-fact span {
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.65;
}

/* ============ SECTION KICKER ============ */
.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

#servicios .section-kicker { color: var(--brand-cyan); }

/* ============ SERVICE CARDS – ENRICHED ============ */
.service-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--brand-blue);
}

#servicios .service-card-icon {
  color: var(--brand-cyan);
}

.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 24px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  list-style: none;
  flex: 1;
}

.service-feature-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.service-feature-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--brand-cyan);
  font-weight: 900;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-cyan) !important;
  text-decoration: none;
  transition: gap 200ms ease;
}

.service-card-cta:hover {
  gap: 10px;
  color: var(--white) !important;
}

/* ============ TRUST BADGES ============ */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
  justify-content: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.05);
}

/* ============ CTA SECTION – ENRICHED ============ */
.evolution-bullets {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.evolution-bullets li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.commercial-action-secondary {
  display: block;
  width: 100%;
  min-height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  color: var(--white);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease;
}

.commercial-action-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
}

/* ============ CONTACT SECTION – ENRICHED ============ */
/* Contact section: soft background with a diagonal gradient accent */
#contacto {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 60%, #eef3ff 100%);
  overflow: hidden;
}

#contacto::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 93, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.contact-layout {

  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}

.contact-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.perk-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-perk strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brand-navy);
}

.contact-perk small {
  font-size: 0.8rem;
  color: var(--brand-muted);
}

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

/* ============ FEATURES GRID ============ */
.features-section {
  background: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin-top: 56px;
  border: 1px solid #e8edf4;
  border-radius: 16px;
  overflow: hidden;
}

.feature-item {
  position: relative;
  padding: 36px 32px;
  background: #ffffff;
  border-right: 1px solid #e8edf4;
  border-bottom: 1px solid #e8edf4;
  transition: background 200ms ease;
  overflow: hidden;
}

/* Colored top accent line slides in on hover */
.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover::before {
  transform: scaleX(1);
}


.feature-item:hover {
  background: #f8faff;
}

.feature-item:nth-child(3n) {
  border-right: 0;
}

.feature-item:nth-child(4),
.feature-item:nth-child(5),
.feature-item:nth-child(6) {
  border-bottom: 0;
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--brand-blue);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brand-navy);
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--brand-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============ DIGITAL PRESENCE ============ */
.digital-presence-cta {
  padding: 112px 0;
  background: #ffffff;
  overflow: hidden;
}

.digital-presence-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.digital-presence-content {
  flex: 1;
  max-width: 580px;
}

.digital-presence-content h2 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #111111;
  margin-bottom: 28px;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.digital-presence-content p {
  font-size: 1.2rem;
  color: #444444;
  line-height: 1.72;
  margin-bottom: 36px;
}

.digital-presence-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.digital-presence-visual img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  /* Imagen semitransparente sin difuminado */
  opacity: 0.65;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.digital-presence-visual img:hover {
  opacity: 1;
  transform: translateY(-4px);
}

@media (max-width: 992px) {
  .digital-presence-container {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }
  .digital-presence-content {
    max-width: 100%;
  }
  .digital-presence-visual {
    justify-content: center;
  }
}

/* ============ FAQ SECTION — Fondo blanco limpio, sin bg decorativo ============ */
.faq-section {
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
  padding-block: 104px 112px;
}

.faq-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.faq-header {
  position: static;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
}

.faq-header h2 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.048em;
  line-height: 1.04;
  margin-bottom: 20px;
  text-align: center;
  color: #111111;
}

.faq-header p {
  font-size: 1.2rem;
  color: #3d3d3d;
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.7;
}

.faq-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-blue);
  text-decoration: none;
  transition: gap 200ms ease;
}

.faq-contact-link:hover {
  gap: 12px;
}

.faq-list {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:first-child {
  border-top: 1px solid #e0e0e0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 650;
  color: #111111;
  list-style: none;
  user-select: none;
  letter-spacing: -0.02em;
  line-height: 1.3;
  transition: color 180ms ease;
}

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

.faq-question::after {
  content: '';
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1.5px solid #d0d0d0;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5l5 5 5-5' stroke='%23777777' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 16px no-repeat;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.faq-item[open] .faq-question {
  color: var(--brand-blue);
}

.faq-item[open] .faq-question::after {
  transform: rotate(180deg);
  border-color: var(--brand-blue);
  background-color: rgba(7, 93, 255, 0.06);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5l5 5 5-5' stroke='%23075dff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.faq-answer {
  padding-bottom: 28px;
}

.faq-answer p {
  margin: 0;
  font-size: 1.1rem;
  color: #444444;
  line-height: 1.8;
}

@media (max-width: 960px) {
  .site-header .container {
    min-height: 82px;
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 14px;
  }

  .nav-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-left: auto;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--brand-navy);
    background: var(--white);
    font: inherit;
    font-size: 0.8rem;
    cursor: pointer;
  }

  .site-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: 65dvh;
    overflow-y: auto;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 0 0 18px 18px;
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0, 20, 63, 0.12);
  }

  .site-navigation.is-open {
    display: block;
  }

  .site-navigation ul {
    min-height: 0;
    flex-direction: column;
    gap: 0;
  }

  .site-navigation > ul > li {
    display: block;
  }

  .site-navigation > ul > li > a,
  .nav-services-toggle {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding: 14px;
  }

  .services-mega-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 10px 0;
    border: 0;
    transform: none;
    box-shadow: none;
  }

  .nav-services.is-open .services-mega-menu {
    display: block;
    transform: none;
  }

  .services-menu-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-navigation .services-menu-card {
    min-height: 84px;
    padding: 16px;
  }

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

  .hero-copy h1 {
    max-width: 550px;
    font-size: clamp(2.5rem, 7vw, 3.6rem);
  }

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

  .value-proposition .container,
  .contact-cta .container,
  .evolution-cta-layout {
    grid-template-columns: 1fr;
  }

  .site-logo img {
    width: 200px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-block: 56px;
  }

  .hero-layout {
    max-width: 640px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy:empty {
    display: none;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, var(--hero-scrim-heavy)), rgba(0, 0, 0, var(--hero-scrim-medium)) 38%, rgba(0, 0, 0, var(--hero-scrim-light)) 70%, rgba(0, 0, 0, var(--hero-scrim-heavy)));
  }

}

@media (max-width: 640px) {
  .site-footer .container {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 18px;
  }

  .site-logo img {
    width: 165px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .nav-access-link {
    padding-left: 0;
  }

  .site-footer .container > p {
    max-width: none;
    padding-top: 0;
    text-align: left;
  }

  .payment-logos {
    width: min(100%, 328px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  main > section {
    padding-block: 68px;
  }

  .purchase-step {
    gap: 26px;
    padding: 24px;
    border-radius: 18px;
  }

  .purchase-step-header {
    gap: 13px;
  }

  .purchase-step-number {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .existing-domain-option {
    align-items: flex-start;
    flex-direction: column;
  }

  .purchase-actions .button {
    width: 100%;
  }

  .purchase-actions {
    flex-direction: column-reverse;
  }

  .purchase-actions-end {
    flex-direction: column;
  }

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

  .evolution-copy h2 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }

  .commercial-action {
    width: 100%;
    padding: 22px;
  }

  .hero {
    padding-block: 40px;
  }

  .campaign-loader-message {
    width: 82%;
    font-size: clamp(1.02rem, 5vw, 1.35rem);
    line-height: 1.02;
  }

  .campaign-loader-brand img {
    width: clamp(174px, 54vw, 220px);
  }

  .purchase-step-section-domain .purchase-step {
    padding: 38px 22px;
    border-radius: 24px;
  }

  .purchase-step-section-domain .purchase-step::before {
    inset: -25% 20% -10% -35%;
    transform: none;
  }

  .purchase-step-section-domain .purchase-step-header {
    align-items: center;
    flex-direction: column;
  }

  .purchase-step-section-domain .domain-form > label {
    text-align: center;
  }

  .purchase-step-section-domain .existing-domain-option {
    align-items: center;
    text-align: center;
  }

  .value-media {
    min-height: 280px;
  }

  .footer-navigation ul {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }


}

/* ============ WHITE UI OVERRIDES ============ */
/* White UI Services overrides */
.white-ui-services {
  background: #f8fafc !important;
  border-top: 1px solid #e2e8f0 !important;
}
.white-ui-services .section-heading h2 {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}
.white-ui-services .section-heading p {
  color: #1e293b !important;
}
.white-ui-services .white-ui-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.05) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.white-ui-services .white-ui-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1) !important;
}
.white-ui-services .white-ui-card h3 {
  color: #0f172a !important;
}
.white-ui-services .white-ui-card p {
  color: #475569 !important;
}
.white-ui-services .service-feature-list li {
  color: #475569 !important;
}
.white-ui-services .service-card-icon {
  background: #eff6ff !important;
  color: #075dff !important;
  border: 1px solid rgba(7, 93, 255, 0.15) !important;
}
.white-ui-services .white-ui-badges .trust-badge {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #475569 !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02) !important;
}

/* ============ PARALLAX SCROLLING ILLUSTRATIONS ============ */

.parallax-illustrations {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 0;            /* takes no flow space */
  overflow: visible;
  pointer-events: none;
  user-select: none;
}

.parallax-illust {
  position: absolute;
  z-index: 0;
  display: block;
  max-width: none;
  opacity: 0;
  filter: saturate(0.7);
  transition: opacity 0.8s ease;
  will-change: transform;
}

/* Once the parallax JS marks them visible */
.parallax-illust.is-visible {
  opacity: 0.30;
}

/* ---- Position each illustration at a staggered spot ---- */

/* 1 – PYME store: top-left, first to appear */
.parallax-illust--1 {
  top: 80px;
  left: -40px;
  width: clamp(220px, 22vw, 400px);
  --parallax-speed: 0.08;
}

/* 2 – Domain search: upper-right */
.parallax-illust--2 {
  top: 520px;
  right: -20px;
  left: auto;
  width: clamp(180px, 18vw, 340px);
  --parallax-speed: 0.12;
}

/* 3 – Hosting server: mid-left */
.parallax-illust--3 {
  top: 1050px;
  left: 2vw;
  width: clamp(200px, 20vw, 360px);
  --parallax-speed: 0.06;
}

/* 4 – Growth: lower-right */
.parallax-illust--4 {
  top: 1600px;
  right: 0;
  left: auto;
  width: clamp(220px, 22vw, 380px);
  --parallax-speed: 0.10;
}

/* ---- Responsive: hide or shrink on small screens ---- */
@media (max-width: 900px) {
  .parallax-illust--1 { width: 160px; top: 40px; left: -20px; }
  .parallax-illust--2 { width: 140px; top: 380px; right: -10px; }
  .parallax-illust--3 { width: 150px; top: 760px; left: 0; }
  .parallax-illust--4 { width: 160px; top: 1150px; right: -10px; }

  .parallax-illust.is-visible {
    opacity: 0.18;
  }
}

@media (max-width: 600px) {
  .parallax-illustrations {
    display: none;   /* hide on phones to keep it clean */
  }
}
