/* ==========================================================================
   Kavi MAX — Design System v2 (2026 revamp)
   Self-contained, production-ready CSS. No build step, no CDN dependency.
   Palette drawn from the KaviMax logo: deep navy + energetic orange.
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand (logo orange) */
  --brand-50:  #FFF6EC;
  --brand-100: #FFE9CE;
  --brand-200: #FFD09B;
  --brand-300: #FDB25F;
  --brand-400: #FA9A33;
  --brand-500: #F78A16;   /* primary — matches the MAX in the logo */
  --brand-600: #E27508;
  --brand-700: #B85B07;
  --amber-400: #FFC24B;

  /* Ink / neutrals (logo navy) */
  --ink-950: #05080F;
  --ink-900: #0A101E;
  --ink-800: #111A2E;
  --ink-700: #1C2740;
  --ink-600: #33415E;
  --slate-500: #5D6B85;
  --slate-400: #8B97AD;
  --slate-300: #C3CCDB;
  --slate-200: #DFE5EE;
  --slate-100: #EFF2F7;
  --slate-50:  #F7F9FC;
  --white: #FFFFFF;

  /* Secondary accent (electric blue for gradients & charts) */
  --accent-500: #2E6BFF;
  --accent-400: #5C8BFF;
  --gradient-accent: linear-gradient(135deg, #2E6BFF 0%, #7C3AED 100%);

  /* Semantic */
  --bg: var(--white);
  --bg-soft: var(--slate-50);
  --bg-ink: var(--ink-900);
  --text: var(--ink-700);
  --text-muted: var(--slate-500);
  --heading: var(--ink-900);
  --border: var(--slate-200);
  --primary: var(--brand-500);
  --primary-strong: var(--brand-600);

  /* Effects */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-sm: 0 1px 2px rgba(10, 16, 30, .05), 0 1px 3px rgba(10, 16, 30, .07);
  --shadow: 0 12px 32px -12px rgba(10, 16, 30, .16);
  --shadow-lg: 0 32px 64px -24px rgba(10, 16, 30, .28);
  --shadow-brand: 0 16px 38px -12px rgba(247, 138, 22, .42);

  --gradient-brand: linear-gradient(135deg, var(--brand-500) 0%, var(--amber-400) 100%);
  --gradient-ink: linear-gradient(165deg, #0A101E 0%, #101A31 55%, #14224A 100%);

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Sora", "Inter", var(--font-sans);
  --font-logo: var(--font-display);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(64px, 9vw, 118px);
  --nav-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
:focus-visible { outline: 3px solid var(--brand-300); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--brand-100); color: var(--ink-900); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--heading);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.35rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.14rem; }
p { color: var(--text); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--ink-600); line-height: 1.7; }
strong { font-weight: 700; color: var(--ink-900); }
.grad { background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-wide { max-width: 1320px; }
.section { padding-block: var(--section-y); }
.section-sm { padding-block: clamp(48px, 6vw, 80px); }
.bg-soft { background: var(--bg-soft); }
.bg-ink { background: var(--gradient-ink); color: var(--slate-300); position: relative; }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #fff; }

.grid { display: grid; gap: clamp(20px, 3vw, 32px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.stack-sm > * + * { margin-top: .75rem; }
.stack > * + * { margin-top: 1.25rem; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 65ch; }
.measure-sm { max-width: 52ch; }

/* ---------- Eyebrow / section heading ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-600);
}
.eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
}
.bg-ink .eyebrow { color: var(--amber-400); }
.section-head { max-width: 740px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::after { content: ""; width: 24px; height: 2px; background: var(--gradient-brand); border-radius: 2px; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head p { margin-top: 1rem; color: var(--text-muted); font-size: 1.08rem; }
.bg-ink .section-head p { color: var(--slate-400); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1.55rem;
  border-radius: 14px;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--gradient-brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 46px -14px rgba(247, 138, 22, .55); }
.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: var(--ink-800); }
.btn-outline { border-color: var(--slate-300); color: var(--ink-900); background: #fff; }
.btn-outline:hover { border-color: var(--brand-500); color: var(--brand-600); transform: translateY(-2px); }
.btn-ghost { color: var(--ink-900); padding-inline: .4rem; }
.btn-ghost:hover { color: var(--brand-600); }
.bg-ink .btn-outline, .hero-dark .btn-outline { background: rgba(255,255,255,.04); color: #fff; border-color: rgba(255,255,255,.28); }
.bg-ink .btn-outline:hover, .hero-dark .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.09); color: #fff; }
.btn-lg { padding: 1.02rem 1.9rem; font-size: 1.02rem; border-radius: 16px; }
.btn-arrow svg { transition: transform .2s ease; }
.btn-arrow:hover svg { transform: translateX(3px); }

/* ---------- Badges / pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .42rem .95rem;
  font-size: .82rem; font-weight: 600;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-700);
  border: 1px solid var(--brand-100);
}
.pill-dot::before { content:""; width:7px; height:7px; border-radius:50%; background: var(--brand-500); box-shadow: 0 0 0 4px rgba(247,138,22,.18); }
.bg-ink .pill, .hero-dark .pill { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.14); backdrop-filter: blur(6px); }

.tag {
  display:inline-block; padding:.28rem .7rem; border-radius:8px;
  font-size:.76rem; font-weight:600; background: var(--slate-100); color: var(--ink-600);
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
  position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand-200); }
.card-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
  color: var(--brand-600);
  margin-bottom: 1.25rem;
  border: 1px solid var(--brand-100);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.25rem; }
.card p { color: var(--text-muted); margin-top: .6rem; font-size: .96rem; }
.card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.1rem; font-weight: 600; color: var(--brand-600);
  font-family: var(--font-display); font-size: .93rem;
}
.card-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

.card-feature { background: var(--gradient-ink); color: var(--slate-300); border: none; }
.card-feature h3 { color: #fff; }
.card-feature .card-icon { background: rgba(255,255,255,.08); color: var(--amber-400); border-color: rgba(255,255,255,.1); }
.card-feature p { color: var(--slate-400); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.nav {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo { height: 60px; width: auto; display: block; transition: transform .2s ease; }
.brand:hover .brand-logo { transform: translateY(-1px); }
.footer-brand .brand-logo { height: 46px; }

@media (max-width: 980px) {
  :root { --nav-h: 68px; }
  .brand-logo { height: 44px; }
}
@media (max-width: 400px) {
  :root { --nav-h: 62px; }
  .brand-logo { height: 38px; }
}
/* Tighter nav on mid-size screens — 7 menu items + logo + CTA must fit */
@media (min-width: 981px) and (max-width: 1260px) {
  .nav { gap: .8rem; }
  .nav-menu { gap: 0; }
  .nav-menu > li > a, .nav-toggle-link { padding-inline: .42rem; font-size: .86rem; }
  .nav-cta { gap: .4rem; }
  .nav-cta .btn-text-only { display: none; }
  .nav-cta .btn-primary { padding: .68rem 1rem; font-size: .86rem; }
  .brand-logo { height: 46px; }
}
/* Compact header on phones so logo + CTA + toggle fit on one row */
@media (max-width: 520px) {
  .nav { gap: .5rem; }
  .nav-cta { gap: .4rem; }
  .nav-cta .btn-primary { padding: .58rem .85rem; font-size: .8rem; border-radius: 11px; }
  .brand-logo { height: 40px; }
}

.nav-menu { display: flex; align-items: center; gap: .2rem; }
.nav-menu > li > a, .nav-toggle-link {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .6rem .85rem; border-radius: 10px;
  font-weight: 500; font-size: .94rem; color: var(--ink-700);
  transition: color .15s ease, background .15s ease;
}
.nav-menu > li > a:hover, .nav-toggle-link:hover { color: var(--brand-600); background: var(--brand-50); }
.nav-menu > li > a.active { color: var(--brand-600); font-weight: 600; }
.nav-menu .chevron { width: 15px; height: 15px; transition: transform .2s ease; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 330px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: .6rem; opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-dropdown:hover .chevron { transform: rotate(180deg); }
.dropdown a { display: flex; gap: .85rem; padding: .8rem; border-radius: 12px; transition: background .15s ease; }
.dropdown a:hover { background: var(--slate-50); }
.dropdown .d-icon { width: 40px; height: 40px; flex: none; border-radius: 11px; display: grid; place-items: center; background: linear-gradient(135deg, var(--brand-50), var(--brand-100)); color: var(--brand-600); }
.dropdown .d-icon svg { width: 20px; height: 20px; }
.dropdown .d-title { font-weight: 600; color: var(--ink-900); font-size: .93rem; }
.dropdown .d-sub { font-size: .8rem; color: var(--text-muted); }

.nav-cta { display: flex; align-items: center; gap: .6rem; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--border); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink-900); margin: 4px auto; border-radius: 2px; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .25rem;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 1rem var(--gutter) 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%); transition: transform .3s ease; max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu > li > a { padding: .85rem .75rem; font-size: 1.05rem; }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: none; border-left: 2px solid var(--border);
    margin: .25rem 0 .5rem .75rem; padding: .25rem 0 .25rem .5rem; min-width: 0;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .nav-cta .btn-text-only { display: none; }
}

/* ---------- Dark hero (homepage) ---------- */
.hero-dark {
  position: relative; overflow: hidden;
  background: var(--gradient-ink);
  color: var(--slate-300);
}
.hero-dark::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(52% 60% at 88% 0%, rgba(247,138,22,.20), transparent 62%),
    radial-gradient(40% 55% at 0% 100%, rgba(46,107,255,.16), transparent 60%),
    radial-gradient(30% 40% at 20% 0%, rgba(255,194,75,.08), transparent 60%);
  pointer-events: none;
}
.hero-dark::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(80% 80% at 60% 20%, #000 30%, transparent 80%);
  mask-image: radial-gradient(80% 80% at 60% 20%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero-dark h1 { color: #fff; }
.hero-dark .lead { color: var(--slate-300); }
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  padding-block: clamp(60px, 8vw, 108px);
}
.hero-inner h1 { margin-top: 1.25rem; }
.hero-inner p.lead { margin-top: 1.4rem; max-width: 44ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.1rem; }
.hero-trust { margin-top: 2.6rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.hero-trust .stat b { font-family: var(--font-display); font-size: 1.75rem; color: #fff; display: block; line-height: 1; }
.hero-trust .stat span { font-size: .84rem; color: var(--slate-400); }
.hero-trust .divider { width: 1px; height: 38px; background: rgba(255,255,255,.15); }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { max-width: 540px; }
}

/* Hero media: framed image with floating chips */
.hero-media { position: relative; }
.hero-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.6);
  background: var(--ink-800);
}
.hero-frame img, .hero-frame svg { width: 100%; height: auto; display: block; }
.hero-frame::after { content:""; position:absolute; inset:0; border-radius: inherit; box-shadow: inset 0 1px 0 rgba(255,255,255,.12); pointer-events:none; }
.float-chip {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: .65rem;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 14px; padding: .65rem .9rem;
  box-shadow: var(--shadow-lg);
  font-size: .82rem; font-weight: 600; color: var(--ink-800);
  animation: floaty 5.5s ease-in-out infinite;
}
.float-chip .fc-ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--gradient-brand); color: #fff; flex: none; }
.float-chip .fc-ic svg { width: 18px; height: 18px; }
.float-chip b { display: block; font-family: var(--font-display); font-size: .95rem; color: var(--ink-900); line-height: 1.2; }
.float-chip span { color: var(--slate-500); font-weight: 500; font-size: .74rem; }
.float-chip.fc-1 { top: 8%; left: -4%; animation-delay: 0s; }
.float-chip.fc-2 { bottom: 12%; right: -4%; animation-delay: 1.6s; }
.float-chip.fc-3 { bottom: -5%; left: 12%; animation-delay: .8s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (max-width: 640px) {
  .float-chip.fc-1 { left: 2%; }
  .float-chip.fc-2 { right: 2%; }
  .float-chip.fc-3 { display: none; }
}

/* ---------- Logo strip / marquee ---------- */
.logo-strip { padding-block: 2.5rem; border-block: 1px solid var(--border); background: #fff; }
.logo-strip p { text-align: center; color: var(--text-muted); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.4rem; font-weight: 600; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: clamp(2rem, 5vw, 4rem); width: max-content; animation: marquee 30s linear infinite; align-items: center; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--slate-400); white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Badge row ---------- */
.badge-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .75rem; }
.badge { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1.05rem; border-radius: 999px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); font-weight: 600; font-size: .88rem; color: var(--ink-700); }
.badge svg { width: 18px; height: 18px; color: var(--brand-500); }

/* ---------- Stat band ---------- */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-band .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat-band .label { margin-top: .5rem; color: var(--text-muted); font-size: .95rem; }
.bg-ink .stat-band .label { color: var(--slate-400); }
@media (max-width: 640px) { .stat-band { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; } }

/* ---------- Service overview cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 28px); }
@media (max-width: 980px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card { position: relative; overflow: hidden; }
.svc-card::before { content:""; position:absolute; inset: 0 0 auto 0; height: 3px; background: var(--gradient-brand); opacity: 0; transition: opacity .25s ease; border-radius: 3px 3px 0 0; }
.svc-card:hover::before { opacity: 1; }
.svc-card::after { content:""; position:absolute; inset: auto -40% -40% auto; width: 220px; height: 220px; background: radial-gradient(circle, rgba(247,138,22,.09), transparent 70%); opacity:0; transition: opacity .3s ease; }
.svc-card:hover::after { opacity: 1; }
.svc-list { margin-top: 1.2rem; display: grid; gap: .55rem; }
.svc-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .94rem; color: var(--ink-700); }
.svc-list li svg { width: 18px; height: 18px; color: var(--brand-500); flex: none; margin-top: 2px; }

/* ---------- Products showcase ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(22px, 3vw, 32px); }
@media (max-width: 900px) { .prod-grid { grid-template-columns: 1fr; } }
.prod-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand-200); }
.prod-media { position: relative; background: var(--ink-900); aspect-ratio: 16 / 9; overflow: hidden; }
.prod-media video, .prod-media img { width: 100%; height: 100%; object-fit: cover; }
.prod-media .prod-cover {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: var(--gradient-ink);
  position: relative;
}
.prod-media .prod-cover::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(60% 80% at 80% 0%, rgba(247,138,22,.25), transparent 60%), radial-gradient(50% 70% at 10% 100%, rgba(46,107,255,.22), transparent 60%);
}
.prod-cover .pc-icon { position: relative; width: 84px; height: 84px; border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: var(--amber-400); backdrop-filter: blur(4px); }
.prod-cover .pc-icon svg { width: 40px; height: 40px; }
.prod-body { display: flex; flex-direction: column; flex: 1; padding: clamp(1.4rem, 2.5vw, 1.9rem); }
.prod-kicker { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin-bottom: .8rem; }
.prod-kicker .tag { background: var(--brand-50); color: var(--brand-700); border: 1px solid var(--brand-100); }
.prod-body h3 { font-size: 1.3rem; }
.prod-body > p { color: var(--text-muted); margin-top: .6rem; font-size: .96rem; }
.prod-feats { margin-top: 1.1rem; display: grid; gap: .5rem; }
.prod-feats li { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--ink-700); }
.prod-feats li svg { width: 17px; height: 17px; color: var(--brand-500); flex: none; margin-top: 3px; }
.prod-body .card-link { margin-top: auto; padding-top: 1.2rem; }

/* Flagship product split */
.prod-flag {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  background: var(--gradient-ink); color: var(--slate-300);
  border-radius: var(--radius-xl); overflow: hidden;
  padding: clamp(1.8rem, 4vw, 3rem);
  position: relative;
}
.prod-flag::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 80% at 100% 0%, rgba(247,138,22,.18), transparent 60%); pointer-events:none; }
.prod-flag > * { position: relative; }
.prod-flag h3 { color: #fff; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.prod-flag p { color: var(--slate-400); }
.prod-flag .prod-feats li { color: var(--slate-300); }
.prod-flag .prod-feats li svg { color: var(--amber-400); }
@media (max-width: 900px) { .prod-flag { grid-template-columns: 1fr; } }

/* Video shell — browser-chrome framing for demo videos */
.video-shell { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 30px 70px -25px rgba(0,0,0,.55); background: var(--ink-800); }
.video-shell .vs-bar { display: flex; align-items: center; gap: .45rem; padding: .6rem .9rem; background: rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.08); }
.video-shell .vs-bar i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.video-shell .vs-bar i:nth-child(1) { background: #FF5F57; }
.video-shell .vs-bar i:nth-child(2) { background: #FEBC2E; }
.video-shell .vs-bar i:nth-child(3) { background: #28C840; }
.video-shell .vs-bar span { margin-left: .6rem; font-size: .72rem; color: var(--slate-400); font-weight: 500; letter-spacing: .02em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.video-shell video { width: 100%; display: block; background: var(--ink-950); }
.video-shell-light { border-color: var(--border); box-shadow: var(--shadow-lg); background: #fff; }
.video-shell-light .vs-bar { background: var(--slate-100); border-color: var(--border); }
.video-shell-light .vs-bar span { color: var(--slate-500); }

/* ---------- Clients ---------- */
.client-logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: clamp(1.2rem, 3vw, 2rem); }
.client-logo-tile {
  display: grid; place-items: center;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.6rem 2.4rem; min-width: 240px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.client-logo-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-200); }
.client-logo-tile img { max-height: 74px; width: auto; object-fit: contain; }

.client-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 30px); }
@media (max-width: 860px) { .client-cards { grid-template-columns: 1fr; } }
.client-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  display: flex; flex-direction: column; gap: 1.2rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.client-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand-200); }
.client-card .cc-logo { height: 64px; display: flex; align-items: center; }
.client-card .cc-logo img { max-height: 64px; width: auto; object-fit: contain; }
.client-card blockquote { font-size: 1.02rem; color: var(--ink-700); line-height: 1.7; }
.client-card .stars { color: var(--amber-400); letter-spacing: 2px; font-size: 1.05rem; }
.client-card .author { display: flex; align-items: center; gap: .85rem; margin-top: auto; padding-top: .4rem; border-top: 1px solid var(--slate-100); }
.client-card .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gradient-brand); color:#fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: .9rem; flex: none; }
.client-card .author b { display: block; color: var(--ink-900); font-size: .96rem; }
.client-card .author span { font-size: .82rem; color: var(--text-muted); }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 900px) { .split, .split.reverse { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.feature-list { display: grid; gap: 1.1rem; margin-top: 1.75rem; }
.feature-list li { display: flex; gap: 1rem; }
.feature-list .fi-icon { flex: none; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--brand-50), var(--brand-100)); color: var(--brand-600); display: grid; place-items: center; }
.feature-list .fi-icon svg { width: 22px; height: 22px; }
.feature-list h4 { margin-bottom: .2rem; }
.feature-list p { color: var(--text-muted); font-size: .95rem; }

.media-card {
  border-radius: var(--radius-xl); padding: 2rem;
  background: var(--gradient-ink); color: #fff; box-shadow: var(--shadow-lg);
}
.media-card .mc-row { display: flex; align-items: center; gap: .8rem; padding: 1rem; border-radius: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }
.media-card .mc-row + .mc-row { margin-top: .8rem; }
.media-card .mc-row .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--gradient-brand); display: grid; place-items: center; flex: none; }
.media-card .mc-row .ic svg { width: 20px; height: 20px; color: #fff; }
.media-card .mc-row b { color: #fff; display: block; font-size: .95rem; }
.media-card .mc-row span { color: var(--slate-400); font-size: .82rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.5vw, 28px); counter-reset: step; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 1.5rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: transform .25s ease, box-shadow .25s ease; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step .step-num {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--gradient-brand); color: #fff; box-shadow: var(--shadow-brand);
  margin-bottom: 1rem;
}
.step h4 { margin-bottom: .4rem; }
.step p { color: var(--text-muted); font-size: .92rem; }
.bg-ink .step { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.bg-ink .step p { color: var(--slate-400); }

/* ---------- Why choose / checklist ---------- */
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 28px); }
@media (max-width: 980px) { .check-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .check-grid { grid-template-columns: 1fr; } }
.check-item { display: flex; gap: .9rem; padding: 1.2rem; border-radius: var(--radius); transition: background .2s ease; }
.check-item:hover { background: var(--slate-50); }
.check-item .ci-mark { flex: none; width: 40px; height: 40px; border-radius: 12px; background: var(--gradient-brand); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-brand); }
.check-item .ci-mark svg { width: 20px; height: 20px; }
.check-item h4 { margin-bottom: .3rem; }
.check-item p { color: var(--text-muted); font-size: .93rem; }

/* ---------- Result / metric cards ---------- */
.result-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px,2.5vw,28px); }
@media (max-width: 900px) { .result-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .result-grid { grid-template-columns: 1fr; } }
.result-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 1.7rem; text-align: center; transition: transform .25s ease, border-color .25s ease, background .25s ease; backdrop-filter: blur(4px); }
.result-card:hover { transform: translateY(-6px); border-color: rgba(247,138,22,.5); background: rgba(255,255,255,.08); }
.result-card .rc-num { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.8rem); font-weight: 700; background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.result-card .rc-label { margin-top: .55rem; color: var(--slate-400); font-size: .92rem; }

/* Light context fallback for result cards */
.section:not(.bg-ink) .result-card, .section-sm:not(.bg-ink) .result-card { background:#fff; border-color: var(--border); }
.section:not(.bg-ink) .result-card .rc-label { color: var(--text-muted); }

/* ---------- Testimonials (legacy quote cards) ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 28px); }
@media (max-width: 980px) { .quote-grid { grid-template-columns: 1fr; } }
.quote-card { background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg); padding: 1.8rem; transition: transform .25s ease, box-shadow .25s ease; }
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.quote-card .stars { color: var(--amber-400); letter-spacing: 2px; margin-bottom: 1rem; }
.quote-card blockquote { font-size: 1.02rem; color: var(--ink-700); }
.quote-card .author { display: flex; align-items: center; gap: .8rem; margin-top: 1.4rem; }
.quote-card .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gradient-brand); color:#fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.quote-card .author b { display: block; color: var(--ink-900); font-size: .95rem; }
.quote-card .author span { font-size: .82rem; color: var(--text-muted); }

/* ---------- Pricing / packages ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,3vw,28px); align-items: stretch; }
@media (max-width: 980px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline:auto; } }
.price-card { display: flex; flex-direction: column; background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; position: relative; transition: transform .25s ease, box-shadow .25s ease; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: transparent; box-shadow: var(--shadow-lg); background: var(--gradient-ink); color: var(--slate-300); }
.price-card.featured .pkg-name, .price-card.featured .price { color:#fff; }
.price-card .pkg-name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--ink-900); }
.price-card .badge-pop { position:absolute; top:-12px; right:20px; background: var(--gradient-brand); color:#fff; font-size:.72rem; font-weight:700; padding:.3rem .8rem; border-radius:999px; letter-spacing:.04em; box-shadow: var(--shadow-brand); }
.price-card .price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--ink-900); margin: 1rem 0 .25rem; }
.price-card .price small { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.price-card .pkg-desc { color: var(--text-muted); font-size: .92rem; }
.price-card.featured .pkg-desc { color: var(--slate-400); }
.price-list { display: grid; gap: .65rem; margin: 1.5rem 0; }
.price-list li { display: flex; gap: .55rem; align-items: flex-start; font-size: .94rem; }
.price-list li svg { width: 18px; height: 18px; color: var(--brand-500); flex: none; margin-top: 2px; }
.price-card.featured .price-list li svg { color: var(--amber-400); }
.price-card .btn { margin-top: auto; width: 100%; }

/* ---------- Industry tiles ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px,2vw,20px); }
@media (max-width: 900px) { .ind-grid { grid-template-columns: repeat(2,1fr); } }
.ind-tile { display: flex; align-items: center; gap: .8rem; padding: 1.15rem 1.3rem; background:#fff; border:1px solid var(--border); border-radius: var(--radius); font-weight:600; font-size:.95rem; color: var(--ink-800); transition: .2s; }
.ind-tile:hover { border-color: var(--brand-300); box-shadow: var(--shadow); transform: translateY(-3px); }
.ind-tile svg { width: 24px; height: 24px; color: var(--brand-500); flex:none; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; margin-bottom: .8rem; padding-inline: 1.4rem; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item.open { border-color: var(--brand-200); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; text-align: left; padding: 1.25rem 0; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink-900); }
.faq-q .ico { flex: none; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; transition: .2s; }
.faq-q .ico svg { width: 16px; height: 16px; transition: transform .25s ease; }
.faq-item.open .faq-q .ico { background: var(--brand-500); border-color: var(--brand-500); color: #fff; }
.faq-item.open .faq-q .ico svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 0 1.4rem; color: var(--text-muted); max-width: 70ch; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: clamp(2.5rem, 6vw, 4.5rem); background: var(--gradient-ink); color: #fff; text-align: center; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 90% at 50% 0%, rgba(247,138,22,.32), transparent 60%); }
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta-band p { color: var(--slate-300); margin: 1rem auto 0; max-width: 52ch; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--gradient-ink); color: #fff; padding-block: clamp(64px, 9vw, 118px) clamp(56px, 7vw, 88px); }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 70% at 85% 0%, rgba(247,138,22,.26), transparent 60%), radial-gradient(40% 60% at 0% 100%, rgba(46,107,255,.15), transparent 60%); }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(90% 90% at 70% 10%, #000 30%, transparent 85%);
  mask-image: radial-gradient(90% 90% at 70% 10%, #000 30%, transparent 85%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero p { color: var(--slate-300); margin-top: 1.25rem; max-width: 60ch; font-size: 1.12rem; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .88rem; color: var(--slate-400); margin-bottom: 1.5rem; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info .ci-card { display: flex; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.contact-info .ci-card .ic { flex: none; width: 48px; height: 48px; border-radius: 13px; background: linear-gradient(135deg, var(--brand-50), var(--brand-100)); color: var(--brand-600); display: grid; place-items: center; }
.contact-info .ci-card .ic svg { width: 22px; height: 22px; }
.contact-info .ci-card b { display: block; color: var(--ink-900); }
.contact-info .ci-card a, .contact-info .ci-card span { color: var(--text-muted); }
.contact-info .ci-card a:hover { color: var(--brand-600); }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.map-embed iframe { display: block; width: 100%; height: 260px; border: 0; }

.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .45rem; color: var(--ink-800); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--border); border-radius: 12px;
  background: var(--slate-50); transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand-400); background: #fff; box-shadow: 0 0 0 4px rgba(247,138,22,.14); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .85rem; color: var(--text-muted); margin-top: .5rem; }
.form-success { display: none; padding: 1rem 1.2rem; border-radius: 12px; background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; font-weight: 500; margin-bottom: 1.2rem; }
.form-success.show { display: block; }

/* ---------- Audit strip ---------- */
.audit-strip { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:1.5rem; padding: clamp(1.5rem,3vw,2rem) clamp(1.5rem,4vw,2.5rem); border-radius: var(--radius-lg); background: var(--gradient-brand); color:#fff; box-shadow: var(--shadow-brand); }
.audit-strip h3 { color:#fff; font-size: clamp(1.2rem,2.2vw,1.6rem); max-width: 30ch; }
.audit-strip p { color: rgba(255,255,255,.92); margin-top:.35rem; }
.audit-strip .btn { background:#fff; color: var(--brand-600); border:none; white-space:nowrap; }
.audit-strip .btn:hover { background: var(--ink-900); color:#fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-950); color: var(--slate-400); padding-block: clamp(48px, 7vw, 80px) 2rem; border-top: 1px solid rgba(255,255,255,.06); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(2rem, 4vw, 3rem); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand p { color: var(--slate-400); max-width: 34ch; font-size: .95rem; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.4rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; color: var(--slate-300); transition: .2s; }
.footer-social a:hover { background: var(--brand-500); border-color: var(--brand-500); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h5 { color: #fff; font-family: var(--font-display); font-size: .92rem; letter-spacing: .05em; margin-bottom: 1.1rem; text-transform: uppercase; }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a { color: var(--slate-400); font-size: .95rem; transition: color .15s ease; }
.footer-col a:hover { color: var(--brand-400); }
.footer-bottom { margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .88rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s cubic-bezier(.22,.61,.36,1), transform .65s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-chip { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Legacy support (glass panel, orbit — used by older pages) ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg-soft); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 85% -5%, rgba(247,138,22,.14), transparent 60%),
    radial-gradient(45% 45% at 5% 10%, rgba(255,194,75,.12), transparent 60%);
  pointer-events: none;
}
.hero .hero-inner { position: relative; }
.hero-copy { position: relative; }
.hero-visual { position: relative; }
.glass-panel {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.orbit { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.orbit-core { width: 42%; aspect-ratio: 1; border-radius: 50%; background: var(--gradient-brand); display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-brand); font-family: var(--font-display); font-weight: 700; }
.orbit-ring { position: absolute; border: 1.5px dashed var(--slate-300); border-radius: 50%; }
.orbit-ring.r1 { inset: 22%; animation: spin 18s linear infinite; }
.orbit-ring.r2 { inset: 6%; animation: spin 30s linear infinite reverse; }
.orbit-chip { position: absolute; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: .5rem .8rem; font-size: .8rem; font-weight: 600; box-shadow: var(--shadow); display: flex; align-items: center; gap: .1rem; color: var(--ink-800); }
.orbit-chip i { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-500); display: inline-block; }
.orbit-chip.c1 { top: 6%; left: 8%; }
.orbit-chip.c2 { top: 40%; right: -4%; }
.orbit-chip.c3 { bottom: 8%; left: 18%; }
@keyframes spin { to { transform: rotate(360deg); } }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(1.5rem, 5vw, 3.5rem); }
.logo-row span { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--slate-400); letter-spacing: -.01em; transition: color .2s ease; }
.logo-row span:hover { color: var(--ink-700); }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.hidden { display: none; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-1 { gap: .5rem; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink-900); color: #fff; padding: .75rem 1rem; border-radius: 0 0 8px 0; z-index: 100; }
.skip-link:focus { left: 0; }

/* Header brand tagline */
.brand-wrap { display: inline-flex; align-items: center; }
.brand-tagline { margin-left: .4rem; padding-left: .4rem; border-left: 1px solid var(--border); font-family: var(--font-display); font-weight: 700; font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-700); line-height: 1.2; white-space: nowrap; }
@media (max-width: 1200px) { .brand-tagline { display: none; } }
