/* ============================================================
   HostFlow · by InBoxIA — Landing corporativa
   Design system derivado del logo (logo-inboxia-hostflow.svg)
   Paleta: cian → azul → índigo → violeta → magenta
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Marca (colores extraídos del logo) */
  --cyan: #00b4fc;
  --blue: #0062f9;
  --indigo: #3f14d6;
  --violet: #673de6;      /* acento principal (coherente con InBoxIA) */
  --violet-600: #5a2fe0;
  --violet-700: #4a24c9;
  --magenta: #c81cfc;
  --magenta-2: #d401fc;

  /* Degradado firma (el del logo) */
  --flow: linear-gradient(100deg, #00b4fc 0%, #0062f9 30%, #4a1ae6 62%, #c81cfc 100%);
  --flow-soft: linear-gradient(100deg, rgba(0,180,252,.14), rgba(0,98,249,.12) 40%, rgba(103,61,230,.14) 70%, rgba(200,28,252,.14));

  /* Tinta y neutros */
  --ink: #0f1020;
  --ink-2: #1a1a2e;
  --muted: #55566f;
  --muted-2: #8486a3;
  --line: #ececf5;
  --line-2: #e4e2f2;

  /* Superficies */
  --bg: #ffffff;
  --bg-soft: #fbfbff;
  --tint: #f4f1ff;        /* tinte violeta */
  --tint-blue: #eef4ff;
  --dark: #0c0a1f;        /* sección oscura */
  --dark-2: #14112e;

  /* Semánticos */
  --green: #16b364;
  --gold: #f6a723;

  /* Forma / sombra */
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(20,17,46,.06), 0 2px 8px rgba(20,17,46,.05);
  --shadow: 0 12px 34px -12px rgba(74,26,214,.22), 0 6px 16px -8px rgba(20,17,46,.10);
  --shadow-lg: 0 40px 80px -28px rgba(74,26,214,.34), 0 12px 30px -14px rgba(20,17,46,.14);
  --shadow-violet: 0 18px 40px -14px rgba(103,61,230,.55);

  --maxw: 1200px;
  --nav-h: 80px;

  --ease: cubic-bezier(.16,1,.3,1);
  --ease-out: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
html { overflow-x: clip; }
h1,h2,h3,h4 { margin: 0; line-height: 1.05; letter-spacing: -.02em; font-weight: 800; color: var(--ink); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
:focus-visible { outline: 3px solid rgba(103,61,230,.45); outline-offset: 3px; border-radius: 6px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 72px 0; }
@media (max-width: 768px){ .section { padding: 68px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  color: var(--violet-700); text-transform: uppercase;
}
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 19px; max-width: 60ch; }
.section-head.center p { margin-inline: auto; }

.grad-text {
  background: var(--flow);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 16px; line-height: 1;
  padding: 15px 24px; border-radius: var(--r-pill);
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn i { font-size: 19px; }
.btn-primary { background: var(--violet); color: #fff; box-shadow: var(--shadow-violet); }
.btn-primary:hover { background: var(--violet-600); transform: translateY(-2px); box-shadow: 0 22px 46px -14px rgba(103,61,230,.6); }
.btn-primary:active { transform: translateY(0) scale(.985); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line-2); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--violet); color: var(--violet-700); transform: translateY(-2px); }
.btn-lg { padding: 18px 30px; font-size: 17px; }
.btn-block { width: 100%; }
.btn-white { background:#fff; color: var(--violet-700); box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-2px); }
.btn-outline-light { background: rgba(255,255,255,.08); color:#fff; border:1px solid rgba(255,255,255,.28); }
.btn-outline-light:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s, box-shadow .3s, height .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--line);
  height: 66px;
}
.nav .container { display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 46px; width: auto; transition: height .3s; }
.nav.scrolled .brand img { height: 38px; }
.nav-links { display: flex; align-items: center; gap: 30px; margin-left: 8px; }
.nav-links a { font-size: 15.5px; font-weight: 600; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav-right .link-login { font-size: 15.5px; font-weight: 700; color: var(--ink); }
.nav-right .link-login:hover { color: var(--violet-700); }
.lang { display:flex; align-items:center; gap:6px; font-size:14px; font-weight:700; color:var(--muted-2); }
.lang a.active { color: var(--violet-700); }
.nav-toggle { display: none; font-size: 26px; color: var(--ink); }
@media (max-width: 940px){
  .nav-links, .nav-right .link-login, .lang { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-right { gap: 10px; }
}

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(255,255,255,.98);
  backdrop-filter: blur(8px); padding: 96px 24px 40px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-8px); opacity: 0; pointer-events: none; transition: .28s var(--ease);
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a { font-size: 22px; font-weight: 700; padding: 14px 4px; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 20px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: calc(var(--nav-h) + 66px); padding-bottom: 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-bg::before {
  content:""; position:absolute; width: 900px; height: 900px; right: -260px; top: -320px;
  background: radial-gradient(closest-side, rgba(0,180,252,.20), transparent 70%);
  filter: blur(10px);
}
.hero-bg::after {
  content:""; position:absolute; width: 820px; height: 820px; left: -240px; top: 120px;
  background: radial-gradient(closest-side, rgba(200,28,252,.16), transparent 70%);
}
.hero-blob {
  position:absolute; width: 560px; height: 560px; left: 42%; top: -120px;
  background: radial-gradient(closest-side, rgba(103,61,230,.20), transparent 70%);
}
.hero-grid { position:absolute; inset:0; z-index:-1;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px; -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%); opacity: .5;
}
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px 7px 8px;
  background:#fff; border: 1px solid var(--line-2); border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm); font-size: 14px; font-weight: 600; color: var(--muted);
}
.hero-badge b { color: var(--ink); }
.hero-badge .by { display:inline-flex; align-items:center; gap:6px; padding: 3px 9px; background: var(--tint); border-radius: var(--r-pill); color: var(--violet-700); font-weight: 800; }
.hero h1 { font-size: clamp(38px, 5.6vw, 66px); margin: 22px 0 0; letter-spacing: -.03em; }
.hero h1 .line { display: block; }
.hero-sub { margin-top: 22px; font-size: 20px; color: var(--muted); max-width: 30ch; }
.hero-cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 26px; display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--muted); }
.hero-trust i { color: var(--green); font-size: 18px; }

@media (max-width: 940px){
  .hero .container { grid-template-columns: 1fr; gap: 44px; }
  .hero-sub { max-width: 46ch; }
  .hero h1 { font-size: clamp(34px, 9vw, 52px); }
}

/* ---- Phone mockup (Guest Pass) ---- */
.phone-wrap { position: relative; justify-self: center; }
.phone {
  position: relative; width: 300px; height: 610px; border-radius: 44px;
  background: #0c0a1f; padding: 11px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
}
.phone::before { content:""; position:absolute; top: 18px; left:50%; transform: translateX(-50%); width: 108px; height: 26px; background:#0c0a1f; border-radius: 999px; z-index: 3; }
.phone-screen { width:100%; height:100%; border-radius: 34px; background: linear-gradient(180deg,#faf9ff, #f2eeff); overflow: hidden; position: relative; }
.gp-top { padding: 40px 18px 16px; background: var(--flow); color:#fff; }
.gp-top .gp-kicker { font-size: 12px; font-weight: 700; opacity: .9; display:flex; align-items:center; gap:6px; }
.gp-top h4 { color:#fff; font-size: 20px; margin-top: 6px; letter-spacing: -.02em; }
.gp-top .gp-meta { margin-top: 12px; display:flex; gap: 14px; font-size: 11.5px; font-weight:600; opacity:.95; }
.gp-top .gp-meta span { display:flex; align-items:center; gap:5px; }
.gp-prog { margin: 14px 18px 0; }
.gp-prog .bar { height: 8px; border-radius:999px; background: var(--line-2); overflow:hidden; }
.gp-prog .bar i { display:block; height:100%; width: 25%; background: var(--flow); border-radius:999px; transition: width .8s var(--ease); }
.gp-prog .lbl { display:flex; justify-content:space-between; font-size:11px; font-weight:700; color:var(--muted); margin-top:7px; }
.gp-list { padding: 14px 18px; display:flex; flex-direction:column; gap:9px; }
.gp-item { display:flex; align-items:center; gap:10px; background:#fff; border:1px solid var(--line); border-radius: 12px; padding: 10px 11px; font-size: 12.5px; font-weight: 600; box-shadow: var(--shadow-sm); transition: border-color .45s var(--ease), color .45s, box-shadow .45s, background .45s; }
.gp-item i { transition: color .45s; }
.gp-item.now { background: #fbfaff; }
.gp-item i { font-size: 17px; }
.gp-item.done { color: var(--muted); }
.gp-item.done i { color: var(--green); }
.gp-item.now { border-color: rgba(103,61,230,.4); box-shadow: 0 6px 16px -8px rgba(103,61,230,.4); }
.gp-item.now i { color: var(--violet); }
.gp-item.todo { color: var(--muted-2); }
.gp-item.todo i { color: var(--muted-2); }
.gp-btn { margin: 4px 18px 0; background: var(--violet); color:#fff; text-align:center; padding: 13px; border-radius: 12px; font-weight:800; font-size: 13.5px; box-shadow: var(--shadow-violet); }

/* floating chips around phone */
.chip {
  position: absolute; display:flex; align-items:center; gap:9px;
  background:#fff; border:1px solid var(--line); border-radius: 14px; padding: 11px 14px;
  box-shadow: var(--shadow); font-size: 13.5px; font-weight: 700; white-space:nowrap;
}
.chip i { font-size: 18px; }
.chip .ic { width:30px;height:30px;border-radius:9px;display:grid;place-items:center;color:#fff; }
.chip small { display:block; font-size:11px; font-weight:600; color: var(--muted-2); }
.chip-1 { top: 24px; left: -118px; }
.chip-2 { top: 300px; right: -60px; }
.chip-3 { bottom: 56px; left: -70px; }
@media (max-width: 480px){
  .phone { width: 264px; height: 540px; }
  .chip-1{ left:-14px } .chip-2{ right:-14px } .chip-3{ left:-10px }
  .chip small { display:none; }
}

/* ============================================================
   LOGOS / STACK REPLACE
   ============================================================ */
.replace { background: var(--bg-soft); border-block: 1px solid var(--line); }
.replace-head { text-align:center; margin-bottom: 40px; }
.replace-head .k { color: var(--muted); font-weight: 600; font-size: 15px; }
.replace-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.rep-card { background:#fff; border:1px solid var(--line); border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-sm); position:relative; overflow:hidden; }
.rep-card .old { font-size: 13px; font-weight: 700; color: var(--muted-2); text-decoration: line-through; text-decoration-color: rgba(200,28,252,.5); }
.rep-card h3 { font-size: 21px; margin-top: 6px; }
.rep-card p { margin-top: 10px; color: var(--muted); font-size: 15.5px; }
.rep-card .ic { width:46px;height:46px;border-radius:13px;display:grid;place-items:center;color:#fff;font-size:23px;margin-bottom:16px; }
.rep-merge { text-align:center; margin-top: 34px; font-size: 17px; color: var(--muted); }
.rep-merge b { color: var(--ink); }
@media (max-width: 820px){ .replace-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FLOW (hilo animado que conecta y activa cada tarjeta)
   ============================================================ */
.flow { background: var(--dark); color:#fff; overflow: hidden; }
.flow h2 { color:#fff; }
.flow .section-head p { color: rgba(255,255,255,.66); }

/* Rejilla de 3 por fila (3 - 3 - 1) */
.flow-map { max-width: 980px; margin: 12px auto 0; }
.frow { display:flex; gap: 22px; justify-content:center; }
.frow + .frow { margin-top: 22px; }
.fnode { position: relative; flex: 1 1 0; max-width: 300px; min-width: 0; }

.fcard {
  position: relative; height: 100%; min-height: 210px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.10); border-radius: 20px; padding: 24px;
  display:flex; flex-direction:column;
  transition: border-color .5s var(--ease), transform .5s var(--ease), background .5s, box-shadow .5s;
}
.fcard .fs-num {
  position:absolute; top:18px; right:18px; width:40px;height:40px;border-radius:13px;
  display:grid;place-items:center; font-size:18px;font-weight:800; color:#b9a7ff;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14); transition:.5s var(--ease);
}
.fcard .fs-ic {
  width:56px;height:56px;border-radius:16px;display:grid;place-items:center;font-size:27px;color:#c3b0ff;
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08); transition:.5s var(--ease);
}
.fcard h3 { color:#fff; font-size:19.5px; margin-top:18px; padding-right:46px; line-height:1.2; }
.fcard p { color: rgba(255,255,255,.6); margin-top:9px; font-size:14.5px; line-height:1.5; }
.fcard .tag { margin-top:auto; padding-top:16px; display:inline-flex; align-items:center; gap:7px; font-size:12px; font-weight:700; color:#c8b6ff; }
.fcard .tag i { font-size:14px; }

/* paso activo: se enciende el número y el borde */
.fnode.active .fcard {
  border-color: rgba(139,92,246,.85);
  background: linear-gradient(180deg, rgba(103,61,230,.20), rgba(255,255,255,.02));
  box-shadow: 0 22px 46px -18px rgba(103,61,230,.85);
  transform: translateY(-4px);
}
.fnode.active .fs-num { background: var(--flow); color:#fff; border-color:transparent; box-shadow: 0 8px 18px -6px rgba(103,61,230,.95); }
.fnode.active .fs-ic { background: var(--flow); color:#fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.35); }
/* pasos ya completados */
.fnode.done .fcard { border-color: rgba(255,255,255,.14); }
.fnode.done .fs-num { background: rgba(22,179,100,.92); color:#fff; border-color:transparent; }
.fnode.done .fs-ic { color:#cdbcff; }

/* Escritorio: la última tarjeta (sola en su fila) ocupa el ancho completo */
@media (min-width: 821px){
  .frow:last-child .fnode { flex: 1 1 100%; max-width: none; }
  .frow:last-child .fcard { align-items: center; text-align: center; min-height: 0; padding: 30px; }
  .frow:last-child .fcard .fs-num { top: 24px; right: 24px; }
  .frow:last-child .fcard h3 { padding-right: 0; }
  .frow:last-child .fcard p { max-width: 62ch; }
  .frow:last-child .fcard .tag { margin-top: 14px; }
}

@media (max-width: 820px){
  .frow { flex-wrap: wrap; }
  /* 2 por fila; una tarjeta sola no se estira a lo ancho */
  .fnode { flex: 1 1 44%; max-width: calc(50% - 11px); }
}
@media (max-width: 520px){
  .fnode { flex: 1 1 100%; max-width: 340px; margin-inline: auto; }
  .fcard { min-height: 0; }
}

/* ============================================================
   SHOWCASE (imagen de marca, blanco a dos columnas)
   ============================================================ */
.showcase { background: #fff; }
.showcase .container { display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:center; }
.showcase h2 { font-size: clamp(28px,4vw,44px); }
.showcase p { color: var(--muted); font-size: 18px; margin-top: 16px; max-width: 46ch; }
.showcase-list { margin-top: 22px; display:flex; flex-direction:column; gap:13px; }
.showcase-list li { display:flex; gap:11px; align-items:flex-start; font-size:16px; font-weight:600; color:var(--ink-2); }
.showcase-list i { color: var(--green); font-size:20px; flex-shrink:0; }
.showcase .btn { margin-top: 30px; }
.showcase-visual { position: relative; }
.showcase-visual::before { content:""; position:absolute; inset:6% 8%; border-radius:50%;
  background: radial-gradient(closest-side, rgba(103,61,230,.20), rgba(0,180,252,.10) 55%, transparent 74%); filter: blur(6px); z-index:0; }
.showcase-img { position:relative; z-index:1; width:100%; height:auto; max-width:520px; margin:0 auto; display:block;
  filter: drop-shadow(0 26px 44px rgba(74,26,214,.20)); }
@media (max-width: 900px){
  .showcase .container { grid-template-columns: 1fr; gap: 36px; }
  .showcase-visual { order: -1; }
  .showcase-img { max-width: 420px; }
}

/* ============================================================
   FEATURES (bento)
   ============================================================ */
.bento { display:grid; grid-template-columns: repeat(6,1fr); gap: 20px; grid-auto-rows: minmax(140px, auto); }
.feat { background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); position:relative; overflow:hidden; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.feat .ic { width:48px;height:48px;border-radius:13px;display:grid;place-items:center;color:#fff;font-size:24px;margin-bottom:18px; box-shadow: var(--shadow-sm); }
.feat h3 { font-size: 20px; }
.feat p { margin-top: 9px; color: var(--muted); font-size: 15.5px; }
.feat .li { margin-top:14px; display:flex; flex-direction:column; gap:8px; }
.feat .li span { display:flex; align-items:center; gap:9px; font-size:14.5px; font-weight:600; color: var(--ink-2); }
.feat .li i { color: var(--green); font-size:17px; }
.c6{grid-column:span 6} .c4{grid-column:span 4} .c3{grid-column:span 3} .c2{grid-column:span 2}
.feat-wide { display:grid; grid-template-columns: 1.1fr 1fr; gap: 26px; align-items:center; }
.feat.dark { background: linear-gradient(135deg,#14112e,#1c1746); color:#fff; border-color: rgba(255,255,255,.08); }
.feat.dark h3 { color:#fff; } .feat.dark p { color: rgba(255,255,255,.7); }
.feat.tinted { background: linear-gradient(160deg, var(--tint), #fff); }
@media (max-width: 900px){
  .bento { grid-template-columns: repeat(2,1fr); }
  .c6,.c4,.c3,.c2 { grid-column: span 2; }
  .feat-wide { grid-template-columns: 1fr; }
}
@media (max-width: 560px){ .bento { grid-template-columns: 1fr; } .c6,.c4,.c3,.c2 { grid-column: span 1; } }

/* mini dashboard preview inside a bento cell */
.dash { background:#fff; color: var(--ink); border-radius: 14px; border:1px solid var(--line); padding: 14px; box-shadow: var(--shadow-sm); }
.dash-row { display:grid; grid-template-columns: 1.4fr repeat(4, .8fr) .7fr; gap: 8px; align-items:center; font-size: 12px; padding: 9px 6px; border-bottom: 1px solid var(--line); }
.dash-row:last-child { border-bottom: 0; }
.dash-row.h { font-weight: 800; color: var(--muted-2); font-size: 10.5px; text-transform: uppercase; letter-spacing: .03em; }
.dash-row .g { color: var(--green); } .dash-row .w { color: var(--gold); }
.dash-row b { font-weight: 700; }
.pill-s { padding: 2px 8px; border-radius: 999px; font-size: 10.5px; font-weight: 800; }
.pill-open { background: rgba(22,179,100,.14); color: #0e8f4e; }
.pill-lock { background: rgba(85,86,111,.12); color: var(--muted); }

/* ============================================================
   GUEST EXPERIENCE spotlight
   ============================================================ */
.spot { background: var(--bg-soft); border-block: 1px solid var(--line); }
.spot .container { display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:center; }
.spot-visual { position: relative; }
.concierge { background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow); }
.concierge .head { display:flex; align-items:center; gap:11px; margin-bottom:16px; }
.concierge .head .ic { width:40px;height:40px;border-radius:11px;background:var(--flow);display:grid;place-items:center;color:#fff;font-size:20px; }
.concierge .head b { font-size: 15px; } .concierge .head small { display:block; color:var(--muted-2); font-size:12.5px; font-weight:600; }
.rec { display:flex; gap:12px; align-items:center; padding: 12px; border:1px solid var(--line); border-radius: 13px; margin-bottom: 10px; transition: transform .25s var(--ease), border-color .25s; }
.rec:hover { transform: translateX(4px); border-color: var(--violet); }
.rec .em { width:42px;height:42px;border-radius:11px; display:grid;place-items:center; font-size:20px; background: var(--tint); flex-shrink:0; }
.rec b { font-size: 14.5px; } .rec small { display:block; color:var(--muted); font-size:12.5px; }
.rec .t { margin-left:auto; font-size:12px; font-weight:800; color:var(--violet-700); background: var(--tint); padding:4px 10px; border-radius:999px; }
.spot-list { margin-top: 26px; display:flex; flex-direction:column; gap: 16px; }
.spot-list li { display:flex; gap: 14px; }
.spot-list .ic { width:42px;height:42px;flex-shrink:0;border-radius:12px;background:var(--tint);color:var(--violet-700);display:grid;place-items:center;font-size:21px; }
.spot-list b { font-size: 17px; } .spot-list p { color: var(--muted); font-size:15px; margin-top:2px; }
@media (max-width: 900px){ .spot .container { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   STATS band
   ============================================================ */
.stats { background: var(--dark); color:#fff; }
.stats .grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align:center; }
.stat { padding: 20px 12px; border-radius: var(--r); }
.stat .n { font-size: clamp(38px, 5vw, 56px); font-weight: 800; letter-spacing:-.03em; }
.stat .n .grad-text{ display:inline; }
.stat .l { margin-top: 8px; color: rgba(255,255,255,.66); font-size: 15px; font-weight: 600; }
.stats .divider { height:1px; background: rgba(255,255,255,.1); margin-bottom: 44px; }
.stats .lead { text-align:center; max-width: 720px; margin: 0 auto 44px; }
.stats .lead h2 { color:#fff; font-size: clamp(28px,4vw,42px); }
@media (max-width: 720px){ .stats .grid { grid-template-columns: repeat(2,1fr); gap: 26px 12px; } }

/* ============================================================
   LEGAL / TRUST
   ============================================================ */
.legal .container { display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center; }
.legal-cards { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lc { background:#fff; border:1px solid var(--line); border-radius: var(--r); padding: 22px; box-shadow: var(--shadow-sm); }
.lc .ic { width:44px;height:44px;border-radius:12px;display:grid;place-items:center;font-size:22px;color:#fff;margin-bottom:14px; }
.lc b { font-size: 16px; display:block; } .lc p { color: var(--muted); font-size: 14px; margin-top:6px; }
.legal-list { margin-top: 24px; display:flex; flex-direction:column; gap:13px; }
.legal-list li { display:flex; gap:11px; align-items:flex-start; font-size:16px; color:var(--ink-2); font-weight:600; }
.legal-list i { color: var(--green); font-size:20px; flex-shrink:0; }
@media (max-width: 900px){ .legal .container { grid-template-columns: 1fr; gap: 40px; } .legal-cards{ grid-template-columns:1fr 1fr } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width:100%; display:flex; align-items:center; justify-content:space-between; gap: 20px; padding: 24px 4px; text-align:left; font-size: 18.5px; font-weight: 700; color: var(--ink); }
.faq-q i { font-size: 24px; color: var(--violet); transition: transform .3s var(--ease); flex-shrink:0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 4px 24px; color: var(--muted); font-size: 16.5px; max-width: 68ch; }

/* ============================================================
   CTA
   ============================================================ */
.cta { position: relative; }
.cta-box {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: linear-gradient(120deg, #1a1046, #2a1470 45%, #4a1ae6 100%);
  padding: 72px 40px; text-align:center; color:#fff; box-shadow: var(--shadow-lg);
}
.cta-box::before { content:""; position:absolute; width: 620px; height:620px; right:-160px; top:-260px; background: radial-gradient(closest-side, rgba(0,180,252,.35), transparent 70%); }
.cta-box::after { content:""; position:absolute; width: 620px; height:620px; left:-160px; bottom:-320px; background: radial-gradient(closest-side, rgba(200,28,252,.32), transparent 70%); }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { color:#fff; font-size: clamp(30px, 4.6vw, 50px); max-width: 18ch; margin-inline:auto; }
.cta-box p { color: rgba(255,255,255,.8); font-size: 19px; margin: 20px auto 0; max-width: 52ch; }
.cta-box .hero-cta { justify-content:center; margin-top: 34px; }
.cta-box .fine { margin-top: 22px; font-size: 14px; color: rgba(255,255,255,.62); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark-2); color: rgba(255,255,255,.72); padding: 72px 0 34px; }
.footer .top { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand img { height: 44px; filter: brightness(0) invert(1); opacity:.96; }
.footer .about { margin-top: 18px; font-size: 15px; max-width: 34ch; color: rgba(255,255,255,.6); }
.footer .about .mail { color:#fff; font-weight:700; display:inline-flex; align-items:center; gap:7px; margin-top:14px; }
.footer h5 { color:#fff; font-size: 14px; text-transform: uppercase; letter-spacing:.05em; margin-bottom: 16px; }
.footer ul { display:flex; flex-direction:column; gap:11px; }
.footer ul a { font-size: 15px; color: rgba(255,255,255,.66); transition: color .2s; }
.footer ul a:hover { color:#fff; }
.footer .bottom { margin-top: 50px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; font-size: 14px; color: rgba(255,255,255,.5); }
.footer .bottom a { color: rgba(255,255,255,.6); }
@media (max-width: 820px){ .footer .top { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 480px){ .footer .top { grid-template-columns: 1fr; } }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1{transition-delay:.06s}.reveal.d2{transition-delay:.12s}.reveal.d3{transition-delay:.18s}.reveal.d4{transition-delay:.24s}.reveal.d5{transition-delay:.3s}

@media (prefers-reduced-motion: reduce){
  .reveal { opacity:1 !important; transform:none !important; transition:none !important; }
  .flow-track { transform: none !important; }
}

/* float animation for chips */
/* Chips flotantes: siempre activas, con leve balanceo orgánico */
@keyframes floaty1 { 0%,100%{ transform: translateY(0) rotate(-.6deg) } 50%{ transform: translateY(-11px) rotate(.6deg) } }
@keyframes floaty2 { 0%,100%{ transform: translateY(0) rotate(.5deg) } 50%{ transform: translateY(-14px) rotate(-.7deg) } }
@keyframes floaty3 { 0%,100%{ transform: translateY(0) rotate(-.5deg) } 50%{ transform: translateY(-9px) rotate(.6deg) } }
.chip-1{ animation: floaty1 5.5s ease-in-out infinite; }
.chip-2{ animation: floaty2 6.8s ease-in-out infinite .6s; }
.chip-3{ animation: floaty3 6.2s ease-in-out infinite 1.1s; }
