

@font-face { font-family: 'Space Grotesk'; src: url('/assets/fonts/space-grotesk-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Space Grotesk'; src: url('/assets/fonts/space-grotesk-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Space Grotesk'; src: url('/assets/fonts/space-grotesk-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Space Grotesk'; src: url('/assets/fonts/space-grotesk-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Staatliches'; src: url('/assets/fonts/staatliches-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Space Mono'; src: url('/assets/fonts/space-mono-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Space Mono'; src: url('/assets/fonts/space-mono-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  --blue:       #0066CC;
  --blue-light: #2E8BFF;
  --blue-dark:  #004C99;
  --black:      #070707;
  --surface:    #111111;
  --white:      #FFFFFF;
  --border:     rgba(255,255,255,0.07);
  --danger:     #EF4444;
  --warn:       #F59E0B;
  --success:    #22C55E;
  --f-body:     'Space Grotesk', sans-serif;
  --f-title:    'Staatliches', 'Arial Narrow', sans-serif;
  --f-accent:   'Space Grotesk', system-ui, sans-serif;
  --f-highlight:'Space Mono', ui-monospace, 'Courier New', monospace;
  --cut:        10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--f-body); color: var(--white); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased;
  background-color: var(--black);
}

body::before {
  content: ''; position: fixed; inset: -24px; z-index: -2; pointer-events: none;
  background: var(--black) url(/assets/img/background-negro.png) no-repeat center center;
  background-size: contain;
  filter: blur(7px);
}
body::after {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: rgba(7,7,7,0.5);
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--blue-light); outline-offset: 2px; }
h1, h2, h3, h4 { line-height: 1.05; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

.btn-blue, .btn-outline, .btn-ghost-white, .btn-ghost-dark, .btn-white, .btn-black {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f-body); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 13px 32px; text-decoration: none; cursor: pointer; white-space: nowrap; border: none;
  touch-action: manipulation; user-select: none; vertical-align: middle;
  position: relative; isolation: isolate;
  transition: transform 0.12s ease, background 0.2s;
  clip-path: polygon(var(--cut) 0%, 100% 0%, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0% 100%, 0% var(--cut));
}
.btn-blue::after, .btn-outline::after, .btn-ghost-white::after, .btn-ghost-dark::after, .btn-white::after, .btn-black::after {
  content: ''; position: absolute; inset: 0; z-index: -1; transition: transform 0.12s ease;
  clip-path: polygon(var(--cut) 0%, 100% 0%, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0% 100%, 0% var(--cut));
  transform: translate(4px, 4px);
}

.btn-blue:hover, .btn-outline:hover, .btn-ghost-white:hover, .btn-ghost-dark:hover, .btn-white:hover, .btn-black:hover { transform: translate(-1px, -1px); }
.btn-blue:hover::after, .btn-outline:hover::after, .btn-ghost-white:hover::after, .btn-ghost-dark:hover::after, .btn-white:hover::after, .btn-black:hover::after { transform: translate(6px, 6px); }

.btn-blue:active, .btn-outline:active, .btn-ghost-white:active, .btn-ghost-dark:active, .btn-white:active, .btn-black:active { transform: translate(3px, 3px); }
.btn-blue:active::after, .btn-outline:active::after, .btn-ghost-white:active::after, .btn-ghost-dark:active::after, .btn-white:active::after, .btn-black:active::after { transform: translate(1px, 1px); }

.btn-blue        { background: #0066CC; color: #fff; }
.btn-blue::after { background: #003d80; }
.btn-blue:hover  { background: #0055AA; }

.btn-outline, .btn-ghost-white        { background: transparent; color: #fff; outline: 1px solid rgba(255,255,255,0.65); }
.btn-outline::after, .btn-ghost-white::after { background: rgba(255,255,255,0.35); }
.btn-outline:hover, .btn-ghost-white:hover   { outline-color: #fff; }

.btn-ghost-dark        { background: #111; color: #fff; outline: 1px solid #111; }
.btn-ghost-dark::after { background: #000; }
.btn-ghost-dark:hover  { background: #0066CC; outline-color: #0066CC; color: #fff; }

.btn-white        { background: transparent; color: #fff; outline: 1px solid rgba(255,255,255,0.7); }
.btn-white::after { background: rgba(255,255,255,0.32); }
.btn-white:hover  { background: rgba(255,255,255,0.14); }

.btn-black        { background: #070707; color: #fff; outline: 1px solid #222; }
.btn-black::after { background: #1a1a1a; outline: 1px solid #000; }
.btn-black:hover  { background: #111; color: #0066CC; }

.btn-full { width: 100%; }
.btn-sm   { padding: 10px 20px; font-size: 11px; }
button.btn-blue, button.btn-outline, button.btn-ghost-white { font-family: var(--f-body); }

.tag {
  display: inline-block; font: 700 10px/1 var(--f-body); letter-spacing: 2px; text-transform: uppercase;
  color: rgba(46,139,255,0.9); border: 1px solid rgba(0,102,204,0.3); padding: 5px 11px;
}
.tag--solid { background: var(--blue); color: #fff; border-color: var(--blue); }

.section-title span, .page-hero-title span, .split-panel-title em, .split-panel-card-title span,
.srv-card h3 span, .cta-title span, .cta-title strong {
  font-family: var(--f-highlight);
  color: var(--blue-light);
  font-weight: 700;
  font-style: normal;
  font-size: 0.86em;
  letter-spacing: -0.5px;
}

.section-kicker, .hero-eyebrow, .split-panel-card-label, .srv-who, .qf-label,
.plan-name, .review-role, .footer-col-title {
  font-family: var(--f-highlight);
}

/* Marca como imagen (logo.png): negro sobre transparente, pensado para
   fondo claro. En las cabeceras oscuras (nav-drawer, footer, landing) se
   invierte por CSS a blanco para que se vea — mismo archivo, sin generar
   una segunda versión del logo. En .page-hero-brand (fondo blanco) se usa
   tal cual, sin invertir. */
.brand-logo { display: block; height: 32px; width: auto; }
.brand-logo--invert { filter: invert(1) brightness(1.6); }
.hero-title span {
  font-family: var(--f-body);
  color: var(--blue-light);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
}

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 350;
  display: none;
  height: 84px;
  background: rgba(7,7,7,0.72); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.header-logo { flex-shrink: 0; line-height: 1; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.header-logo .brand-logo { height: 30px; }
.header-title { font-family: var(--f-title); font-size: 20px; letter-spacing: 2px; text-transform: uppercase; color: #fff; line-height: 1; }
.header-title span { color: var(--blue-light); font-style: normal; }
.header-links {
  list-style: none; display: flex; align-items: center; gap: 26px;
  margin: 0; padding: 0; flex: 1;
}
.header-links a {
  position: relative; display: inline-block; padding: 4px 0; white-space: nowrap;
  font-family: var(--f-body); font-size: 14px; font-weight: 500; letter-spacing: 0.2px;
  color: rgba(255,255,255,0.78); text-decoration: none; transition: color 0.2s;
}
.header-links a:hover { color: #fff; }
.header-links a[aria-current="page"] { color: var(--blue-light); }
.header-links a[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; background: var(--blue-light);
}
.header-cta { flex-shrink: 0; white-space: nowrap; }

@media (min-width: 1180px) {
  .site-header { display: block; }
}

.menu-btn {
  position: fixed; top: 24px; right: 24px; z-index: 400;
  width: 48px; height: 48px;
  background: rgba(7,7,7,0.7); border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px); cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; padding: 0; transition: background 0.2s, border-color 0.2s;
}
.menu-btn:hover { background: rgba(0,102,204,0.4); border-color: rgba(0,102,204,0.5); }
.menu-btn span { display: block; width: 22px; height: 1.5px; background: white; transition: all 0.3s ease; }
.menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 1180px) {
  .menu-btn { display: none; }
}

#backToTop {
  position: fixed; bottom: 24px; right: 24px; z-index: 399;
  width: 44px; height: 44px; background: var(--blue); border: none; cursor: pointer; color: white;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
  clip-path: polygon(8px 0%, 100% 0%, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0% 100%, 0% 8px);
}
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--blue-light); }

.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.65); backdrop-filter: blur(6px); z-index: 290;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

.nav-drawer {
  position: fixed; top: 0; right: -100%; width: min(380px, 100vw); height: 100vh;
  background: #090909; border-left: 1px solid rgba(255,255,255,0.07); z-index: 300;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column;
}
.nav-drawer.open { right: 0; }
.nav-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 0 28px; height: 72px; border-bottom: 1px solid rgba(255,255,255,0.06); flex-shrink: 0; }
.nav-logo { text-decoration: none; display: block; }
.nav-logo .brand-logo { height: 36px; }
.nav-drawer-body { flex: 1; padding: 40px 28px; display: flex; flex-direction: column; overflow-y: auto; }
.nav-drawer-links { list-style: none; flex: 1; display: flex; flex-direction: column; }
.nav-drawer-links li { border-bottom: 1px solid rgba(255,255,255,0.04); }
.nav-drawer-links li a { display: flex; align-items: baseline; justify-content: space-between; font-family: var(--f-title); font-size: 30px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); text-decoration: none; padding: 14px 0; transition: all 0.2s; }
.nav-drawer-links li a:hover, .nav-drawer-links li a[aria-current="page"] { color: white; padding-left: 6px; }
.nav-drawer-links li a[aria-current="page"] { color: var(--blue-light); }
.nav-drawer-links li a span { font-family: var(--f-body); font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.2); letter-spacing: 2px; }
.nav-drawer-footer { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; gap: 12px; }
.nav-drawer-footer a.nav-drawer-email { color: #0066CC; font-size: 14px; font-weight: 600; text-decoration: none; }

.hero { position: relative; width: 100%; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #000; padding-block: 130px 60px; }
.hero-video-container { position: absolute; inset: 0; z-index: 1; overflow: hidden; background: center/cover no-repeat; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }

.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; background:
  radial-gradient(ellipse 95% 85% at 50% 42%, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.78) 100%),
  linear-gradient(180deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.92) 100%); }
.hero-container { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
.hero-content { text-align: center; max-width: 800px; margin: 0 auto; }

.hero-content.hero-stack { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 560px; margin-inline: auto; }
.hero-content.hero-stack .quickform { margin-top: 12px; }
.hero-eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.hero-title { font-family: var(--f-title); font-size: clamp(2.6rem, 8vw, 5.2rem); letter-spacing: 2px; text-transform: uppercase; color: #ffffff; margin: 0 0 12px 0; line-height: 0.95; }
.hero-sub { font-weight: 400; font-size: 1.2rem; color: rgba(255, 255, 255, 0.82); margin: 0 0 30px 0; max-width: 480px; margin-inline: auto; }
.hero-actions { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 8px; }

@media (max-width: 859px) {
  .hero-video-container { background: url(/assets/img/background-mobile.png) center/cover no-repeat; }
}
@media (max-width: 768px) {
  .hero-title { font-size: clamp(2.4rem, 13vw, 4rem); }
  .hero-sub { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions a, .hero-actions button { width: 100%; text-align: center; }
}

.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: calc(84px + 60px) 0 64px;
  background-color: #fff;
}
.page-hero::before {

  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url(/assets/img/background-blanco.png) no-repeat center center;
  background-size: cover; filter: blur(6px);
}

.page-hero-brand {
  position: absolute; z-index: 4; top: 24px; left: 40px;
  text-decoration: none;
}
.page-hero-brand .brand-logo { height: 40px; }

.page-hero-inner { position: relative; z-index: 3; max-width: 720px; padding-left: 30px; }
.page-hero-inner::before { content: ''; position: absolute; left: 0; top: 6px; height: 26px; width: 3px; background: linear-gradient(180deg, var(--blue), rgba(0,102,204,0.08)); }
.page-hero-eyebrow { display: inline-block; font-family: var(--f-highlight); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 18px; }
.page-hero-eyebrow::before { content: '// '; opacity: 0.6; }
.page-hero-title { position: relative; z-index: 3; font-family: var(--f-title); font-size: clamp(38px, 5.4vw, 60px); letter-spacing: 2.5px; text-transform: uppercase; line-height: 0.96; color: #0a0a0a; margin-bottom: 18px; }
.page-hero-desc { font-size: 15px; color: #0a0a0a; line-height: 1.75; max-width: 560px; }

.page-hero .btn-outline { color: #0a0a0a; outline: 1px solid rgba(10,10,10,0.32); }
.page-hero .btn-outline::after { background: rgba(10,10,10,0.1); }
.page-hero .btn-outline:hover { outline-color: #0a0a0a; }
.page-hero .migas { color: rgba(10,10,10,0.45); }
.page-hero .migas a { color: var(--blue); }
.page-hero .migas a:hover { color: #0a0a0a; }
.page-hero .migas span { color: rgba(10,10,10,0.25); }

@media (max-width: 768px) {
  .page-hero { padding: calc(64px + 40px) 0 48px; }
  .page-hero-inner { padding-left: 22px; }
  .page-hero-desc { max-width: 100%; }
  .page-hero-brand { top: 20px; left: 22px; }
  .page-hero-brand .brand-logo { height: 32px; }
}
@media (max-width: 480px) {
  .page-hero { padding: calc(58px + 32px) 0 40px; }
  .page-hero-inner { padding-left: 16px; }
  .page-hero-inner::before { top: 4px; height: 22px; }
  .page-hero-brand { left: 16px; }
  .page-hero-title { font-size: clamp(30px, 9vw, 42px); letter-spacing: 1.3px; margin-bottom: 14px; }
  .page-hero-desc { font-size: 14px; line-height: 1.65; }
  .page-hero-eyebrow { font-size: 11px; margin-bottom: 14px; }
}

.section-tech { position: relative; padding: 88px 0; background: transparent; overflow: hidden; }
.section-tech > .container { position: relative; z-index: 1; }

.section-title { font-family: var(--f-title); font-size: clamp(36px, 5.5vw, 60px); letter-spacing: 3px; text-transform: uppercase; line-height: 0.95; color: white; margin-bottom: 8px; }
.section-kicker { display: block; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(46,139,255,0.85); margin-bottom: 14px; }
.section-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 62ch; margin-top: 14px; }
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; max-width: 640px; margin-inline: auto; }
.section-head.center .section-desc { margin-inline: auto; }

.srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.srv-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.srv-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.srv-card {
  background: rgba(17,17,17,0.9); padding: 34px 28px; display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,0.06); transition: background 0.25s, transform .2s;
  clip-path: polygon(var(--cut) 0%, 100% 0%, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0% 100%, 0% var(--cut));
}
.srv-card:hover { background: rgba(20,20,20,0.95); transform: translateY(-5px); border-color: rgba(0,102,204,0.4); }
.srv-card-top { border-top: 3px solid #0066CC; }
.srv-card h3 { font-family: var(--f-title); font-size: clamp(24px, 2.6vw, 34px); letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.05; color: white; margin-bottom: 12px; }
.srv-card h3 span { color: #0066CC; }
.srv-card > p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 16px; }
.srv-card ul { list-style: none; flex: 1; margin-bottom: 16px; display: flex; flex-direction: column; gap: 7px; }
.srv-card ul li { font-size: 12.5px; color: rgba(255,255,255,0.55); padding-left: 14px; position: relative; line-height: 1.55; }
.srv-card ul li::before { content: '—'; position: absolute; left: 0; color: #0066CC; font-size: 10px; }

.prin-ico { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin-bottom: 16px; color: var(--blue-light); background: rgba(0,102,204,0.1); border: 1px solid rgba(0,102,204,0.28); transition: background .25s, transform .25s; }
.prin-ico svg { width: 22px; height: 22px; display: block; }
.srv-card:hover .prin-ico { background: rgba(0,102,204,0.2); transform: translateY(-2px); }
#principios { scroll-margin-top: 100px; }
.srv-who { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(46,139,255,0.55); margin-bottom: 16px; display: block; font-weight: 700; }
.srv-cta { margin-top: auto; align-self: flex-start; }
@media (max-width: 1024px) { .srv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .srv-grid, .srv-grid.cols-2, .srv-grid.cols-4 { grid-template-columns: 1fr; } .srv-card { clip-path: none; padding: 28px 22px; } }

.checks { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.checks li { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; line-height: 1.55; }
.checks svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 1px; }
.checks--dark li { color: rgba(255,255,255,0.6); }
.checks--dark li strong { color: #fff; }
.checks--light li { color: #0a0a0a; }
.checks--light li strong { color: #0a0a0a; }

.stats-row { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 40px 0; }
.stat-item { flex: 1; min-width: 180px; }
.stat-n { font-family: var(--f-accent); font-weight: 700; letter-spacing: -1px; font-variant-numeric: tabular-nums; font-size: clamp(44px, 6vw, 70px); line-height: 1; color: white; }
.stat-n .accent { color: var(--blue-light); }
.stat-l { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); margin-top: 8px; max-width: 26ch; }

.section-demo { position: relative; isolation: isolate; overflow: hidden; background-color: #f5f6f8; }

.section-demo::before, .section-reviews::before, .section-pricing::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url(/assets/img/background-blanco.png) no-repeat center center;
  background-size: cover; filter: blur(6px);
}
.section-demo > .split-panel { position: relative; z-index: 1; }
.section-reviews > .container, .section-pricing > .container { position: relative; z-index: 1; }
.split-panel { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.split-panel-text { padding: 72px 56px 72px max(20px, calc((100vw - 1200px) / 2 + 40px)); display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.split-panel-title { font-family: var(--f-title); font-size: clamp(30px, 4.2vw, 54px); letter-spacing: 2px; text-transform: uppercase; line-height: 1.02; color: #070707; margin-bottom: 24px; overflow-wrap: break-word; }
.split-panel-title em { font-style: normal; color: #0066CC; }

.split-panel-stats { display: flex; flex-wrap: wrap; gap: 28px 44px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(0,0,0,0.1); }
.split-panel-stat { display: flex; flex-direction: column; gap: 10px; min-width: 130px; }
.split-panel-stat-ico { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; color: var(--blue); background: rgba(0,102,204,0.08); border: 1px solid rgba(0,102,204,0.2); transition: background .25s, transform .25s; }
.split-panel-stat-ico svg { width: 21px; height: 21px; display: block; }
.split-panel-stat:hover .split-panel-stat-ico { background: rgba(0,102,204,0.16); transform: translateY(-2px); }
.split-panel-stat .stat-n { color: var(--blue); font-size: clamp(36px, 4.2vw, 52px); font-weight: 700; letter-spacing: -1px; font-variant-numeric: tabular-nums; line-height: 1; }
.split-panel-stat .stat-l { color: #555; font-size: 12px; line-height: 1.5; max-width: 22ch; }
.split-panel-desc { font-size: 14px; color: #333; line-height: 1.8; margin-bottom: 22px; max-width: 400px; }
.split-panel-feats { display: flex; flex-direction: column; margin-bottom: 24px; }
.split-panel-feat { display: flex; gap: 14px; align-items: flex-start; padding: 15px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.split-panel-feat:first-child { border-top: 1px solid rgba(0,0,0,0.06); }
.split-panel-feat-line { width: 2px; height: 34px; background: #0066CC; flex-shrink: 0; margin-top: 2px; }
.split-panel-feat strong { display: block; font-size: 13.5px; font-weight: 700; color: #111; margin-bottom: 3px; }
.split-panel-feat p { font-size: 13px; color: #555; line-height: 1.6; margin: 0; }
.split-panel-card { background: #070707; padding: 56px 44px; display: flex; flex-direction: column; justify-content: center; clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px); }
.split-panel-card-label { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 16px; }
.split-panel-card-title { font-family: var(--f-title); font-size: clamp(30px, 3.6vw, 44px); letter-spacing: 1px; text-transform: uppercase; line-height: 1; color: white; margin-bottom: 16px; }
.split-panel-card-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 18px; }
.split-panel-card-list { list-style: none; margin-bottom: 22px; display: flex; flex-direction: column; gap: 8px; }
.split-panel-card-list li { font-size: 12.5px; color: rgba(255,255,255,0.5); padding-left: 14px; position: relative; line-height: 1.55; }
.split-panel-card-list li::before { content: '—'; position: absolute; left: 0; color: #0066CC; font-size: 10px; }
@media (max-width: 1024px) {
  .split-panel { grid-template-columns: 1fr; }
  .split-panel-text { padding: 56px 32px; }
  .split-panel-card { clip-path: none; min-height: 260px; padding: 44px 32px; }
}
@media (max-width: 767px) {
  .split-panel-text, .split-panel-card { padding: 36px 20px; }
  .split-panel-title { font-size: clamp(26px, 8.5vw, 34px); letter-spacing: 1px; margin-bottom: 18px; }

  .split-panel-stats { flex-direction: column; flex-wrap: nowrap; gap: 10px; margin-bottom: 24px; padding-bottom: 0; border-bottom: none; }
  .split-panel-stat {
    display: grid; grid-template-columns: 40px 1fr; grid-template-rows: auto auto;
    column-gap: 14px; row-gap: 2px; align-items: center; min-width: 0; width: 100%;
    background: #fff; border: 1px solid rgba(10,10,10,0.08); border-radius: 4px;
    padding: 12px 14px;
  }
  .split-panel-stat-ico { grid-column: 1; grid-row: 1 / span 2; width: 36px; height: 36px; }
  .split-panel-stat-ico svg { width: 18px; height: 18px; }
  .split-panel-stat .stat-n { grid-column: 2; grid-row: 1; font-size: 24px; letter-spacing: -0.5px; }
  .split-panel-stat .stat-l { grid-column: 2; grid-row: 2; max-width: none; font-size: 11.5px; line-height: 1.4; }
}

.section-cta { position: relative; isolation: isolate; overflow: hidden; padding: 72px 0; background: linear-gradient(120deg, #0055bb 0%, #0066CC 60%, #0052a3 100%); }
.section-cta .cta-video, .contact-strip .cta-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.section-cta::before, .contact-strip::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(120deg, rgba(0,72,150,0.90) 0%, rgba(0,102,204,0.70) 55%, rgba(0,52,112,0.92) 100%);
}
.section-cta > .container, .contact-strip > .container { position: relative; z-index: 2; }
.cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 44px; }
.cta-inner.center { grid-template-columns: 1fr; text-align: center; }
.cta-title { font-family: var(--f-title); font-size: clamp(30px, 4vw, 52px); letter-spacing: 2px; text-transform: uppercase; line-height: 0.94; color: #fff; margin-bottom: 10px; }
.cta-desc { font-size: 14px; color: rgba(255,255,255,0.9); line-height: 1.7; max-width: 56ch; }
.cta-inner.center .cta-desc { margin-inline: auto; }
.cta-btns { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; min-width: 200px; }
.cta-inner.center .cta-btns { flex-direction: row; justify-content: center; flex-wrap: wrap; margin-top: 20px; min-width: 0; }
.section-cta .btn-blue { background: #070707; outline: 1px solid rgba(255,255,255,0.2); }
.section-cta .btn-blue::after { background: #000; }
.section-cta .btn-blue:hover { background: #000; }
.section-cta .btn-outline { outline-color: rgba(255,255,255,0.65); }
@media (max-width: 900px) { .cta-inner { grid-template-columns: 1fr; gap: 26px; } .cta-btns { flex-direction: row; flex-wrap: wrap; } }

.contact-strip { position: relative; isolation: isolate; overflow: hidden; background: var(--blue); padding: 56px 0; }
.contact-strip-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; }
.contact-strip h2 { font-family: var(--f-title); font-size: clamp(26px,3.4vw,42px); letter-spacing: 2px; text-transform: uppercase; color: white; line-height: 0.98; margin-bottom: 6px; }
.contact-strip p { font-size: 14px; color: rgba(255,255,255,0.75); }
@media (max-width: 700px) { .contact-strip-inner { grid-template-columns: 1fr; text-align: center; } }

@media (max-width: 859px) {
  .section-cta { background: url(/assets/img/background-mobile.png) center/cover no-repeat, linear-gradient(120deg, #0055bb 0%, #0066CC 60%, #0052a3 100%); }
  .contact-strip { background: url(/assets/img/background-mobile.png) center/cover no-repeat, var(--blue); }
}

.section-contacto { position: relative; padding: 88px 0; background: radial-gradient(ellipse 55% 60% at 15% 25%, #0c1c30 0%, #0a0a0a 60%); }
.contacto-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contacto-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; margin: 14px 0 26px; }
.contacto-info { display: flex; flex-direction: column; gap: 12px; }
.contacto-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.contacto-row svg { width: 16px; height: 16px; color: var(--blue-light); flex-shrink: 0; }
a.contacto-row:hover { color: white; }

.contacto-form-wrap { position: relative; isolation: isolate; display: block; }
.contacto-form { background: #0a0a0a; border: 1px solid rgba(255,255,255,0.1); padding: 30px;
  clip-path: polygon(var(--cut) 0%, 100% 0%, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0% 100%, 0% var(--cut)); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-field.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-field label { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.28); }
.form-field input, .form-field select, .form-field textarea {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); color: white;
  padding: 11px 13px; font-size: 13px; font-family: var(--f-body); outline: none; width: 100%; transition: border-color 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: #0066CC; }
.form-field select { background-color: #0a0a0a; cursor: pointer; }
.form-field textarea { resize: vertical; min-height: 96px; }
select option { background: #111; color: white; }
::placeholder { color: rgba(255,255,255,0.18); }
.form-gdpr { display: flex; align-items: flex-start; gap: 9px; font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.5; margin-bottom: 16px; }
.form-gdpr input { width: auto; margin-top: 2px; accent-color: var(--blue); }
.form-gdpr a { color: var(--blue-light); }
#formStatus, .form-status { font-size: 13px; margin-top: 10px; padding: 10px 14px; display: none; }
#formStatus.ok, .form-status.ok { display: block; background: rgba(34,197,94,0.1); color: #4ADE80; border: 1px solid rgba(34,197,94,0.25); }
#formStatus.err, .form-status.err { display: block; background: rgba(239,68,68,0.1); color: #F87171; border: 1px solid rgba(239,68,68,0.25); }
@media (max-width: 1024px) { .contacto-grid { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 768px) { .form-row-2 { grid-template-columns: 1fr; } .contacto-form { padding: 24px 20px; } }
@media (max-width: 480px) { .form-field input, .form-field select, .form-field textarea { font-size: 16px; } }

.quickform {
  position: relative; isolation: isolate; background: rgba(7,7,7,0.86); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px); padding: 28px 26px; width: 100%; max-width: 440px; margin-inline: auto;
  clip-path: polygon(var(--cut) 0%, 100% 0%, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0% 100%, 0% var(--cut));
  text-align: left;
}
.qf-progress { display: flex; gap: 6px; margin-bottom: 18px; }
.qf-progress i { flex: 1; height: 3px; background: rgba(255,255,255,0.12); border-radius: 2px; }
.qf-progress i.done { background: var(--blue); }
.qf-progress i.current { background: var(--blue-light); }
.qf-step { display: none; }
.qf-step.active { display: block; animation: qf-in .35s ease both; }
@keyframes qf-in { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: none; } }
.qf-label { font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(46,139,255,0.8); margin-bottom: 8px; }
.qf-question { font-family: var(--f-title); font-size: 22px; letter-spacing: .5px; text-transform: uppercase; color: #fff; margin-bottom: 16px; line-height: 1.15; }
.qf-options { display: flex; flex-direction: column; gap: 10px; }
.qf-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.12); color: #fff;
  font-family: var(--f-body); font-size: 13.5px; font-weight: 600; text-align: left;
  padding: 13px 16px; cursor: pointer; transition: border-color .15s, background .15s;
}
.qf-opt:hover { border-color: var(--blue-light); background: rgba(0,102,204,0.12); }
.qf-opt.selected { border-color: var(--blue); background: rgba(0,102,204,0.16); }
.qf-opt svg { width: 16px; height: 16px; color: rgba(255,255,255,0.3); flex-shrink: 0; transition: transform .15s, color .15s; }
.qf-opt:hover svg { color: var(--blue-light); transform: translateX(2px); }
.qf-back { display: inline-flex; align-items: center; gap: 6px; background: none; border: none; color: rgba(255,255,255,0.4); font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; margin-bottom: 14px; padding: 0; }
.qf-back:hover { color: #fff; }
.qf-summary { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 16px; padding: 10px 12px; background: rgba(255,255,255,0.04); border-left: 2px solid var(--blue); }
.qf-summary strong { color: #fff; }
.qf-done { display: none; text-align: center; padding: 12px 0; }
.qf-done.active { display: block; animation: qf-in .35s ease both; }
.quickform noscript p { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 14px; }
.qf-done svg { width: 40px; height: 40px; color: var(--success); margin: 0 auto 14px; }
.qf-done h3 { font-family: var(--f-title); font-size: 22px; letter-spacing: 1px; text-transform: uppercase; color: #fff; margin-bottom: 8px; }
.qf-done p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
@media (max-width: 480px) { .quickform { padding: 22px 18px; } .qf-question { font-size: 19px; } }

.qf-service-wrap { display: grid; gap: 40px; align-items: center; }
.qf-service-intro .section-desc { margin-top: 12px; }
@media (min-width: 900px) { .qf-service-wrap { grid-template-columns: 1fr 1fr; gap: 64px; } }

.section-pricing { position: relative; isolation: isolate; overflow: hidden; background-color: #ffffff; padding: 88px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; align-items: stretch; }
.plan-card { border: 1px solid rgba(0,0,0,0.1); display: flex; flex-direction: column; background: #fff; position: relative; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.plan-card:hover { transform: translateY(-5px); border-color: rgba(0,102,204,0.45); box-shadow: 0 22px 50px -32px rgba(0,102,204,0.4); }
.plan-card.featured { border-color: var(--blue); box-shadow: 0 24px 60px -30px rgba(0,102,204,0.35); }
.plan-head { padding: 26px 26px 22px; background: #f5f6f8; border-bottom: 1px solid rgba(0,0,0,0.08); }
.plan-card.featured .plan-head { background: #0b1424; }
.plan-name { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.plan-card.featured .plan-name { color: var(--blue-light); }
.plan-price { font-family: var(--f-title); font-size: 40px; letter-spacing: 1px; color: #111; line-height: 1; }
.plan-card.featured .plan-price { color: #fff; }
.plan-price small { font-family: var(--f-body); font-size: 13px; font-weight: 500; color: #888; text-transform: none; letter-spacing: 0; }
.plan-card.featured .plan-price small { color: rgba(255,255,255,0.5); }
.plan-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.plan-body ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.plan-body ul li { font-size: 13px; color: #444; padding-left: 20px; position: relative; line-height: 1.5; }
.plan-body ul li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } .plan-card.featured { order: -1; } }

.section-reviews { position: relative; isolation: isolate; overflow: hidden; background-color: #ffffff; padding: 88px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 8px; }
.review-card { background: #f5f6f8; border: 1px solid rgba(0,0,0,0.07); padding: 32px 26px; display: flex; flex-direction: column; gap: 18px; transition: background .25s, border-color .25s, transform .25s ease;
  clip-path: polygon(var(--cut) 0%, 100% 0%, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0% 100%, 0% var(--cut)); }
.review-card:hover { background: #eef1f6; border-color: rgba(0,102,204,0.15); transform: translateY(-4px); }
.review-stars { display: flex; gap: 3px; }
.review-stars svg { width: 14px; height: 14px; fill: #0066CC; }
.review-text { font-size: 14px; color: #333; line-height: 1.75; flex: 1; }
.review-text::before { content: '\201C'; color: #0066CC; font-size: 22px; font-family: var(--f-title); line-height: 1; display: block; margin-bottom: 6px; }
.review-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid rgba(0,0,0,0.06); }
.review-avatar { width: 40px; height: 40px; background: rgba(0,102,204,0.1); border: 1px solid rgba(0,102,204,0.25); display: flex; align-items: center; justify-content: center; font-family: var(--f-title); font-size: 17px; color: #0066CC; flex-shrink: 0;
  clip-path: polygon(6px 0%, 100% 0%, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0% 100%, 0% 6px); }
.review-meta strong { display: block; font-size: 13px; font-weight: 700; color: #111; margin-bottom: 2px; }
.review-meta span { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #999; }
.review-note { font-size: 12.5px; color: #888; margin-top: 22px; max-width: 70ch; }
@media (max-width: 1024px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } .review-card { clip-path: none; padding: 26px 20px; } .section-reviews { padding: 56px 0; } }

.result-mini { display: flex; gap: 24px; margin-top: 16px; }
.result-mini div { display: flex; flex-direction: column; }
.result-mini .n { font-family: var(--f-accent); font-size: 26px; color: var(--blue); }
.result-mini .l { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-top: 2px; }

.section-doc { background: var(--black); padding: 0 0 88px; }
.doc-panel { background: #fff; color: #16181c; max-width: 880px; margin: -40px auto 0; padding: 48px clamp(24px, 5vw, 64px) 56px; position: relative; z-index: 2;
  clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%, 0 16px); }
.doc { max-width: 70ch; margin-inline: auto; }
.doc h2 { font-family: var(--f-title); letter-spacing: 1px; text-transform: uppercase; font-size: clamp(22px,2.6vw,30px); margin-top: 2.4rem; color: #0a0a0a; }
.doc h3 { font-size: 1.15rem; font-weight: 700; margin-top: 1.75rem; color: #0a0a0a; }
.doc p, .doc ul, .doc ol { margin-top: 1rem; color: #33383f; font-size: 15px; line-height: 1.75; }
.doc ul, .doc ol { padding-left: 1.25rem; }
.doc li { margin-top: .4rem; }
.doc a { color: var(--blue-dark); }
.doc__meta { font-size: 13px; color: #767c85; margin-bottom: 1.5rem; }
.doc-cta { margin-top: 2.5rem; padding: 24px; background: #f0f5fb; border-left: 3px solid var(--blue); }
.doc-cta h3 { margin-top: 0; }
.doc-cta p { color: #444; }
.doc-cta a { display: inline-block; margin-top: 10px; font-weight: 700; color: var(--blue-dark); text-decoration: none; }
@media (max-width: 700px) { .doc-panel { padding: 36px 20px 44px; margin-top: -24px; } }

.migas { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 18px; position: relative; z-index: 1; }
.migas a { color: rgba(255,255,255,0.55); text-decoration: none; }
.migas a:hover { color: #fff; }
.migas span { margin-inline: .5rem; color: rgba(255,255,255,0.2); }

.js .swp-anim-up, .js .swp-anim-in, .js .swp-anim-left {
  opacity: 0; transform: translateY(22px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.js .swp-anim-left { transform: translateX(-16px); }
.js .swp-anim-up.visible, .js .swp-anim-in.visible, .js .swp-anim-left.visible { opacity: 1; transform: none; }
.swp-line { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .js .swp-anim-up, .js .swp-anim-in, .js .swp-anim-left { opacity: 1; transform: none; transition: none; }
}

.swp-footer { background: #050505; padding: 60px 0 24px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { text-decoration: none; display: block; }
.footer-brand .brand-logo { height: 30px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.8; margin: 14px 0; max-width: 34ch; }
.footer-contact { font-size: 13px; line-height: 1.9; margin: 0 0 14px; }
.footer-contact a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--blue-light); }
.footer-col-title { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-ck-btn { background: transparent; border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.25); font-family: var(--f-body); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; cursor: pointer; transition: all 0.2s; }
.footer-ck-btn:hover { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.5); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.15); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1100; background: #080808; border-top: 1px solid rgba(0,102,204,0.3); padding: 16px 32px; display: none; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; transform: translateY(100%); opacity: 0; transition: transform 0.4s ease, opacity 0.4s ease; }
#cookie-banner.visible { display: flex; transform: translateY(0); opacity: 1; }
.ck-left p { font-size: 13px; color: rgba(255,255,255,0.6); }
.ck-left strong { color: white; }
.ck-left a { color: var(--blue); font-size: 11px; text-decoration: none; }
.ck-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.ck-btn { font-family: var(--f-body); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 8px 18px; border: none; cursor: pointer; transition: all 0.2s; }
.ck-accept { background: var(--blue); color: white; }
.ck-accept:hover { background: var(--blue-light); }
.ck-reject { background: transparent; color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.1); }
.ck-reject:hover { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); }
.ck-settings { background: transparent; color: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.07); }
.ck-settings:hover { color: white; border-color: rgba(255,255,255,0.2); }

#cookie-modal { position: fixed; inset: 0; z-index: 1200; background: rgba(0,0,0,0.75); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; padding: 24px; }
#cookie-modal.open { display: flex; }
.ck-modal-box { background: #0c0c0c; border: 1px solid rgba(255,255,255,0.07); border-top: 3px solid var(--blue); max-width: 480px; width: 100%; padding: 28px; }
.ck-modal-box h3 { font-family: var(--f-title); font-size: 24px; letter-spacing: 2px; text-transform: uppercase; color: white; margin-bottom: 8px; }
.ck-modal-box > p { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.ck-toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.05); gap: 14px; }
.ck-toggle-row strong { display: block; font-size: 13px; font-weight: 600; color: white; margin-bottom: 2px; }
.ck-toggle-row span { font-size: 11px; color: rgba(255,255,255,0.3); }
.ck-toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.ck-toggle input { opacity: 0; width: 0; height: 0; }
.ck-slider { position: absolute; inset: 0; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 24px; cursor: pointer; transition: all 0.3s; }
.ck-slider::before { content: ''; position: absolute; width: 16px; height: 16px; left: 3px; top: 3px; background: rgba(255,255,255,0.4); border-radius: 50%; transition: all 0.3s; }
.ck-toggle input:checked + .ck-slider { background: var(--blue); border-color: var(--blue); }
.ck-toggle input:checked + .ck-slider::before { transform: translateX(20px); background: white; }
.ck-disabled .ck-slider { opacity: 0.4; cursor: not-allowed; }
.ck-modal-footer { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
@media (max-width: 600px) { #cookie-banner { padding: 16px 20px; } .ck-actions { width: 100%; } .ck-actions .ck-btn { flex: 1; } }

.error-page { min-height: 78vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 100px 20px 60px; }
.error-code { font-family: var(--f-title); font-size: clamp(90px, 20vw, 180px); line-height: 0.9; color: var(--blue); letter-spacing: 2px; }
.error-page h1 { font-family: var(--f-title); font-size: clamp(24px, 4vw, 36px); letter-spacing: 1px; text-transform: uppercase; color: #fff; margin: 12px 0 14px; }
.error-page p { font-size: 14px; color: rgba(255,255,255,0.5); max-width: 46ch; margin-inline: auto; line-height: 1.7; }
.error-actions { margin-top: 30px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.confirm-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 100px 20px 60px; }
.confirm-icon { width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%; background: rgba(34,197,94,0.1); border: 1.5px solid var(--success); display: flex; align-items: center; justify-content: center; color: var(--success); }

.lp-header {
  position: sticky; top: 0; z-index: 50;
  height: 72px; display: flex; align-items: center;
  background: rgba(7,7,7,0.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lp-header .header-logo { text-decoration: none; display: block; }
.lp-header .header-logo .brand-logo { height: 28px; }

.lp-hero { min-height: auto; padding: 64px 0 72px; }

.lp-hero .hero-video-container { background: url(/assets/img/background-negro.png) center/cover no-repeat; }
.lp-hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
}
.lp-hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: start; text-align: left; max-width: 1100px; }
.lp-hero-content { padding-top: 8px; }
.lp-hero-eyebrow { display: inline-block; font-family: var(--f-highlight); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue-light); margin-bottom: 16px; }
.lp-hero-eyebrow::before { content: '// '; opacity: 0.7; }
.lp-hero-title { font-family: var(--f-title); font-size: clamp(30px, 4.4vw, 46px); letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.05; color: #fff; margin-bottom: 16px; }
.lp-hero-desc { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 22px; max-width: 52ch; }
.lp-hero-form { margin-top: 0; }
.lp-hero-form h2 { font-family: var(--f-title); font-size: 20px; letter-spacing: 1px; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
@media (max-width: 900px) {
  .lp-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .lp-hero-content { padding-top: 0; }
  .lp-hero-desc { margin-inline: auto; }
  .checks.lp-hero-bullets { align-items: center; }
  .lp-hero-bullets li { text-align: left; }
}

.lp-footer { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; background: transparent; }
.lp-footer-inner { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.4); }
.lp-footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.lp-footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; }
.lp-footer-links a:hover { color: #fff; }
.confirm-page h1 { font-family: var(--f-title); font-size: clamp(28px, 4.5vw, 42px); letter-spacing: 1px; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.confirm-page p { font-size: 15px; color: rgba(255,255,255,0.55); max-width: 46ch; margin-inline: auto; line-height: 1.7; }

.section-plain { padding: 88px 0; background: transparent; }
.section-plain.light { background: #fff; color: #16181c; }

.section-plain.light, .section-tech.light {
  position: relative; isolation: isolate; overflow: hidden;
}
.section-plain.light::before, .section-tech.light::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url(/assets/img/background-blanco.png) no-repeat center center;
  background-size: cover; filter: blur(6px);
}
.section-plain.light > .container, .section-tech.light > .container { position: relative; z-index: 1; }
.section-plain.light .section-title, .section-tech.light .section-title { color: #0a0a0a; }
.section-plain.light .section-desc, .section-tech.light .section-desc { color: #0a0a0a; }
.section-plain.light .srv-card, .section-tech.light .srv-card { background: #f5f6f8; border-color: rgba(10,10,10,0.08); }
.section-plain.light .srv-card:hover, .section-tech.light .srv-card:hover { background: #eef0f3; border-color: rgba(0,102,204,0.4); }
.section-plain.light .srv-card h3, .section-tech.light .srv-card h3 { color: #0a0a0a; }
.section-plain.light .srv-card > p, .section-tech.light .srv-card > p { color: #0a0a0a; }
.section-plain.light .srv-card ul li, .section-tech.light .srv-card ul li { color: #0a0a0a; }
.section-plain.light .qf-service-intro .section-desc { color: #0a0a0a; }
.section-plain.light .stat-n, .section-tech.light .stat-n { color: #0a0a0a; }

.faq { max-width: 760px; }
.faq details { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq details:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.faq summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 22px 40px 22px 0; font-family: var(--f-title); font-size: 18px;
  letter-spacing: .5px; text-transform: uppercase; color: #fff;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 4px; top: 50%; width: 11px; height: 11px;
  margin-top: -6px; border-right: 2px solid var(--blue-light); border-bottom: 2px solid var(--blue-light);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(225deg); }
.faq details p { padding: 0 40px 22px 0; color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.7; max-width: 62ch; }
.section-plain.light .faq details, .section-tech.light .faq details { border-color: rgba(10,10,10,0.12); }
.section-plain.light .faq summary, .section-tech.light .faq summary { color: #0a0a0a; }
.section-plain.light .faq details p, .section-tech.light .faq details p { color: rgba(10,10,10,0.65); }

.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 13.5px; }
.compare-table caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.compare-table th, .compare-table td { padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,0.1); text-align: left; }
.compare-table thead th { font-family: var(--f-title); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 400; }
.compare-table tbody th { color: rgba(255,255,255,0.75); font-weight: 600; }
.compare-table td { color: rgba(255,255,255,0.55); }
.compare-table .hi { background: rgba(0,102,204,0.1); }
.compare-table thead .hi { color: var(--blue-light); }
.compare-table .yes { color: var(--blue-light); font-weight: 700; }
.section-plain.light .compare-table th, .section-tech.light .compare-table th { border-color: rgba(10,10,10,0.12); }
.section-plain.light .compare-table thead th { color: rgba(10,10,10,0.5); }
.section-plain.light .compare-table tbody th { color: #0a0a0a; }
.section-plain.light .compare-table td { color: rgba(10,10,10,0.65); }

.timeline { list-style: none; padding: 0; margin: 0; position: relative; max-width: 640px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: rgba(255,255,255,0.12); }
.timeline li { position: relative; padding: 0 0 32px 34px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ''; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: #070707; border: 3px solid var(--blue); }
.timeline .timeline-n { font-family: var(--f-title); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue-light); display: block; margin-bottom: 4px; }
.timeline h3 { font-family: var(--f-title); font-size: 18px; letter-spacing: .5px; text-transform: uppercase; color: #fff; margin: 0 0 6px; }
.timeline p { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.65; margin: 0; max-width: 50ch; }
.section-plain.light .timeline::before { background: rgba(10,10,10,0.14); }
.section-plain.light .timeline li::before { background: #fff; }
.section-plain.light .timeline h3 { color: #0a0a0a; }
.section-plain.light .timeline p { color: rgba(10,10,10,0.65); }
