/* =========================================================
   TechNova Solution — Light Enterprise design system
   Research-aligned: B2B trust (navy/teal) + clean surfaces
   Dark is reserved for hero photography overlays only
   ========================================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Brand */
  --primary: #0B6BCB;
  --primary-dark: #084B8A;
  --primary-light: #2B8FE8;
  --accent: #0D9488;
  --accent-soft: #14B8A6;
  --accent-warm: #D97706;
  --violet: #6D28D9;
  --green: #059669;
  --whatsapp: #25D366;

  /* Surfaces (light enterprise) */
  --bg: #FFFFFF;
  --bg-soft: #F6F8FB;
  --bg-warm: #F1F5F9;
  --surface: #FFFFFF;
  --surface-elevated: #FFFFFF;

  /* Ink */
  --ink: #0F172A;
  --ink-2: #334155;
  --ink-3: #64748B;
  --ink-4: #94A3B8;

  /* Legacy aliases used across pages */
  --dark: #FFFFFF;
  --dark-900: #F6F8FB;
  --dark-800: #F1F5F9;
  --dark-700: #E2E8F0;
  --dark-card: #FFFFFF;
  --text: #0F172A;
  --text-muted: #475569;
  --text-dim: #64748B;

  --border: #E2E8F0;
  --border-strong: rgba(11, 107, 203, 0.28);

  --grad: linear-gradient(135deg, #0B6BCB 0%, #0D9488 100%);
  --grad-soft: linear-gradient(135deg, rgba(11,107,203,.08), rgba(13,148,136,.06));
  --grad-violet: linear-gradient(135deg, #6366F1 0%, #0B6BCB 100%);

  --shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 28px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 56px rgba(15, 23, 42, 0.12);
  --shadow-cta: 0 10px 28px rgba(11, 107, 203, 0.28);

  --r: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --max: 1180px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --display: 'Space Grotesk', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.75rem; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0.85rem 0;
  transition: background .3s, border-color .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
  background: transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}
/* Over photo hero: light text until scroll */
.nav:not(.scrolled) {
  background: transparent;
  border-bottom-color: transparent;
}
.nav:not(.scrolled) .logo-text,
.nav:not(.scrolled) .logo-sub,
.nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,.92); }
.nav:not(.scrolled) .logo-text span { color: #7DD3FC; }
.nav:not(.scrolled) .nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav:not(.scrolled) .nav-toggle { color: #fff; border-color: rgba(255,255,255,.35); }

.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 1.75rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.logo {
  display: flex; align-items: center; gap: 0.7rem; text-decoration: none; flex-shrink: 0;
}
.logo-icon {
  position: relative; width: 40px; height: 40px;
  background: var(--grad); border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon::before {
  content: ''; position: absolute; inset: 1.5px;
  background: #0B1220; border-radius: 9.5px;
}
.nav.scrolled .logo-icon::before { background: #fff; }
.logo-icon svg { position: relative; z-index: 1; }
.logo-text {
  font-family: var(--display); font-size: 1.25rem; font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em;
}
.logo-text span { color: var(--primary); }
.logo-sub {
  display: block; font-size: 0.62rem; font-weight: 500; color: var(--ink-3);
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 1px;
}
.nav-links {
  display: flex; align-items: center; gap: 0.15rem; list-style: none;
}
.nav-links a {
  color: var(--ink-2); text-decoration: none; font-size: 0.84rem; font-weight: 500;
  padding: 0.5rem 0.75rem; border-radius: 8px; transition: .2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: var(--bg-soft); }
.nav-cta {
  display: inline-flex !important; align-items: center; gap: 0.35rem;
  background: var(--grad) !important; color: #fff !important;
  padding: 0.55rem 1.05rem !important; border-radius: 10px !important;
  font-weight: 600 !important; box-shadow: var(--shadow-cta);
}
.nav-cta:hover { filter: brightness(1.05); transform: translateY(-1px); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--ink); width: 42px; height: 42px; border-radius: 10px;
  cursor: pointer; align-items: center; justify-content: center;
}
@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 68px 1rem auto; flex-direction: column; align-items: stretch;
    background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
    padding: 0.85rem; gap: 0.15rem; display: none;
    box-shadow: var(--shadow-lg); max-height: calc(100vh - 90px); overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--ink-2) !important; }
  .nav-links a:hover { background: var(--bg-soft); color: var(--ink) !important; }
  .logo-sub { display: none; }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.45rem; border-radius: 11px; font-weight: 600; font-size: 0.92rem;
  text-decoration: none; transition: all .25s cubic-bezier(.2,.7,.2,1);
  cursor: pointer; border: 0; font-family: inherit; white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-primary {
  background: var(--grad); color: #fff; box-shadow: var(--shadow-cta);
}
.btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 14px 36px rgba(11,107,203,.35); filter: brightness(1.04);
}
.btn-ghost, .btn-secondary {
  background: #fff; color: var(--ink);
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.btn-ghost:hover, .btn-secondary:hover {
  border-color: #CBD5E1; background: var(--bg-soft); color: var(--ink); transform: translateY(-1px);
}
/* Dark overlays (page-hero): light ghost buttons */
.page-hero .btn-ghost, .page-hero .btn-secondary {
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.28); box-shadow: none; backdrop-filter: blur(10px);
}
.page-hero .btn-ghost:hover, .page-hero .btn-secondary:hover {
  background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.45); color: #fff;
}
.btn-outline {
  background: #fff; color: var(--primary);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover { background: rgba(11,107,203,.05); }
.btn-sm { padding: 0.65rem 1.1rem; font-size: 0.84rem; border-radius: 9px; }

/* ─── HERO PHOTO (resumen + invitación a seguir) ─── */
.hero-photo {
  position: relative;
  min-height: 92vh; min-height: 92dvh;
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.hero-photo-media { position: absolute; inset: 0; }
.hero-photo-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  transform: scale(1.03); animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}
.hero-photo-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,14,28,.45) 0%, rgba(8,14,28,.25) 35%, rgba(8,14,28,.55) 65%, rgba(8,14,28,.92) 100%),
    linear-gradient(100deg, rgba(8,14,28,.75) 0%, rgba(8,14,28,.35) 55%, rgba(8,14,28,.15) 100%);
}
.hero-photo-inner {
  position: relative; width: 100%; max-width: var(--max); margin: 0 auto;
  padding: 7.5rem 1.75rem 3.25rem;
}
.hero-photo h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  line-height: 1.1; letter-spacing: -0.03em; max-width: 760px; font-weight: 700;
  margin-top: 0.25rem;
}
.hero-photo .grad-light {
  background: linear-gradient(135deg, #7dd3fc, #38bdf8, #5eead4);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-photo-lead {
  margin-top: 1.15rem; font-size: 1.08rem; color: #d0dceb;
  max-width: 560px; line-height: 1.7;
}
.eyebrow-on-photo {
  color: #c8e8fa !important;
  background: rgba(14,165,233,.12) !important;
  border-color: rgba(125,211,252,.3) !important;
}
.hero-continue {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 2.25rem; color: rgba(255,255,255,.85);
  font-size: 0.9rem; font-weight: 600; text-decoration: none;
  animation: continuePulse 2.2s ease-in-out infinite;
}
.hero-continue:hover { color: #fff; }
.hero-continue svg { opacity: 0.9; }
@keyframes continuePulse {
  0%,100% { transform: translateY(0); opacity: 0.85; }
  50% { transform: translateY(5px); opacity: 1; }
}

/* ─── ECOSISTEMA panel (light, bajo el hero foto) ─── */
.hero {
  position: relative;
  min-height: auto;
  display: flex; align-items: center;
  color: var(--ink);
  overflow: hidden;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 55%, #F6F8FB 100%);
  border-bottom: 1px solid var(--border);
}
.hero-inner-compact { padding-top: 4.5rem !important; padding-bottom: 4rem !important; }
.hero-section-title {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.15; letter-spacing: -0.03em; font-weight: 700; color: var(--ink);
  max-width: 520px;
}
.hero-section-title .grad {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55;
}
.hero-orb-a {
  width: 420px; height: 420px; top: -80px; right: 5%;
  background: radial-gradient(circle, rgba(11,107,203,.18), transparent 70%);
}
.hero-orb-b {
  width: 360px; height: 360px; bottom: -60px; left: -40px;
  background: radial-gradient(circle, rgba(13,148,136,.14), transparent 70%);
}
.hero-gridlines {
  position: absolute; inset: 0; opacity: 0.45;
  background-image:
    linear-gradient(rgba(148,163,184,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
}
.hero-inner {
  position: relative; width: 100%; max-width: var(--max); margin: 0 auto;
  padding: 8.25rem 1.75rem 4.5rem;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-float-a, .hero-float-b { display: none; }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.75rem; font-weight: 650; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary); background: rgba(11,107,203,.07);
  border: 1px solid rgba(11,107,203,.18); border-radius: 999px;
  padding: 0.45rem 0.95rem 0.45rem 0.7rem; margin-bottom: 1.35rem;
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(13,148,136,.15); animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(13,148,136,.15); }
  50% { box-shadow: 0 0 0 7px rgba(13,148,136,.06); }
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.05rem, 4.4vw, 3.15rem);
  line-height: 1.1; letter-spacing: -0.03em; max-width: 640px; font-weight: 700;
  color: var(--ink);
}
.hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead {
  margin-top: 1.2rem; font-size: 1.08rem; color: var(--ink-3);
  max-width: 520px; line-height: 1.7;
}
.hero-acts { margin-top: 1.85rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-trust {
  margin-top: 2.1rem; display: flex; flex-wrap: wrap; gap: 1.35rem 1.85rem;
  padding-top: 1.4rem; border-top: 1px solid var(--border); max-width: 540px;
}
.hero-trust div strong {
  display: block; font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--ink);
}
.hero-trust div span { font-size: 0.78rem; color: var(--ink-3); }

/* Product stack panel (reemplaza foto) */
.hero-stack { position: relative; }
.hero-panel {
  background: #fff; border: 1px solid var(--border);
  border-radius: 22px; box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.2rem; border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #F8FAFC, #fff);
}
.hero-panel-title {
  font-family: var(--display); font-size: 0.92rem; font-weight: 700; color: var(--ink);
}
.hero-stack-list { list-style: none; margin: 0; padding: 0.4rem 0; }
.hero-stack-list li {
  display: grid; grid-template-columns: 42px 1fr auto; gap: 0.85rem; align-items: center;
  padding: 0.85rem 1.2rem; border-bottom: 1px solid #F1F5F9;
  transition: background .2s;
}
.hero-stack-list li:last-child { border-bottom: 0; }
.hero-stack-list li:hover { background: #F8FAFC; }
.hs-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; letter-spacing: -0.02em;
  font-family: var(--display);
}
.hs-icon.sky { background: rgba(11,107,203,.1); color: #0B6BCB; }
.hs-icon.violet { background: rgba(109,40,217,.1); color: #6D28D9; }
.hs-icon.teal { background: rgba(13,148,136,.12); color: #0D9488; }
.hs-icon.amber { background: rgba(217,119,6,.12); color: #D97706; }
.hs-icon.rose { background: rgba(225,29,72,.1); color: #E11D48; }
.hero-stack-list strong {
  display: block; font-size: 0.92rem; font-weight: 650; color: var(--ink); margin-bottom: 0.1rem;
}
.hero-stack-list span { font-size: 0.78rem; color: var(--ink-3); line-height: 1.35; }
.hs-link {
  font-size: 0.8rem; font-weight: 600; color: var(--primary); text-decoration: none;
  padding: 0.35rem 0.65rem; border-radius: 8px; transition: background .2s;
}
.hs-link:hover { background: rgba(11,107,203,.08); }
.hero-panel-foot {
  padding: 0.85rem 1.2rem; border-top: 1px solid var(--border);
  background: #F8FAFC; font-size: 0.78rem; color: var(--ink-3); font-weight: 500;
}
.hero-float-a, .hero-float-b {
  position: absolute; background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 0.75rem 0.95rem; box-shadow: var(--shadow-md);
  display: flex; align-items: baseline; gap: 0.45rem;
}
.hero-float-a { left: -1rem; bottom: 4.5rem; animation: floatCard 6s ease-in-out infinite; }
.hero-float-b { right: -0.6rem; top: 2.5rem; animation: floatCard 7s ease-in-out infinite 0.6s; }
.hero-float-a strong, .hero-float-b strong {
  font-family: var(--display); font-size: 1.35rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-float-a span, .hero-float-b span { font-size: 0.72rem; color: var(--ink-3); max-width: 88px; line-height: 1.25; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.badge-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: .4px; text-transform: uppercase;
  color: #047857; background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.25); padding: 6px 10px; border-radius: 999px; white-space: nowrap;
}
.badge-live i { width: 6px; height: 6px; border-radius: 50%; background: #10B981; display: block; }
.page-hero .badge-live {
  color: #6ee7b7; background: rgba(16,185,129,.15); border-color: rgba(16,185,129,.3);
}
.page-hero .badge-live i { background: #34d399; }

/* ─── STRIP ─── */
.strip {
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 1.15rem 0; position: relative; z-index: 2;
}
.strip-row {
  display: flex; gap: 0.55rem; flex-wrap: wrap; align-items: center; justify-content: center;
}
.strip .t {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-4); margin-right: 0.4rem;
}
.schip {
  font-size: 0.8rem; font-weight: 500; color: var(--ink-2);
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.38rem 0.85rem; transition: .2s;
}
.schip:hover { border-color: #CBD5E1; color: var(--ink); background: #fff; box-shadow: var(--shadow); }

/* ─── SECTIONS ─── */
section { padding: 5.5rem 0; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 0.9rem;
}
.section-tag::before {
  content: ''; width: 16px; height: 2px; background: var(--grad); border-radius: 2px;
}
.section-title {
  font-family: var(--display); font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; max-width: 720px;
  color: var(--ink);
}
.section-title .grad {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-sub {
  color: var(--ink-3); font-size: 1.05rem; max-width: 560px; margin-top: 0.95rem; line-height: 1.7;
}
.section-head { margin-bottom: 2.75rem; }
.section-head.center { text-align: center; }
.section-head.center .section-tag { justify-content: center; }
.section-head.center .section-title,
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* Soft alternating bands */
#servicios, .platform:nth-of-type(odd),
section[style*="dark-900"],
#capacidades + .stats-band { }
#servicios { background: var(--bg-soft) !important; border-color: var(--border) !important; }

/* ─── CAPTIVE PORTALS / PUBLIC VENUES ─── */
.captive {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.captive-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .captive-intro { grid-template-columns: 1fr; gap: 2rem; }
}
.captive-h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.captive-intro-copy > p {
  color: var(--ink-3);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 540px;
}
.captive-checklist {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 0;
}
.captive-checklist li {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.45;
}
.captive-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
}
.captive-steps {
  display: grid;
  gap: 0.85rem;
}
.captive-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow);
}
.captive-step-n {
  flex: 0 0 auto;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 0.15rem;
}
.captive-step strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.captive-step p {
  font-size: 0.86rem;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 0;
}
.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 960px) { .venue-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .venue-grid { grid-template-columns: 1fr; } }
.venue-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.35rem 1.25rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  box-shadow: var(--shadow);
}
.venue-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: #D4DCE8;
  background: #fff;
}
.venue-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.venue-card h3 {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 650;
  color: var(--ink);
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}
.venue-card p {
  font-size: 0.86rem;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0;
}
.captive-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) { .captive-benefits { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .captive-benefits { grid-template-columns: 1fr; } }
.captive-benefit {
  background: linear-gradient(180deg, rgba(11,107,203,.06), transparent);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.2rem 1.15rem;
}
.captive-benefit strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.captive-benefit span {
  font-size: 0.84rem;
  color: var(--ink-3);
  line-height: 1.5;
}
.platform { background: var(--bg); border-top: 1px solid var(--border); }
.platform:nth-of-type(even) { background: var(--bg-soft); }

/* ─── PILLARS ─── */
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
@media (max-width: 1000px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.55rem 1.3rem;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.pillar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); opacity: 0; transition: .25s;
}
.pillar:hover {
  transform: translateY(-4px); border-color: #D4DCE8;
  box-shadow: var(--shadow-lg);
}
.pillar:hover::before { opacity: 1; }
.pillar-num {
  font-family: var(--display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; color: var(--primary); margin-bottom: 0.85rem;
}
.pillar h3 {
  font-family: var(--display); font-size: 1.06rem; font-weight: 650;
  letter-spacing: -0.02em; margin-bottom: 0.5rem; color: var(--ink);
}
.pillar p { font-size: 0.88rem; color: var(--ink-3); line-height: 1.55; margin-bottom: 1rem; }
.pillar ul { list-style: none; display: grid; gap: 0.35rem; }
.pillar li {
  font-size: 0.8rem; color: var(--ink-3); padding-left: 1rem; position: relative;
}
.pillar li::before {
  content: ''; position: absolute; left: 0; top: 0.45rem;
  width: 5px; height: 5px; border-radius: 50%; background: var(--primary); opacity: 0.7;
}
.pillar a {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 1.1rem; font-size: 0.82rem; font-weight: 600;
  color: var(--primary); text-decoration: none;
}
.pillar a:hover { text-decoration: underline; }

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.05rem;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.5rem 1.35rem;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  display: flex; flex-direction: column; height: 100%;
  box-shadow: var(--shadow);
}
.service-card:hover {
  transform: translateY(-3px); border-color: #D4DCE8; box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.05rem;
  border: 1px solid transparent;
}
.service-icon svg { width: 22px; height: 22px; }
.service-icon.sky { background: rgba(11,107,203,.1); border-color: rgba(11,107,203,.15); color: #0B6BCB; }
.service-icon.teal { background: rgba(13,148,136,.1); border-color: rgba(13,148,136,.15); color: #0D9488; }
.service-icon.violet { background: rgba(109,40,217,.08); border-color: rgba(109,40,217,.12); color: #6D28D9; }
.service-icon.amber { background: rgba(217,119,6,.1); border-color: rgba(217,119,6,.15); color: #D97706; }
.service-icon.green { background: rgba(5,150,105,.1); border-color: rgba(5,150,105,.15); color: #059669; }
.service-icon.rose { background: rgba(225,29,72,.08); border-color: rgba(225,29,72,.12); color: #E11D48; }
.service-name {
  font-family: var(--display); font-size: 1.05rem; font-weight: 650;
  margin-bottom: 0.5rem; letter-spacing: -0.02em; color: var(--ink);
}
.service-desc {
  font-size: 0.88rem; color: var(--ink-3); line-height: 1.58; flex: 1;
}
.service-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 1.1rem; font-size: 0.82rem; font-weight: 600;
  color: var(--primary); text-decoration: none;
}
.service-link:hover { text-decoration: underline; }
.service-link svg { width: 14px; height: 14px; }

/* ─── PLATFORM FEATURE ─── */
.platform-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.25rem; align-items: center;
}
.platform-layout.reverse { direction: rtl; }
.platform-layout.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .platform-layout, .platform-layout.reverse {
    grid-template-columns: 1fr; gap: 2rem; direction: ltr;
  }
}
.platform-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase;
  border-radius: 999px; padding: 0.4rem 0.85rem; margin-bottom: 1rem;
}
.platform-badge.wapi {
  color: #047857; background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.25);
}
.platform-badge.ai {
  color: #5B21B6; background: rgba(109,40,217,.08); border: 1px solid rgba(109,40,217,.2);
}
.platform-badge.vs {
  color: #0369A1; background: rgba(11,107,203,.08); border: 1px solid rgba(11,107,203,.2);
}
.platform-badge.sg {
  color: #0F766E; background: rgba(13,148,136,.1); border: 1px solid rgba(13,148,136,.25);
}
.platform-badge.wl {
  color: #4338CA; background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.25);
}
.platform-badge.vx {
  color: #0E7490; background: rgba(14,116,144,.1); border: 1px solid rgba(14,116,144,.25);
}

/* Simple sparkline-style metric cards for Vision */
.metric-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem;
}
@media (max-width: 900px) { .metric-grid { grid-template-columns: 1fr 1fr; } }
.metric-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.25rem 1.15rem; box-shadow: var(--shadow);
}
.metric-card .m-label { font-size: 0.78rem; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: .04em; }
.metric-card .m-value {
  font-family: var(--display); font-size: 1.55rem; font-weight: 800; margin: 0.35rem 0 0.25rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.metric-card .m-note { font-size: 0.82rem; color: var(--ink-3); line-height: 1.4; }
.platform-title {
  font-family: var(--display); font-size: clamp(1.5rem, 2.9vw, 2.1rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1rem;
  color: var(--ink);
}
.platform-title em {
  font-style: normal;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.platform-text {
  color: var(--ink-3); font-size: 1rem; line-height: 1.7; margin-bottom: 1.4rem; max-width: 480px;
}
.platform-features { display: grid; gap: 0.8rem; margin-bottom: 1.6rem; }
.platform-feature { display: flex; gap: 0.8rem; align-items: flex-start; }
.platform-feature .check {
  flex: 0 0 26px; height: 26px; border-radius: 8px;
  background: var(--grad); color: #fff; font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.platform-feature b { display: block; font-size: 0.92rem; margin-bottom: 0.12rem; color: var(--ink); }
.platform-feature p { font-size: 0.84rem; color: var(--ink-3); line-height: 1.5; }
.platform-acts { display: flex; gap: 0.7rem; flex-wrap: wrap; }

.platform-visual { position: relative; }
.photo-frame {
  position: relative; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--bg-warm);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 18px; box-shadow: inset 0 0 0 1px rgba(15,23,42,.06);
  pointer-events: none;
}
.photo-frame .tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: rgba(15,23,42,.82); color: #fff;
  font-size: 0.76rem; font-weight: 600; padding: 0.55rem 0.85rem; border-radius: 10px;
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.1);
}
.float-stat {
  position: absolute; right: -0.4rem; top: -0.7rem; z-index: 3;
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 0.85rem 1rem;
  box-shadow: var(--shadow-lg); max-width: 170px;
}
.float-stat .v {
  font-family: var(--display); font-size: 1.35rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.float-stat .l { font-size: 0.72rem; color: var(--ink-3); margin-top: 0.15rem; line-height: 1.35; }
@media (max-width: 560px) { .float-stat { display: none; } }

/* ─── MATRIX ─── */
.matrix {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow);
}
@media (max-width: 800px) { .matrix { grid-template-columns: 1fr; } }
.matrix-item {
  background: #fff; padding: 1.6rem 1.35rem; transition: background .25s;
}
.matrix-item:hover { background: var(--bg-soft); }
.matrix-item h4 {
  font-family: var(--display); font-size: 1rem; font-weight: 650;
  margin-bottom: 0.45rem; letter-spacing: -0.02em; color: var(--ink);
}
.matrix-item p { font-size: 0.86rem; color: var(--ink-3); line-height: 1.55; }

/* ─── STATS ─── */
.stats-band { padding: 0 0 4.5rem; background: var(--bg); }
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow);
}
@media (max-width: 640px) { .stats-inner { grid-template-columns: 1fr 1fr; } }
.stat {
  background: #fff; padding: 1.75rem 1.2rem; text-align: center;
  transition: background .25s;
}
.stat:hover { background: var(--bg-soft); }
.stat-number {
  font-family: var(--display); font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800; letter-spacing: -0.03em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { font-size: 0.82rem; color: var(--ink-3); margin-top: 0.35rem; }

/* ─── ABOUT ─── */
.about-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 3rem 2.25rem; text-align: center;
  max-width: 860px; margin: 0 auto; position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(11,107,203,.07), transparent 70%);
  pointer-events: none;
}
.about-title {
  font-family: var(--display); font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700; margin-bottom: 0.9rem; position: relative; color: var(--ink);
}
.about-text {
  color: var(--ink-3); font-size: 1.02rem; line-height: 1.7;
  max-width: 600px; margin: 0 auto 1.6rem; position: relative;
}
.about-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; position: relative;
}
.about-tag {
  font-size: 0.8rem; font-weight: 500; color: var(--ink-2);
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.42rem 0.95rem;
}

/* ─── CTA ─── */
.cta-band { padding: 3.5rem 0 5rem; background: var(--bg-soft); }
.cta-box {
  background: linear-gradient(135deg, rgba(11,107,203,.08) 0%, rgba(13,148,136,.06) 100%);
  border: 1px solid var(--border-strong); border-radius: var(--r-xl);
  padding: 3rem 2rem; text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-box h2 {
  font-family: var(--display); font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700; margin-bottom: 0.8rem; letter-spacing: -0.02em; color: var(--ink);
}
.cta-box p { color: var(--ink-3); max-width: 520px; margin: 0 auto 1.6rem; line-height: 1.65; }
.cta-box .acts { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border); padding: 2.75rem 0 2rem;
  background: #0B1220; color: #E2E8F0;
}
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 1.75rem; }
.footer-top {
  display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: space-between;
  margin-bottom: 2rem;
}
.footer .logo-text { color: #fff; }
.footer .logo-text span { color: #38BDF8; }
.footer-brand p {
  color: #94A3B8; font-size: 0.86rem; margin-top: 0.7rem; max-width: 300px; line-height: 1.55;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 2rem 3rem; }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase;
  color: #64748B; margin-bottom: 0.85rem;
}
.footer-col a, .footer-col span {
  display: block; color: #94A3B8; text-decoration: none;
  font-size: 0.88rem; margin-bottom: 0.48rem; transition: color .2s;
}
.footer-col a:hover { color: #38BDF8; }
.footer-copy {
  border-top: 1px solid rgba(148,163,184,.15); padding-top: 1.25rem;
  font-size: 0.78rem; color: #64748B; text-align: center; line-height: 1.55;
}
.footer-copy a { color: #94A3B8; text-decoration: none; }
.footer-copy a:hover { color: #38BDF8; }

/* ─── WHATSAPP ─── */
.whatsapp-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.35);
  text-decoration: none; transition: transform .25s, box-shadow .25s;
  animation: whatsappBounce 2s ease-in-out infinite 3s;
}
.whatsapp-float:hover {
  transform: scale(1.08); box-shadow: 0 12px 36px rgba(37,211,102,.45);
}
.whatsapp-tooltip {
  position: absolute; right: 68px; white-space: nowrap;
  background: #fff; color: var(--ink); font-size: 0.8rem; font-weight: 500;
  padding: 0.5rem 0.85rem; border-radius: 8px; border: 1px solid var(--border);
  box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s; transform: translateX(6px);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: none; }
@keyframes whatsappBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@media (max-width: 560px) {
  .whatsapp-float { width: 50px; height: 50px; bottom: 1.2rem; right: 1.2rem; }
  .whatsapp-tooltip { display: none; }
}

/* ─── SERVICE DETAIL PAGES ─── */
.page-hero {
  position: relative; padding: 8.5rem 0 4rem; overflow: hidden; color: #fff;
}
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
}
.page-hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,14,28,.78) 0%, rgba(8,14,28,.55) 40%, rgba(8,14,28,.96) 100%),
    linear-gradient(90deg, rgba(8,14,28,.9) 0%, rgba(8,14,28,.4) 100%);
}
.page-hero-inner { position: relative; max-width: var(--max); margin: 0 auto; padding: 0 1.75rem; }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center;
  font-size: 0.84rem; color: #9fb0c9; margin-bottom: 1.25rem;
}
.breadcrumb a { color: #c5d4ea; text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 {
  font-family: var(--display); font-size: clamp(1.95rem, 4.2vw, 2.9rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; max-width: 740px;
}
.page-hero h1 .grad {
  background: linear-gradient(135deg, #7dd3fc, #2dd4bf);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero .sub {
  margin-top: 1.1rem; font-size: 1.08rem; color: #c5d4ea; max-width: 560px; line-height: 1.7;
}
.page-hero .acts { margin-top: 1.75rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }

.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 2rem; } }

.steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.85rem;
  counter-reset: s;
}
@media (max-width: 1100px) { .steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .steps { grid-template-columns: 1fr; } }
.stp {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.35rem 1.1rem;
  transition: box-shadow .25s, border-color .25s, transform .25s;
  box-shadow: var(--shadow);
}
.stp:hover {
  border-color: #D4DCE8; transform: translateY(-3px); box-shadow: var(--shadow-md);
}
.stp::before {
  counter-increment: s; content: "0" counter(s);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 1px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stp b { display: block; margin: 0.6rem 0 0.4rem; font-size: 0.94rem; color: var(--ink); }
.stp p { font-size: 0.82rem; color: var(--ink-3); line-height: 1.5; }

.pains {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
@media (max-width: 1000px) { .pains { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pains { grid-template-columns: 1fr; } }
.pain {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.5rem 1.25rem;
  transition: transform .25s, box-shadow .25s; box-shadow: var(--shadow);
}
.pain:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pain .ic {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--grad-soft); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
  color: var(--primary);
}
.pain .ic svg { width: 20px; height: 20px; }
.pain b { font-size: 0.96rem; display: block; margin-bottom: 0.4rem; color: var(--ink); }
.pain p { font-size: 0.86rem; color: var(--ink-3); line-height: 1.55; }

.plans {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
}
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }
.plan {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s;
  box-shadow: var(--shadow);
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.plan.hl {
  border-color: rgba(11,107,203,.35);
  background: linear-gradient(180deg, rgba(11,107,203,.06) 0%, #fff 40%);
  box-shadow: 0 12px 40px rgba(11,107,203,.1);
}
.plan h3 { font-family: var(--display); font-size: 1.12rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--ink); }
.plan .for { font-size: 0.85rem; color: var(--ink-3); margin-bottom: 1.15rem; line-height: 1.45; }
.plan ul { list-style: none; flex: 1; margin-bottom: 1.35rem; }
.plan li {
  font-size: 0.88rem; color: var(--ink-3); padding: 0.4rem 0 0.4rem 1.3rem;
  position: relative; line-height: 1.45;
}
.plan li::before {
  content: ''; position: absolute; left: 0; top: 0.7rem;
  width: 7px; height: 7px; border-radius: 50%; background: var(--grad);
}

.aigrid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem;
}
@media (max-width: 1000px) { .aigrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .aigrid { grid-template-columns: 1fr; } }
.aicard {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.25rem; transition: .25s; box-shadow: var(--shadow);
}
.aicard:hover { border-color: #D4DCE8; box-shadow: var(--shadow-md); }
.aicard .ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(11,107,203,.08); border: 1px solid rgba(11,107,203,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 0.85rem;
}
.aicard .ico svg { width: 18px; height: 18px; }
.aicard b { display: block; font-size: 0.94rem; margin-bottom: 0.35rem; color: var(--ink); }
.aicard p { font-size: 0.82rem; color: var(--ink-3); line-height: 1.5; }

.honest {
  margin-top: 1.75rem; font-size: 0.88rem; color: var(--ink-3); max-width: 720px;
  border-left: 3px solid var(--primary); padding: 0.75rem 0 0.75rem 1rem;
  background: linear-gradient(90deg, rgba(11,107,203,.05), transparent);
  border-radius: 0 8px 8px 0;
}
.honest b { color: var(--ink-2); }

.creds {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem;
}
@media (max-width: 700px) { .creds { grid-template-columns: 1fr 1fr; } }
.cred {
  text-align: center; padding: 1.5rem 1rem;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  box-shadow: var(--shadow);
}
.cred .v {
  font-family: var(--display); font-size: 1.7rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cred .l { font-size: 0.8rem; color: var(--ink-3); margin-top: 0.35rem; line-height: 1.4; }

/* Soft section overrides for inline styles on product pages */
section[style*="background:var(--dark-800)"],
section[style*="background:var(--dark-900)"],
section[style*="dark-800"],
section[style*="dark-900"] {
  background: var(--bg-soft) !important;
  border-color: var(--border) !important;
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
