/* =============================================
   CrossUp — Landing
   Fluid landing styles. Reuses tokens from styles.css.
   ============================================= */

:root {
  --container: 1280px;
  --pad-x: clamp(24px, 5vw, 80px);
  --pad-y: clamp(72px, 10vw, 140px);
  --gap-section: clamp(80px, 10vw, 160px);
}

html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  background: var(--bg-1);
  min-height: 100vh;
}

/* =========== Reset slides.css conflicts =========== */
section {
  width: 100%;
  height: auto;
  min-height: auto;
  overflow: visible;
  display: block;
  font-size: 18px;
  line-height: 1.55;
  padding: var(--pad-y) var(--pad-x);
}

/* =========== Container =========== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

/* =========== NAV =========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(24px, 5vw, 80px);
  background: rgba(6,10,24,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav .brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 22px;
  letter-spacing: -0.01em;
  text-decoration: none; color: #fff;
}
.nav .brand img { width: 28px; height: 32px; object-fit: contain; }
.nav .brand b { color: var(--blue-bright); }
.nav .menu {
  display: flex; align-items: center; gap: clamp(16px, 2.5vw, 36px);
}
.nav .menu a {
  color: var(--ink-soft); text-decoration: none;
  font-size: 15px; font-weight: 600;
  transition: color .15s;
}
.nav .menu a:hover { color: #fff; }
.nav .actions { display: flex; align-items: center; gap: 14px; }
.nav .btn-nav {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px;
  background: var(--blue); color: #fff; text-decoration: none;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 8px 22px -6px rgba(37,99,235,0.55);
  transition: transform .15s, box-shadow .15s;
}
.nav .btn-nav:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -6px rgba(37,99,235,0.65); }
.nav .btn-nav.ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border-strong);
  box-shadow: none;
}
@media (max-width: 760px) {
  .nav .menu { display: none; }
}

/* =========== Generic landing typography =========== */
.l-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(59,130,246,0.35);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-glow);
}
section.light .l-eyebrow {
  color: var(--blue);
  background: rgba(37,99,235,0.06);
  border-color: rgba(37,99,235,0.20);
}
.l-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,0.20);
}

.l-display {
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 800; line-height: 1; letter-spacing: -0.03em;
  text-wrap: balance;
}
.l-display .blue, .l-display .pop { color: var(--blue-bright); }

.l-h2 {
  font-size: clamp(32px, 4.4vw, 60px);
  font-weight: 800; line-height: 1.04; letter-spacing: -0.02em;
  text-wrap: balance;
}
.l-h2 .blue { color: var(--blue-bright); }
section.light .l-h2 .blue { color: var(--blue); }

.l-lead {
  font-size: clamp(17px, 1.6vw, 22px);
  color: var(--ink-soft);
  max-width: 60ch; line-height: 1.55;
}
section.light .l-lead { color: #475467; }

.section-head {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: clamp(40px, 6vw, 72px);
  max-width: 900px;
}
.section-head.split {
  flex-direction: row; align-items: flex-end; justify-content: space-between;
  max-width: 100%;
  gap: 48px;
}
.section-head.split > div:first-child { max-width: 720px; }
@media (max-width: 880px) {
  .section-head.split { flex-direction: column; align-items: flex-start; }
}

/* =========== HERO =========== */
.hero {
  position: relative;
  padding-top: clamp(120px, 14vw, 200px);
  background:
    radial-gradient(ellipse 60% 70% at 78% 25%, rgba(37,99,235,0.32), transparent 60%),
    radial-gradient(ellipse 50% 60% at 15% 85%, rgba(29,78,216,0.22), transparent 65%),
    linear-gradient(180deg, #060A18 0%, #0A0F1E 100%);
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
}
.hero-lockup { display: flex; flex-direction: column; gap: clamp(24px, 3vw, 36px); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px; border-radius: 999px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(59,130,246,0.35);
  font-size: 15px; font-weight: 600; color: #DBE7FF; width: fit-content;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,0.18); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.l-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  background: var(--blue); color: #fff;
  font-size: 16px; font-weight: 700;
  text-decoration: none;
  border: none;
  box-shadow: 0 14px 30px -8px rgba(37,99,235,0.55);
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
}
.l-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -8px rgba(37,99,235,0.65); }
.l-btn.ghost {
  background: transparent; color: #fff;
  border: 1.5px solid var(--border-strong);
  box-shadow: none;
}
.l-btn.ghost:hover { background: rgba(255,255,255,0.04); }
section.light .l-btn.ghost { color: var(--ink-dark); border-color: rgba(10,15,30,0.18); }

/* Hero ticket cards - reuses base from slides */
.hero-visual { position: relative; height: clamp(440px, 50vw, 620px); }
.t-card {
  position: absolute;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  font-size: 14px;
}
.t-card .ti { font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.t-card .ti.with-cup { color: var(--blue-bright); display: inline-flex; align-items: center; gap: 8px; }
.t-card .row {
  display: grid; grid-template-columns: 42px 1fr auto; gap: 14px; align-items: center;
  padding: 10px 0; font-size: 15px;
}
.t-card .row + .row { border-top: 1px solid var(--border); }
.t-card .row .th {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center; font-size: 20px;
}
.t-card .row .n { color: var(--ink-soft); }
.t-card .row .n.blue { color: var(--blue-bright); font-weight: 700; }
.t-card .row .p { font-weight: 700; color: #fff; }
.t-card .row .p.blue { color: var(--blue-bright); }
.t-card .tot {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border-strong);
}
.t-card .tot .lbl { font-size: 15px; color: var(--ink-soft); font-weight: 600; }
.t-card .tot .val { font-size: 26px; font-weight: 800; color: var(--blue-bright); }
.t-card .tot .val.s { font-size: 22px; color: #fff; }
.t-card.sin { width: clamp(260px, 28vw, 320px); top: 30px; left: 0; transform: rotate(-3deg); }
.t-card.con { width: clamp(300px, 32vw, 380px); top: 160px; right: 0; transform: rotate(2deg); }
.t-card.con .cup-badge {
  position: absolute; top: -22px; right: -12px;
  width: 50px; height: 50px;
  background: var(--blue); border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37,99,235,0.7);
  border: 4px solid #0A0F1E;
}
.t-card.con .cup-badge img { width: 24px; height: 28px; }
@media (max-width: 980px) {
  .t-card.sin { left: 10%; }
  .t-card.con { right: 5%; }
}

/* =========== LOGO STRIP =========== */
.logo-strip {
  padding: 48px var(--pad-x);
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logo-strip .inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
  justify-content: center; justify-content: space-between;
}
.logo-strip .lbl {
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
}
.logo-strip .brands {
  display: flex; align-items: center; gap: clamp(20px, 3vw, 40px); flex-wrap: wrap;
}
.logo-strip .b {
  font-size: clamp(16px, 1.5vw, 20px); font-weight: 800; letter-spacing: -0.01em;
  color: rgba(255,255,255,0.5);
}

/* =========== PILLARS =========== */
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 880px) { .pillars-grid { grid-template-columns: 1fr; } }
.l-card {
  position: relative;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 14px;
}
.l-card.light {
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: 0 30px 60px -20px rgba(10,15,30,0.08);
  color: var(--ink-dark);
}
.l-card .num {
  font-size: 13px; font-weight: 800; color: var(--blue-glow);
  letter-spacing: 0.2em; opacity: 0.7;
}
.l-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(37,99,235,0.20), rgba(37,99,235,0.06));
  border: 1px solid rgba(59,130,246,0.30);
  color: var(--blue-glow);
}
.l-icon.solid { background: var(--blue); color: #fff; border: none; box-shadow: 0 12px 30px -8px rgba(37,99,235,0.55); }
.l-icon svg { width: 28px; height: 28px; }
.l-card h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 800; letter-spacing: -0.01em; line-height: 1.2; }
.l-card p { font-size: 16px; color: var(--ink-soft); line-height: 1.55; }
section.light .l-card p { color: #475467; }

/* =========== STRATEGY (Cross / Up) =========== */
.strategy {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.strategy.reverse > .text { order: 2; }
.strategy.reverse > .mockup-wrap { order: 1; }
@media (max-width: 980px) {
  .strategy, .strategy.reverse { grid-template-columns: 1fr; }
  .strategy.reverse > .text, .strategy.reverse > .mockup-wrap { order: initial; }
}
.strategy .text { display: flex; flex-direction: column; gap: 24px; }
.strategy .text .l-h2 { font-size: clamp(28px, 3.6vw, 48px); }

.l-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 8px; }
.l-stats .t {
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(37,99,235,0.10), rgba(37,99,235,0.03));
  border: 1px solid rgba(59,130,246,0.25);
}
.l-stats .v { font-size: clamp(22px, 2.2vw, 30px); font-weight: 800; color: var(--blue-bright); letter-spacing: -0.02em; line-height: 1; }
.l-stats .l { font-size: 13px; color: var(--ink-soft); margin-top: 6px; line-height: 1.35; font-weight: 600; }

/* Mockup */
.l-mockup {
  position: relative;
  background: linear-gradient(180deg, #0E1530, #0A0F1E);
  border-radius: 24px;
  border: 1px solid var(--border-strong);
  padding: 24px;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,0.6);
}
.l-browser { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.l-browser .d { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.l-browser .url {
  flex: 1; margin-left: 12px;
  background: rgba(255,255,255,0.04); border-radius: 6px;
  font-size: 12px; color: var(--ink-mute); padding: 6px 10px;
}
.l-product { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.l-product .img {
  background: linear-gradient(135deg, #1a2247, #0E1530);
  border-radius: 16px;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.2); font-size: 64px;
  min-height: 200px;
  position: relative; overflow: hidden;
}
.l-product .img::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(59,130,246,0.20), transparent 60%);
}
.l-product .info { display: flex; flex-direction: column; gap: 10px; }
.l-product .info .cat { font-size: 11px; color: var(--blue-glow); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.l-product .info h5 { font-size: 22px; font-weight: 700; line-height: 1.15; }
.l-product .info .pr { font-size: 24px; color: var(--blue-bright); font-weight: 800; margin-top: 2px; }
.l-product .info .btn-mk {
  margin-top: 8px;
  padding: 10px 16px; border-radius: 10px;
  background: var(--blue); color: #fff;
  font-size: 13px; font-weight: 700;
  border: none; cursor: pointer; width: fit-content;
}

.l-suggest {
  margin-top: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(37,99,235,0.20), rgba(37,99,235,0.04));
  border: 1px solid rgba(59,130,246,0.35);
  padding: 18px;
}
.l-suggest .h { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.l-suggest .h img { width: 18px; height: 20px; }
.l-suggest .h .t { font-size: 13px; font-weight: 700; color: var(--blue-glow); letter-spacing: 0.05em; }
.l-suggest .h .badge { font-size: 10px; padding: 3px 8px; border-radius: 999px; background: rgba(34,197,94,0.18); color: #4ade80; font-weight: 700; margin-left: auto; }
.l-suggest .row {
  display: grid; grid-template-columns: 40px 1fr auto 28px; gap: 12px;
  align-items: center; padding: 8px 0; font-size: 13px;
}
.l-suggest .row + .row { border-top: 1px solid var(--border); }
.l-suggest .row .th { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.06); display: grid; place-items: center; font-size: 18px; }
.l-suggest .row .n { font-weight: 600; }
.l-suggest .row .p { color: var(--blue-bright); font-weight: 700; }
.l-suggest .row .add { width: 24px; height: 24px; border-radius: 50%; background: var(--blue); display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 14px; }

/* =========== TIMELINE =========== */
.timeline-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px;
  padding-top: 40px;
}
.timeline-grid::before {
  content: ''; position: absolute; top: 80px; left: 6%; right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(59,130,246,0.5) 0 10px, transparent 10px 18px);
}
@media (max-width: 980px) {
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid::before { display: none; }
}
@media (max-width: 540px) { .timeline-grid { grid-template-columns: 1fr; } }

.tl-step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.tl-step .node {
  position: relative;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(180deg, #1a2247, #0E1530);
  border: 1.5px solid rgba(59,130,246,0.50);
  display: grid; place-items: center;
  font-size: 22px; font-weight: 800; color: var(--blue-bright);
  box-shadow: 0 12px 30px -8px rgba(37,99,235,0.40);
  z-index: 2;
}
.tl-step.new .node { background: var(--blue); color: #fff; border-color: var(--blue-glow); box-shadow: 0 0 0 8px rgba(37,99,235,0.15), 0 12px 30px -8px rgba(37,99,235,0.70); }
.tl-step .new-tag {
  position: absolute; top: -28px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em;
  padding: 3px 10px; border-radius: 999px;
  background: linear-gradient(180deg, #4ade80, #16a34a); color: #052e16;
}
.tl-step .ico {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(37,99,235,0.10); border: 1px solid var(--border-blue);
  display: grid; place-items: center; color: var(--blue-glow);
}
.tl-step .ico svg { width: 22px; height: 22px; }
.tl-step h5 { font-size: 17px; font-weight: 800; }
.tl-step p { font-size: 14px; color: var(--ink-soft); max-width: 22ch; line-height: 1.45; }

/* =========== SALESPILOT =========== */
.pilot {
  background:
    radial-gradient(ellipse 60% 70% at 80% 20%, rgba(59,130,246,0.20), transparent 60%),
    radial-gradient(ellipse 70% 80% at 20% 90%, rgba(29,78,216,0.16), transparent 60%),
    linear-gradient(180deg, #060A18, #0A0F1E);
}
.pilot-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
@media (max-width: 980px) { .pilot-grid { grid-template-columns: 1fr; } }
.pilot-grid .text { display: flex; flex-direction: column; gap: 22px; }
.pilot-grid .text .sub { font-size: 16px; color: var(--blue-glow); font-weight: 700; letter-spacing: 0.02em; }
.l-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.l-features .f {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600;
  padding: 12px 14px; border-radius: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
}
.l-features .f .ck { width: 22px; height: 22px; border-radius: 50%; background: rgba(37,99,235,0.20); color: var(--blue-glow); display: grid; place-items: center; flex-shrink: 0; }
.l-features .f .ck svg { width: 14px; height: 14px; }

.l-dash {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 60px 120px -30px rgba(0,0,0,0.6), 0 0 0 1px rgba(59,130,246,0.10);
}
.l-dash .h { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.l-dash .h img { width: 24px; height: 28px; }
.l-dash .h .ti { font-size: 16px; font-weight: 800; }
.l-dash .h .live { margin-left: auto; display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: #4ade80; letter-spacing: 0.1em; }
.l-dash .h .live .pulse { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,0.18); }
.l-dash .metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 18px; }
.l-dash .metrics .m { padding: 14px; border-radius: 12px; background: rgba(37,99,235,0.08); border: 1px solid rgba(59,130,246,0.20); }
.l-dash .metrics .m .lab { font-size: 10px; color: var(--ink-mute); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.l-dash .metrics .m .vv { font-size: 22px; font-weight: 800; color: var(--blue-bright); letter-spacing: -0.02em; }
.l-dash .metrics .m .delta { font-size: 11px; color: #4ade80; font-weight: 700; margin-top: 2px; }
.l-dash .chart { height: 130px; border-radius: 12px; background: rgba(0,0,0,0.25); border: 1px solid var(--border); padding: 12px; }
.l-dash .chart svg { width: 100%; height: 100%; }

/* =========== COMBOS (light) =========== */
.combos {
  background: linear-gradient(180deg, #FFFFFF, #F0F4FC);
  color: var(--ink-dark);
}
.combos .l-h2 { color: var(--ink-dark); }
.combo-grid-l { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 22px; }
@media (max-width: 980px) { .combo-grid-l { grid-template-columns: 1fr; } }
.combo-card-l {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: 24px; padding: 32px;
  box-shadow: 0 30px 60px -20px rgba(10,15,30,0.08);
  display: flex; flex-direction: column; gap: 16px;
  color: var(--ink-dark);
}
.combo-card-l.dark {
  background: linear-gradient(180deg, #0A0F1E, #0E1530);
  color: #fff; border: 1px solid var(--border-strong);
}
.combo-card-l .top { display: flex; align-items: center; gap: 12px; }
.combo-card-l .top h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.combo-card-l p { font-size: 15px; color: #475467; line-height: 1.55; flex: 1; }
.combo-card-l.dark p { color: var(--ink-soft); }

.combo-visual-l {
  position: relative; padding: 20px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(37,99,235,0.02));
  border: 1px dashed rgba(37,99,235,0.30);
}
.combo-visual-l .r {
  display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 12px;
  font-size: 13px; padding: 6px 0;
}
.combo-visual-l .r + .r { border-top: 1px solid rgba(10,15,30,0.08); }
.combo-visual-l .r .th { width: 32px; height: 32px; border-radius: 7px; background: #EEF2FA; display: grid; place-items: center; font-size: 16px; }
.combo-visual-l .r .pr { color: var(--blue); font-weight: 800; }
.combo-visual-l .tot { margin-top: 10px; padding-top: 12px; border-top: 2px solid var(--blue); display: flex; justify-content: space-between; align-items: center; font-weight: 800; font-size: 13px; }
.combo-visual-l .tot .v { font-size: 20px; color: var(--blue); }
.combo-visual-l .tot .stk { text-decoration: line-through; color: #94A0B8; font-weight: 600; font-size: 14px; margin-right: 6px; }

.disc-vis-l { margin-top: auto; }
.disc-vis-l .lab { font-size: 11px; color: var(--ink-mute); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.disc-vis-l .bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 12px; }
.disc-vis-l .bar .b { padding: 10px 8px; border-radius: 10px; text-align: center; font-weight: 800;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border); color: #fff; }
.disc-vis-l .bar .b .pct { font-size: 15px; color: var(--blue-glow); display: block; }
.disc-vis-l .bar .b .qty { display: block; font-size: 10px; opacity: 0.7; font-weight: 600; margin-top: 2px; }
.disc-vis-l .bar .b.on { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 0 0 4px rgba(37,99,235,0.20); }
.disc-vis-l .bar .b.on .pct { color: #fff; }

.ai-vis-l {
  display: grid; grid-template-columns: 1fr 24px 1fr; gap: 0; align-items: center;
}
.ai-vis-l .fr {
  aspect-ratio: 1/1; border-radius: 14px;
  display: grid; place-items: center;
}
.ai-vis-l .fr.before { background: linear-gradient(135deg, #1a2247, #0E1530); color: rgba(255,255,255,0.3); font-size: 26px; }
.ai-vis-l .fr.after {
  background: linear-gradient(135deg, var(--blue), #1D4ED8);
  color: #fff; font-size: 18px; font-weight: 800;
  box-shadow: 0 20px 40px -10px rgba(37,99,235,0.50);
  text-align: center;
}
.ai-vis-l .fr.after .px { font-size: 12px; opacity: 0.9; font-weight: 600; margin-top: 4px; }
.ai-vis-l .arrow { font-size: 20px; color: var(--blue-glow); text-align: center; }

/* =========== WHY =========== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

/* =========== CLIENTS (light) =========== */
.clients {
  background: #F6F8FD;
  color: var(--ink-dark);
}
.clients .l-h2 { color: var(--ink-dark); }
.clients .stats {
  display: flex; flex-direction: column; gap: 6px; align-items: flex-end;
}
.clients .stats .big { font-size: clamp(48px, 6vw, 72px); font-weight: 800; color: var(--blue); letter-spacing: -0.02em; line-height: 1; }
.clients .stats .lab { font-size: 14px; color: #475467; font-weight: 600; max-width: 220px; text-align: right; }
.clients .stats .stars { color: #f59e0b; font-size: 18px; letter-spacing: 0.1em; }
@media (max-width: 880px) { .clients .stats { align-items: flex-start; } .clients .stats .lab { text-align: left; } }

.testi-grid-l { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 1100px) { .testi-grid-l { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .testi-grid-l { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .testi-grid-l { grid-template-columns: 1fr; } }
.testi-l {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: 16px; padding: 22px;
  box-shadow: 0 20px 40px -20px rgba(10,15,30,0.08);
  display: flex; flex-direction: column; gap: 12px;
  color: var(--ink-dark);
}
.testi-l .brand {
  font-weight: 800; font-size: 16px; color: var(--ink-dark);
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--border-light); padding-bottom: 10px;
}
.testi-l .quote { font-size: 14px; line-height: 1.5; color: #344054; flex: 1; }
.testi-l .stars { color: #f59e0b; font-size: 14px; letter-spacing: 0.05em; }

/* =========== PLANS =========== */
.plans-grid-l { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 880px) { .plans-grid-l { grid-template-columns: 1fr; } }
.plan-l {
  padding: 32px;
  display: flex; flex-direction: column; gap: 6px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  position: relative;
}
.plan-l.featured {
  background: linear-gradient(180deg, rgba(37,99,235,0.18), rgba(37,99,235,0.04));
  border: 1.5px solid var(--blue);
  box-shadow: 0 30px 80px -20px rgba(37,99,235,0.30);
}
.plan-l .ribbon {
  position: absolute; top: -14px; left: 32px;
  padding: 6px 14px; border-radius: 999px;
  background: linear-gradient(120deg, #3B82F6, #1D4ED8); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  box-shadow: 0 10px 25px -8px rgba(37,99,235,0.6);
}
.plan-l .nm { font-size: 24px; font-weight: 800; margin-bottom: 2px; }
.plan-l .desc { font-size: 14px; color: var(--ink-mute); margin-bottom: 16px; min-height: 36px; }
.plan-l .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.plan-l .price .amt { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; }
.plan-l .price .per { font-size: 14px; color: var(--ink-mute); font-weight: 600; }
.plan-l.featured .price .amt { color: var(--blue-bright); }
.plan-l .pct {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; padding: 5px 11px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  margin-bottom: 18px; width: fit-content;
}
.plan-l .pct b { color: var(--blue-glow); }
.plan-l ul { list-style: none; display: flex; flex-direction: column; gap: 9px; padding: 0; }
.plan-l ul li { font-size: 14px; display: flex; gap: 10px; align-items: flex-start; line-height: 1.45; color: var(--ink-soft); }
.plan-l ul li .ck { color: var(--blue-glow); font-weight: 800; flex-shrink: 0; }
.plan-l ul li b { color: #fff; font-weight: 600; }
.plan-l .cta-row { margin-top: 22px; }

/* =========== BENEFITS / Tiendanube =========== */
.benefits {
  background:
    radial-gradient(ellipse 60% 70% at 80% 20%, rgba(37,99,235,0.18), transparent 60%),
    radial-gradient(ellipse 60% 70% at 10% 90%, rgba(29,78,216,0.16), transparent 60%),
    linear-gradient(180deg, #060A18, #0A0F1E);
}
.tn-badge-l {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  padding: 14px 20px; border-radius: 14px;
  display: flex; flex-direction: column; gap: 4px; min-width: 240px;
}
.tn-badge-l .l { font-size: 11px; font-weight: 700; color: var(--ink-mute); letter-spacing: 0.18em; text-transform: uppercase; }
.tn-badge-l .v { font-size: 18px; font-weight: 800; color: #fff; }
.benefits-grid-l { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .benefits-grid-l { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .benefits-grid-l { grid-template-columns: 1fr; } }
.benefit-l {
  padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
}
.benefit-l.featured {
  background: linear-gradient(180deg, rgba(37,99,235,0.20), rgba(37,99,235,0.04));
  border: 1.5px solid var(--blue);
}
.benefit-l .big-pct { font-size: clamp(36px, 4vw, 52px); font-weight: 800; color: var(--blue-bright); letter-spacing: -0.04em; line-height: 1; }
.benefit-l h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.benefit-l p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

.referral-row {
  margin-top: 36px;
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(37,99,235,0.10);
  border: 1px solid var(--border-blue);
  flex-wrap: wrap;
}
.referral-row .l-icon { width: 40px; height: 40px; border-radius: 10px; }
.referral-row .l-icon svg { width: 20px; height: 20px; }
.referral-row .ti { flex: 1; min-width: 240px; }
.referral-row .lbl { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-glow); margin-bottom: 4px; }
.referral-row .v { font-size: 15px; font-weight: 700; word-break: break-all; }
.referral-row .v b { color: var(--blue-bright); }

/* =========== TEAM (light) =========== */
.team {
  background: linear-gradient(180deg, #FFFFFF, #F4F7FC);
  color: var(--ink-dark);
}
.team .l-h2 { color: var(--ink-dark); }
.team .l-lead { color: #475467; }
.team-grid-l { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .team-grid-l { grid-template-columns: 1fr; } }
.member-l {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: 24px; padding: 32px;
  box-shadow: 0 30px 60px -20px rgba(10,15,30,0.08);
  display: flex; flex-direction: column; gap: 16px;
  color: var(--ink-dark); position: relative; overflow: hidden;
}
.member-l::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--blue); }
.member-l .avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff; font-size: 28px; font-weight: 800;
  display: grid; place-items: center;
  box-shadow: 0 12px 24px -6px rgba(37,99,235,0.40);
}
.member-l .role { font-size: 11px; font-weight: 800; color: var(--blue); letter-spacing: 0.16em; text-transform: uppercase; }
.member-l h3 { font-size: 26px; color: var(--ink-dark); margin-top: 2px; }
.member-l p { font-size: 14px; color: #475467; line-height: 1.5; }
.member-l .contact {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; color: var(--ink-dark);
  padding: 12px 14px; border-radius: 12px;
  background: #F0F4FC; border: 1px solid #E6EAF2;
  margin-top: auto;
}
.member-l .contact .ic { width: 24px; height: 24px; border-radius: 50%; background: #25D366; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.member-l .contact .ic.mail { background: var(--blue); }
.member-l .contact .ic svg { width: 14px; height: 14px; }
.member-l .contact .num { color: #475467; font-weight: 600; font-size: 12px; margin-left: auto; }

/* =========== QUOTE =========== */
.quote-sect {
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(37,99,235,0.20), transparent 60%),
    linear-gradient(180deg, #0A0F1E, #060A18);
  text-align: center;
}
.quote-sect .container { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.quote-sect .mark {
  font-size: 120px; line-height: 0.5; color: var(--blue-bright);
  font-family: Georgia, serif; height: 50px;
}
.quote-sect blockquote {
  font-size: clamp(24px, 3.6vw, 44px);
  font-weight: 700; line-height: 1.25;
  letter-spacing: -0.02em; text-wrap: balance;
  max-width: 24ch;
}
.quote-sect blockquote .blue { color: var(--blue-bright); }
.quote-sect .author { display: flex; align-items: center; gap: 16px; margin-top: 12px; }
.quote-sect .author .av {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  display: grid; place-items: center; color: #fff;
  font-size: 22px; font-weight: 800;
}
.quote-sect .author .info { text-align: left; }
.quote-sect .author .nm { font-size: 18px; font-weight: 800; }
.quote-sect .author .ro { font-size: 12px; color: var(--ink-mute); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* =========== CTA =========== */
.cta {
  background:
    radial-gradient(ellipse 60% 70% at 25% 30%, rgba(37,99,235,0.30), transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(29,78,216,0.25), transparent 60%),
    linear-gradient(180deg, #060A18, #0A0F1E);
}
.cta .container { display: flex; flex-direction: column; gap: 32px; }
.cta .top { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.cta-grid-l { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 18px; }
@media (max-width: 980px) { .cta-grid-l { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .cta-grid-l { grid-template-columns: 1fr; } }
.cta-card-l {
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: #fff;
  transition: transform .15s;
}
.cta-card-l:hover { transform: translateY(-2px); }
.cta-card-l.primary {
  background: linear-gradient(120deg, var(--blue), var(--blue-deep));
  border-color: var(--blue);
  box-shadow: 0 30px 60px -20px rgba(37,99,235,0.50);
  grid-column: 1 / -1;
}
@media (min-width: 981px) { .cta-card-l.primary { grid-column: span 1; } }
.cta-card-l .l-icon { width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0; }
.cta-card-l .l-icon svg { width: 22px; height: 22px; }
.cta-card-l.primary .l-icon { background: rgba(255,255,255,0.18); color: #fff; border: none; }
.cta-card-l .info { display: flex; flex-direction: column; gap: 2px; }
.cta-card-l .lbl { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }
.cta-card-l.primary .lbl { color: rgba(255,255,255,0.7); }
.cta-card-l .val { font-size: 15px; font-weight: 700; word-break: break-word; }

/* =========== FOOTER =========== */
.foot {
  padding: 56px var(--pad-x) 32px;
  background: #060A18;
  border-top: 1px solid var(--border);
}
.foot .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 880px) { .foot .container { grid-template-columns: 1fr 1fr; } }
.foot .brand-blk { display: flex; flex-direction: column; gap: 16px; }
.foot .brand-blk .br { display: flex; align-items: center; gap: 12px; font-size: 22px; font-weight: 800; }
.foot .brand-blk .br img { width: 28px; height: 32px; }
.foot .brand-blk .br b { color: var(--blue-bright); }
.foot .brand-blk p { font-size: 13px; color: var(--ink-soft); max-width: 32ch; line-height: 1.55; }
.foot h4 { font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 14px; }
.foot ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; }
.foot ul li a { color: var(--ink-soft); text-decoration: none; font-size: 14px; }
.foot ul li a:hover { color: #fff; }
.foot .bottom {
  max-width: var(--container); margin: 32px auto 0;
  padding-top: 22px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--ink-mute); flex-wrap: wrap; gap: 12px;
}
