/* =============================================================
   VELOCISIT — premium design system (v2 redesign)
   Light, editorial, image-rich. Indigo / violet / cyan.
   Display: Sora · Body: Inter
   ============================================================= */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;450;500;600;700&display=swap');

:root {
  --bg: #ffffff;
  --bg-soft: #f5f6fb;
  --bg-tint: #eef0fc;
  --ink: #0c1124;
  --ink-2: #2c3346;
  --muted: #6b7286;
  --border: rgba(12, 17, 36, 0.09);
  --border-2: rgba(12, 17, 36, 0.14);

  --primary: #4f46e5;
  --primary-d: #4338ca;
  --violet: #7c3aed;
  --cyan: #06b6d4;

  --grad: linear-gradient(125deg, #4f46e5 0%, #7c3aed 52%, #06b6d4 110%);
  --grad-soft: linear-gradient(125deg, #6366f1, #a855f7);
  --grad-text: linear-gradient(120deg, #4f46e5, #7c3aed 60%, #0ea5b7);

  --shadow-sm: 0 2px 10px rgba(12, 17, 36, 0.06);
  --shadow: 0 18px 44px -22px rgba(20, 18, 70, 0.28);
  --shadow-lg: 0 50px 90px -40px rgba(45, 35, 130, 0.45);

  --radius: 16px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; }
button { font-family: inherit; }

/* ---------- icon ---------- */
.app-icon { display: inline-flex; line-height: 0; }
.app-icon svg { width: 1em; height: 1em; display: block; }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 5vw, 2.6rem);
}
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
@media (max-width: 600px) { .section--tight { padding: 0 20px; } }
.section--soft { background: var(--bg-soft); }
main { display: block; flex: 1; }

/* ---------- typography utils ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--bg-tint);
  border: 1px solid rgba(79, 70, 229, 0.16);
  color: var(--primary-d);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow .app-icon { font-size: 0.95rem; color: var(--violet); }
.eyebrow--light {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.section-title {
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  margin: 1rem 0 0;
  letter-spacing: -0.03em;
}
.section-lead {
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  max-width: 44rem;
  line-height: 1.7;
  margin-top: 1.1rem;
}
.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head { margin-bottom: clamp(2.4rem, 5vw, 3.6rem); max-width: 60rem; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head--center .section-lead { margin-inline: auto; }
.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: none;
}

/* ---------- grids ---------- */
.grid { display: grid; gap: clamp(1.1rem, 2.2vw, 1.6rem); }
.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: 940px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.55rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn .app-icon { font-size: 1.05em; transition: transform 0.25s var(--ease); }
.btn:hover .app-icon { transform: translateX(3px); }
.btn--solid {
  background: var(--grad);
  background-size: 140% 140%;
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(79, 70, 229, 0.7);
}
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -16px rgba(124, 58, 237, 0.65); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary-d); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--primary-d); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(0, 0, 0, 0.3); }
.btn--outline-light { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }
.btn--lg { padding: 1.02rem 1.9rem; font-size: 1.02rem; }

/* ---------- glass / image frame ---------- */
.glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}
.shot { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(79, 70, 229, 0.28), rgba(6, 182, 212, 0.12) 60%, transparent);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.shot--ring { box-shadow: var(--shadow-lg); border: 1px solid rgba(255, 255, 255, 0.6); }

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- a11y ---------- */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -60px; z-index: 200;
  background: var(--primary); color: #fff; padding: 0.7rem 1.2rem;
  border-radius: 0 0 12px 12px; font-weight: 600; transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 6px; }
::selection { background: var(--violet); color: #fff; }

/* =============================================================
   NAV
   ============================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease);
}
/* Persistent blur layer — only its opacity animates, so the blur never
   flickers in/out on scroll (backdrop-filter itself can't be transitioned). */
.nav::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.nav.is-scrolled::before { opacity: 1; }
.nav.is-scrolled { border-bottom-color: var(--border); }
.nav__inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  column-gap: clamp(1.6rem, 3vw, 2.6rem); height: 78px;
}
.nav__brand { display: flex; align-items: center; justify-content: center; gap: 0.6rem; color: var(--ink); }
.nav__logo { height: 38px; width: auto; display: block; }
.nav__right { display: flex; align-items: center; gap: 1.8rem; justify-self: stretch; }
.nav__mark {
  width: 34px; height: 34px; border-radius: 11px; background: var(--grad);
  box-shadow: 0 8px 18px -8px rgba(79, 70, 229, 0.9); position: relative;
}
.nav__mark::after { content: ''; position: absolute; inset: 9px; border-radius: 5px; background: #fff; }
.nav__name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.03em; }
.nav__name-accent { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav__links { display: flex; align-items: center; gap: 1.8rem; }
.nav__links--left { justify-self: end; }
.nav__links--right { justify-self: start; }
.nav__links a {
  position: relative; color: var(--ink-2); font-weight: 500; font-size: 0.95rem;
  padding: 0.3rem 0; transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -3px; width: 100%; height: 2px;
  border-radius: 2px; background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__cta { flex-shrink: 0; margin-left: auto; }
.nav__burger {
  display: none; align-items: center; justify-content: center; width: 46px; height: 46px;
  border-radius: 13px; border: 1px solid var(--border-2); background: #fff; color: var(--ink);
  font-size: 1.5rem; cursor: pointer; box-shadow: var(--shadow-sm);
}
.nav__mobile { display: none; }
.nav__backdrop { display: none; }

@media (max-width: 960px) {
  .nav__inner { display: flex; justify-content: space-between; }
  .nav__links, .nav__right { display: none; }
  .nav__brand { justify-content: flex-start; margin-right: auto; }
  .nav__burger { display: inline-flex; }
  .nav.is-scrolled::before, .nav.is-open::before { opacity: 1; background: rgba(255, 255, 255, 0.97); }
  .nav__mobile {
    display: flex; flex-direction: column; gap: 1.2rem;
    padding: 0 clamp(1.2rem, 5vw, 2rem); background: #fff;
    border-top: 0 solid var(--border);
    max-height: 0; overflow: hidden; transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease), border-width 0.4s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav__mobile.is-open {
    max-height: 90vh; padding-top: 1.4rem; padding-bottom: 2.2rem;
    border-top-width: 1px; opacity: 1; transform: translateY(0); pointer-events: auto;
  }
  .nav__mobile-links { display: flex; flex-direction: column; }
  .nav__mobile-links a {
    padding: 0.9rem 0; font-size: 1.12rem; font-weight: 600; color: var(--ink);
    border-bottom: 1px solid var(--border);
  }
  .nav__mobile-links a.is-active { color: var(--primary-d); }
  .nav__backdrop {
    position: fixed; inset: 0; z-index: 90; background: rgba(12, 17, 36, 0.4);
    opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease);
  }
  .nav__backdrop.is-open { display: block; opacity: 1; pointer-events: auto; }
}

/* =============================================================
   HERO
   ============================================================= */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 6vw, 5.5rem) clamp(3rem, 7vw, 6rem); }
.hero__mesh {
  position: absolute; inset: -10% -10% auto -10%; height: 680px; z-index: -1; filter: blur(10px);
  background:
    radial-gradient(40% 50% at 18% 20%, rgba(79, 70, 229, 0.20), transparent 70%),
    radial-gradient(38% 45% at 82% 12%, rgba(124, 58, 237, 0.18), transparent 70%),
    radial-gradient(45% 50% at 60% 42%, rgba(6, 182, 212, 0.14), transparent 70%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(12, 17, 36, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 17, 36, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000, transparent 75%);
}
.hero__inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero__copy { max-width: 36rem; }
.hero__headline {
  font-size: clamp(2.6rem, 5.6vw, 4.4rem); line-height: 1.02; letter-spacing: -0.035em; margin-top: 1.4rem;
}
.hero__sub { margin-top: 1.4rem; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.65; }
.hero__actions { margin-top: 2rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hero__trust { margin-top: 1.6rem; display: flex; align-items: center; gap: 0.6rem; color: var(--muted); font-size: 0.9rem; }
.hero__trust .app-icon { color: #16a34a; }

.hero__visual { position: relative; }
.hero__shot { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3.4; }
.hero__float {
  position: absolute; display: flex; align-items: center; gap: 0.7rem;
  padding: 0.8rem 1rem; border-radius: 16px;
}
.hero__float .fic {
  width: 38px; height: 38px; border-radius: 11px; display: inline-flex; align-items: center;
  justify-content: center; color: #fff; background: var(--grad); font-size: 1.1rem; flex-shrink: 0;
}
.hero__float b { font-family: var(--font-display); font-size: 0.95rem; display: block; line-height: 1.1; }
.hero__float span { font-size: 0.78rem; color: var(--muted); }
.hero__float--1 { top: 8%; left: -6%; }
.hero__float--2 { bottom: 10%; right: -5%; }
.hero__float--3 { bottom: -4%; left: 12%; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__copy { max-width: none; }
  .hero__visual { margin-top: 1rem; }
  .hero__float--1 { left: 2%; }
  .hero__float--2 { right: 2%; }
}

/* =============================================================
   MARQUEE / LOGOS
   ============================================================= */
.logos { text-align: center; }
.logos__label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }
.logos__marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.logos__track { display: flex; gap: clamp(2rem, 6vw, 4.5rem); width: max-content; animation: logo-scroll 30s linear infinite; }
.logos__item { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem, 2.6vw, 1.7rem); letter-spacing: -0.03em; color: var(--ink); opacity: 0.32; white-space: nowrap; transition: opacity 0.3s var(--ease); }
.logos__item:hover { opacity: 0.7; }
@keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logos__track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* =============================================================
   BENTO (services / features)
   ============================================================= */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.4rem); grid-auto-rows: 1fr; }
.bento__item {
  position: relative; overflow: hidden; padding: 1.9rem; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex; flex-direction: column;
}
.bento__item:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(79, 70, 229, 0.3); }
.bento__item--wide { grid-column: span 2; }
.bento__item--feature {
  grid-column: span 2; grid-row: span 2; color: #fff; border: none;
  background: var(--grad); background-size: 160% 160%; justify-content: flex-end; min-height: 320px;
}
.bento__item--feature::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(60% 60% at 80% 10%, rgba(255, 255, 255, 0.22), transparent 70%);
}
.bento__item--feature > * { position: relative; z-index: 1; }
.bento__item--image { padding: 0; min-height: 240px; }
.bento__ic {
  width: 3rem; padding:10px; height: 3rem; border-radius: 14px; display: inline-flex; align-items: center;
  justify-content: center; font-size: 1.5rem; color: #fff; background: var(--grad);
  box-shadow: 0 10px 22px -12px rgba(79, 70, 229, 0.8); margin-bottom: 1.1rem;
}
.bento__item--feature .bento__ic { background: rgba(255, 255, 255, 0.16); box-shadow: none; }
.bento__title { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; }
.bento__item--feature .bento__title { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.bento__desc { color: var(--muted); font-size: 0.96rem; line-height: 1.6; }
.bento__item--feature .bento__desc { color: rgba(255, 255, 255, 0.85); font-size: 1.02rem; }
.bento__link { margin-top: auto; padding-top: 1.1rem; display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.9rem; color: var(--primary-d); }
.bento__item--feature .bento__link { color: #fff; }
.bento__link .app-icon { transition: transform 0.25s var(--ease); }
.bento__item:hover .bento__link .app-icon { transform: translateX(4px); }
.bento__shot { position: absolute; inset: 0; }
.bento__shot img { width: 100%; height: 100%; object-fit: cover; }
.bento__shot::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(12, 17, 36, 0.78)); }
.bento__cap { position: absolute; left: 1.4rem; right: 1.4rem; bottom: 1.3rem; z-index: 2; color: #fff; }
.bento__cap b { font-family: var(--font-display); font-size: 1.1rem; }
.bento__cap span { display: block; font-size: 0.85rem; color: rgba(255, 255, 255, 0.8); margin-top: 0.2rem; }
@media (max-width: 940px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__item--feature { grid-row: span 1; min-height: 260px; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .bento__item--wide, .bento__item--feature { grid-column: span 1; }
}

/* =============================================================
   FEATURE SPLIT (image + text)
   ============================================================= */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feature--flip .feature__media { order: 2; }
.feature__media .shot { aspect-ratio: 5 / 4; box-shadow: var(--shadow-lg); }
.feature__list { list-style: none; display: grid; gap: 1.1rem; margin-top: 1.6rem; }
.feature__list li { display: flex; gap: 0.8rem; align-items: flex-start; }
.feature__list .ck {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 8px; display: inline-flex; align-items: center;
  justify-content: center; color: #fff; background: var(--grad); font-size: 0.9rem; margin-top: 0.1rem;
}
.feature__list strong { display: block; font-weight: 600; }
.feature__list span { color: var(--muted); font-size: 0.94rem; }
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: 0; }
}

/* =============================================================
   STATS BAND
   ============================================================= */
.statband {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
  padding: clamp(1.8rem, 4vw, 2.8rem); border-radius: var(--radius-xl);
  background: var(--grad); background-size: 160% 160%; color: #fff; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.statband::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 80% at 85% 0%, rgba(255, 255, 255, 0.18), transparent 70%); }
.stat { text-align: center; position: relative; z-index: 1; }
.stat__value { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4.5vw, 3.2rem); line-height: 1; letter-spacing: -0.03em; }
.stat__label { margin-top: 0.5rem; font-size: 0.92rem; color: rgba(255, 255, 255, 0.82); }
.statband .stat__value { color: #fff; }
@media (max-width: 720px) { .statband { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1rem; } }

/* =============================================================
   SERVICE CARD (services page, detailed)
   ============================================================= */
.service-card {
  position: relative; height: 100%; padding: 2rem 1.9rem; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(79, 70, 229, 0.3); }
.service-card__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 3.4rem; height: 3.4rem;
  border-radius: 15px; font-size: 1.7rem; color: #fff; background: var(--grad);
  box-shadow: 0 12px 24px -12px rgba(79, 70, 229, 0.8); margin-bottom: 1.2rem;
}
.service-card__title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.55rem; }
.service-card__desc { color: var(--muted); font-size: 0.97rem; line-height: 1.6; }
.service-card__list { list-style: none; margin: 1.4rem 0 0; padding: 1.4rem 0 0; border-top: 1px solid var(--border); display: grid; gap: 0.7rem; }
.service-card__list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--ink-2); }
.service-card__list .app-icon { color: var(--violet); font-size: 1.05rem; margin-top: 0.1rem; flex-shrink: 0; }

/* =============================================================
   WHY / VALUE CARDS
   ============================================================= */
.why-card { height: 100%; padding: 1.8rem 1.6rem; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why-card__icon { width: 2.9rem; height: 2.9rem; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #fff; background: var(--grad); margin-bottom: 1.1rem; box-shadow: 0 10px 22px -12px rgba(79, 70, 229, 0.7); }
.why-card__title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.why-card__desc { color: var(--muted); font-size: 0.94rem; line-height: 1.6; }

/* =============================================================
   CASE / WORK CARDS
   ============================================================= */
.case-card {
  display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden;
  background: #fff; border: 1px solid var(--border); color: inherit; height: 100%; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.case-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(124, 58, 237, 0.35); }
.case-card:hover .case-card__media img { transform: scale(1.07); }
.case-card:hover .case-card__overlay { opacity: 1; }
.case-card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.case-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.case-card__metric { position: absolute; left: 1rem; bottom: 1rem; z-index: 2; display: flex; flex-direction: column; padding: 0.6rem 0.9rem; border-radius: 13px; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.7); box-shadow: var(--shadow-sm); }
.case-card__metric-value { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.case-card__metric-label { font-size: 0.72rem; color: var(--ink-2); margin-top: 0.2rem; }
.case-card__overlay { position: absolute; inset: 0; z-index: 1; display: flex; align-items: flex-start; justify-content: flex-end; padding: 1rem; background: linear-gradient(160deg, rgba(79, 70, 229, 0.4), transparent 60%); opacity: 0; transition: opacity 0.4s var(--ease); }
.case-card__view { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; font-weight: 600; color: var(--primary-d); background: #fff; padding: 0.45rem 0.8rem; border-radius: 999px; box-shadow: var(--shadow-sm); }
.case-card__body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.case-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.case-card__tags .tag, .tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--primary-d); background: var(--bg-tint); padding: 0.25rem 0.65rem; border-radius: 999px; }
.case-card__title { font-size: 1.15rem; font-weight: 600; line-height: 1.3; }
.case-card__excerpt { color: var(--muted); font-size: 0.92rem; line-height: 1.55; margin-top: auto; }

/* =============================================================
   TESTIMONIAL CAROUSEL
   ============================================================= */
.carousel { border-radius: var(--radius-lg); }
.carousel__viewport { overflow: hidden; }
.carousel__track { display: flex; transition: transform 0.6s var(--ease); }
.carousel__slide {
  flex: 0 0 100%; min-width: 100%; margin: 0; padding: clamp(2rem, 4vw, 3.2rem);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 1.6rem; box-shadow: var(--shadow-sm);
}
.carousel__quote { margin: 0; font-family: var(--font-display); font-size: clamp(1.25rem, 2.6vw, 1.8rem); line-height: 1.4; font-weight: 500; letter-spacing: -0.02em; }
.carousel__person { display: flex; align-items: center; gap: 0.9rem; }
.carousel__person img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bg-tint); }
.carousel__name { display: block; font-weight: 600; }
.carousel__role { display: block; font-size: 0.88rem; color: var(--muted); }
.carousel__controls { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 1.6rem; }
.carousel__arrow { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border-2); background: #fff; color: var(--ink); font-size: 1.1rem; cursor: pointer; box-shadow: var(--shadow-sm); transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease); }
.carousel__arrow:hover { background: var(--grad); color: #fff; transform: scale(1.08); border-color: transparent; }
.carousel__dots { display: flex; gap: 0.5rem; }
.carousel__dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--border-2); cursor: pointer; padding: 0; transition: width 0.3s var(--ease), background 0.3s var(--ease); }
.carousel__dot.is-active { width: 28px; border-radius: 999px; background: var(--grad); }

/* =============================================================
   INDUSTRIES
   ============================================================= */
.industries { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.industry { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.75rem 1.3rem; border-radius: 999px; border: 1px solid var(--border); background: #fff; font-weight: 600; font-size: 0.95rem; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), border-color 0.25s var(--ease); }
.industry:hover { transform: translateY(-3px); border-color: var(--primary); }
.industry .app-icon { font-size: 0.7rem; color: var(--violet); }

/* =============================================================
   FAQ
   ============================================================= */
.faq { max-width: 840px; margin-inline: auto; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; margin-bottom: 0.9rem; overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color 0.3s var(--ease); }
.faq__item.is-open { border-color: rgba(79, 70, 229, 0.4); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; background: none; border: none; color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; text-align: left; cursor: pointer; }
.faq__icon { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 9px; border: 1px solid var(--border-2); color: var(--primary-d); font-size: 1.35rem; line-height: 1; transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease); }
.faq__item.is-open .faq__icon { transform: rotate(45deg); background: var(--grad); color: #fff; border-color: transparent; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__item.is-open .faq__a { max-height: 340px; }
.faq__a p { padding: 0 1.5rem 1.35rem; color: var(--muted); line-height: 1.7; font-size: 0.97rem; }
.faq__foot { text-align: center; margin-top: 1.8rem; color: var(--muted); }
.faq__foot a { color: var(--primary-d); font-weight: 600; }
.faq__foot a:hover { text-decoration: underline; }

/* =============================================================
   PRICING
   ============================================================= */
.pricing { align-items: stretch; padding-top: 0.9rem; }
.price-card { position: relative; display: flex; flex-direction: column; height: 100%; padding: 2.2rem 1.9rem; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: visible; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(79, 70, 229, 0.3); }
.price-card--featured { border: none; background: var(--grad); background-size: 150% 150%; color: #fff; box-shadow: var(--shadow-lg); }
.price-card--featured .price-card__name, .price-card--featured .price-card__period, .price-card--featured .price-card__note { color: rgba(255, 255, 255, 0.85); }
.price-card--featured .price-card__for { color: #fff; border-bottom-color: rgba(255, 255, 255, 0.25); }
.price-card--featured .price-card__list li { color: #fff; }
.price-card--featured .price-card__list .app-icon { color: #fff; }
.price-card__badge { position: absolute; top: -0.8rem; left: 50%; transform: translateX(-50%); padding: 0.35rem 0.9rem; border-radius: 999px; background: #000; color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; box-shadow: var(--shadow); }
.price-card__name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--primary-d); letter-spacing: 0.01em; }
.price-card__price { display: flex; align-items: baseline; gap: 0.4rem; margin: 0.9rem 0 0.15rem; }
.price-card__amount { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; line-height: 1; letter-spacing: -0.03em; }
.price-card__period { color: var(--muted); font-size: 0.9rem; }
.price-card__note { color: var(--muted); font-size: 0.85rem; margin-bottom: 1.3rem; }
.price-card__for { color: var(--ink-2); font-size: 0.95rem; line-height: 1.55; padding-bottom: 1.3rem; margin-bottom: 1.3rem; border-bottom: 1px solid var(--border); }
.price-card__list { list-style: none; display: grid; gap: 0.8rem; margin-bottom: 1.8rem; }
.price-card__list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--ink-2); line-height: 1.5; }
.price-card__list .app-icon { color: var(--violet); font-size: 1.05rem; margin-top: 0.1rem; flex-shrink: 0; }
.price-card .btn { margin-top: auto; width: 100%; }
.price-card--featured .btn--solid { background: #fff; color: var(--primary-d); }
.price-foot { text-align: center; color: var(--muted); margin-top: 2.4rem; font-size: 0.95rem; }
.price-foot a { color: var(--primary-d); font-weight: 600; }
.price-foot a:hover { text-decoration: underline; }

/* =============================================================
   PAGE HERO (interior)
   ============================================================= */
.page-hero { position: relative; padding-block: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 3vw, 2.5rem); text-align: center; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 760px; height: 420px; z-index: -1; background: radial-gradient(ellipse, rgba(79, 70, 229, 0.18), transparent 70%); filter: blur(30px); }
.page-hero__title { font-size: clamp(2.3rem, 5.5vw, 4rem); margin: 1rem auto 0; max-width: 20ch; letter-spacing: -0.035em; }
.page-hero__lead { margin: 1.3rem auto 0; }
.section--top { padding-top: clamp(2rem, 4vw, 3rem); }
.section--flush-b { padding-bottom: 0; }

/* =============================================================
   TOOLS PAGE (showcase grid)
   ============================================================= */
.toolcard { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.toolcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.toolcard__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.toolcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.toolcard:hover .toolcard__media img { transform: scale(1.05); }
.toolcard__badge { position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2; }
.toolcard__body { padding: 1.4rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.toolcard__title { font-size: 1.15rem; font-weight: 600; }
.toolcard__desc { color: var(--muted); font-size: 0.93rem; line-height: 1.6; }
.toolcard__link { margin-top: auto; padding-top: 0.8rem; display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.88rem; color: var(--primary-d); }
.toolcard__link .app-icon { transition: transform 0.25s var(--ease); }
.toolcard:hover .toolcard__link .app-icon { transform: translateX(4px); }

/* =============================================================
   CASE STUDY DETAIL
   ============================================================= */
.cs__hero { padding-block: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem); text-align: center; }
.cs__back { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--muted); font-weight: 500; margin-bottom: 1.6rem; transition: color 0.25s var(--ease); }
.cs__back:hover { color: var(--ink); }
.cs__back-arrow { display: inline-flex; transform: rotate(180deg); }
.cs__tags { display: flex; gap: 0.4rem; justify-content: center; margin-bottom: 1rem; }
.cs__title { font-size: clamp(2.1rem, 5.2vw, 3.4rem); max-width: 22ch; margin-inline: auto; letter-spacing: -0.035em; }
.cs__client { margin-top: 0.8rem; color: var(--violet); font-weight: 600; }
.cs__media .shot { box-shadow: var(--shadow-lg); aspect-ratio: 16 / 8; }
.cs__body { display: grid; grid-template-columns: 1.7fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.cs__main { display: grid; gap: 2.4rem; }
.cs__block h2 { font-size: 1.4rem; margin-bottom: 0.7rem; }
.cs__block p { color: var(--muted); line-height: 1.75; font-size: 1.05rem; }
.cs__results { position: sticky; top: 100px; padding: 2rem; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.cs__results h2 { font-size: 1.2rem; margin-bottom: 1.4rem; }
.cs__results ul { list-style: none; display: grid; gap: 1.3rem; margin-bottom: 1.8rem; }
.cs__results li { display: flex; flex-direction: column; padding-bottom: 1.3rem; border-bottom: 1px solid var(--border); }
.cs__results li:last-child { border-bottom: none; padding-bottom: 0; }
.cs__result-value { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cs__result-label { margin-top: 0.3rem; color: var(--muted); font-size: 0.92rem; }
.cs__next { margin-top: 1rem; }
.cs__next-link { display: flex; flex-direction: column; gap: 0.4rem; padding: 1.8rem 2rem; border-radius: var(--radius-lg); border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-sm); transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.cs__next-link:hover { border-color: var(--primary); transform: translateY(-3px); }
.cs__next-link:hover .app-icon { transform: translateX(4px); }
.cs__next-label { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.cs__next-title { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; }
.cs__next-title .app-icon { transition: transform 0.3s var(--ease); color: var(--violet); }
@media (max-width: 880px) { .cs__body { grid-template-columns: 1fr; } .cs__results { position: static; } }

/* =============================================================
   ABOUT
   ============================================================= */
.about-story { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.about-story__text p { color: var(--muted); line-height: 1.8; font-size: 1.05rem; margin-bottom: 1.2rem; }
.about-mission { padding: 2rem; border-radius: var(--radius-lg); background: var(--grad); background-size: 150% 150%; color: #fff; position: sticky; top: 100px; box-shadow: var(--shadow-lg); }
.about-mission__statement { margin-top: 1rem; font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; line-height: 1.45; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; padding: clamp(1.8rem, 4vw, 2.8rem); border-radius: var(--radius-xl); background: var(--grad); background-size: 160% 160%; color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.about-stats::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 80% at 85% 0%, rgba(255, 255, 255, 0.18), transparent 70%); }
.about-stats .stat { position: relative; z-index: 1; }
.about-stats .stat__value { color: #fff; }
.timeline { list-style: none; position: relative; max-width: 760px; margin-inline: auto; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 2px; background: var(--grad); }
.timeline__item { position: relative; padding-bottom: 2.4rem; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__index { position: absolute; left: -2.5rem; top: 0; transform: translateX(-3px); display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 2px solid var(--primary); font-size: 0.72rem; font-weight: 700; font-family: var(--font-display); color: var(--primary-d); }
.timeline__content h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.timeline__content p { color: var(--muted); line-height: 1.6; }
@media (max-width: 880px) { .about-story { grid-template-columns: 1fr; } .about-mission { position: static; } .about-stats { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1rem; } }

/* =============================================================
   CONTACT
   ============================================================= */
.contact { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__form-wrap { padding: clamp(1.6rem, 4vw, 2.6rem); border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact__form { display: grid; gap: 1.3rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-size: 0.88rem; font-weight: 600; }
.field input, .field select, .field textarea { width: 100%; padding: 0.85rem 1rem; border-radius: 12px; border: 1px solid var(--border-2); background: var(--bg-soft); color: var(--ink); font: inherit; transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.18); }
.field input.is-invalid, .field select.is-invalid, .field textarea.is-invalid { border-color: #e5484d; box-shadow: 0 0 0 3px rgba(229, 72, 77, 0.15); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7286' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }
.field textarea { resize: vertical; }
.field__error { font-size: 0.8rem; color: #e5484d; }
.contact__info { padding-top: 0.5rem; }
.contact__info h2 { font-size: 1.4rem; margin-bottom: 1.6rem; }
.contact__list { list-style: none; display: grid; gap: 1.4rem; margin-bottom: 2.2rem; }
.contact__list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact__list a, .contact__list span { color: var(--muted); }
.contact__list a:hover { color: var(--primary-d); }
.contact__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: var(--grad); color: #fff; font-size: 1.2rem; }
.contact__label { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
.contact__list div span:not(.contact__label) { color: var(--ink); }
.contact__socials .contact__label { margin-bottom: 0.7rem; }
.contact__social-links { display: flex; gap: 0.6rem; }
.contact__social-links a { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border-2); color: var(--ink); font-size: 1.2rem; background: #fff; transition: all 0.3s var(--ease); }
.contact__social-links a:hover { background: var(--grad); color: #fff; transform: translateY(-3px); border-color: transparent; }
@media (max-width: 880px) { .contact { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

/* =============================================================
   CTA BAND
   ============================================================= */
.cta-band { position: relative; overflow: hidden; margin-top: clamp(3.5rem, 8vw, 7rem); border-radius: var(--radius-xl); background: var(--grad); background-size: 160% 160%; color: #fff; box-shadow: var(--shadow-lg); }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 90% at 85% 0%, rgba(255, 255, 255, 0.2), transparent 70%); }
.cta-band__inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(2.4rem, 5vw, 4rem); flex-wrap: wrap; }
.cta-band__copy { max-width: 40rem; }
.cta-band__heading { font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.1; margin: 0.6rem 0 0.8rem; letter-spacing: -0.03em; }
.cta-band__text { color: rgba(255, 255, 255, 0.85); font-size: 1.05rem; line-height: 1.6; max-width: 34rem; }
.cta-band__blob { display: none; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer { margin-top: clamp(4rem, 9vw, 7rem); padding-top: clamp(3rem, 6vw, 5rem); background: var(--bg-soft); border-top: 1px solid var(--border); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.6fr; gap: 2.4rem; padding-bottom: 3rem; }
.footer h3 { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.2rem; }
.footer__logo { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--ink); letter-spacing: -0.03em; }
.footer__logo-img { height: 40px; width: auto; display: block; }
.footer__mark { width: 28px; height: 28px; border-radius: 9px; background: var(--grad); }
.footer__accent { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer__tagline { margin: 1rem 0 1.4rem; color: var(--muted); max-width: 22rem; line-height: 1.6; }
.footer__socials { display: flex; gap: 0.7rem; list-style: none; }
.footer__socials a { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border-2); color: var(--muted); font-size: 1.2rem; background: #fff; transition: all 0.3s var(--ease); }
.footer__socials a:hover { background: var(--grad); color: #fff; transform: translateY(-3px); border-color: transparent; }
.footer__nav ul, .footer__contact ul { list-style: none; display: grid; gap: 0.8rem; }
.footer__nav a, .footer__contact a { color: var(--muted); transition: color 0.25s var(--ease); }
.footer__nav a:hover, .footer__contact a:hover { color: var(--primary-d); }
.footer__contact li { display: flex; align-items: flex-start; gap: 0.6rem; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
.footer__contact li .app-icon { color: var(--primary); font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }
.footer__newsletter p { color: var(--muted); line-height: 1.6; margin-bottom: 1.1rem; font-size: 0.95rem; }
.footer__form { display: flex; gap: 0.5rem; }
.footer__form input { flex: 1; min-width: 0; padding: 0.8rem 1rem; border-radius: 12px; border: 1px solid var(--border-2); background: #fff; color: var(--ink); font: inherit; }
.footer__form input::placeholder { color: var(--muted); }
.footer__form input:focus { outline: none; border-color: var(--primary); }
.footer__form .btn { padding: 0.7rem 1rem; font-size: 1.1rem; }
.footer__success { margin-top: 0.8rem; color: var(--primary-d); font-weight: 600; font-size: 0.9rem; }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.6rem 0; border-top: 1px solid var(--border); color: var(--muted); font-size: 0.85rem; }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }

/* =============================================================
   TOAST
   ============================================================= */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(20px); z-index: 300; display: flex; align-items: center; gap: 0.7rem; padding: 1rem 1.4rem; border-radius: 14px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-lg); color: var(--ink); font-weight: 500; opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
.toast .app-icon { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: var(--grad); color: #fff; font-size: 0.9rem; }
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =============================================================
   WORK FILTERS + case media image fallback (v2)
   ============================================================= */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: clamp(2rem, 4vw, 3rem); justify-content: center; }
.filters__btn { padding: 0.55rem 1.15rem; border-radius: 999px; border: 1px solid var(--border-2); background: #fff; color: var(--muted); font-family: var(--font-display); font-weight: 500; font-size: 0.92rem; cursor: pointer; box-shadow: var(--shadow-sm); transition: all 0.25s var(--ease); }
.filters__btn:hover { color: var(--ink); border-color: var(--primary); }
.filters__btn.is-active { color: #fff; background: var(--grad); border-color: transparent; }
.work-empty { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 3rem 0; }

.cs__media img { width: 100%; border-radius: var(--radius-xl); border: 1px solid var(--border); aspect-ratio: 16 / 8; object-fit: cover; box-shadow: var(--shadow-lg); }

/* CTA band: solid buttons render as white-on-gradient */
.cta-band .btn--solid { background: #fff; color: var(--primary-d); box-shadow: 0 14px 30px -16px rgba(0,0,0,.35); }
.cta-band .btn--solid:hover { transform: translateY(-2px); box-shadow: 0 20px 36px -16px rgba(0,0,0,.4); }

/* =============================================================
   IMAGE BANNERS (interior page headers)
   ============================================================= */
.page-hero--banner, .cs__hero--banner {
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.page-hero--banner { padding-block: clamp(4.5rem, 10vw, 7.5rem) clamp(2.5rem, 5vw, 3.5rem); }
.cs__hero--banner { padding-block: clamp(4rem, 8vw, 6rem) clamp(2.5rem, 5vw, 3.5rem); }
.page-hero--banner::before, .cs__hero--banner::before {
  content: ''; position: absolute; inset: 0; top: 0; left: 0; width: 100%; height: 100%;
  transform: none; filter: none; border-radius: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(67, 56, 202, 0.93), rgba(124, 58, 237, 0.86) 55%, rgba(8, 145, 178, 0.82));
}
.page-hero--banner .page-hero__title,
.page-hero--banner .page-hero__lead,
.page-hero--banner .section-lead { color: #fff; }
.page-hero--banner .section-lead { color: rgba(255, 255, 255, 0.88); }
.page-hero--banner .eyebrow,
.cs__hero--banner .eyebrow { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.3); color: #fff; }
.page-hero--banner .eyebrow .app-icon,
.cs__hero--banner .eyebrow .app-icon { color: #fff; }
.page-hero--banner .text-gradient,
.cs__hero--banner .text-gradient { background: linear-gradient(120deg, #c7d2fe, #67e8f9); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cs__hero--banner .cs__title { color: #fff; }
.cs__hero--banner .cs__client { color: #a5f3fc; }
.cs__hero--banner .cs__back { color: rgba(255, 255, 255, 0.85); }
.cs__hero--banner .cs__back:hover { color: #fff; }
.cs__hero--banner .cs__tags .tag { background: rgba(255, 255, 255, 0.18); color: #fff; }

/* =============================================================
   PROSE (legal pages) + footer legal links
   ============================================================= */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: 1.4rem; margin: 2.4rem 0 0.8rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--ink-2); line-height: 1.8; }
.prose p { margin-bottom: 1rem; }
.prose ul { padding-left: 1.2rem; margin-bottom: 1rem; list-style: disc; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--primary-d); font-weight: 500; }
.prose__updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }
.footer__bottom a { color: var(--muted); transition: color 0.2s var(--ease); }
.footer__bottom a:hover { color: var(--primary-d); }

/* Tech marquee (services) reuses .logos but a touch smaller */
.techstrip .logos__item { font-size: clamp(1rem, 2.2vw, 1.4rem); opacity: 0.4; }

/* =============================================================
   FIXES — white headings on dark, icon padding, feature image
   ============================================================= */
/* headings inside dark/gradient blocks must be white (override global ink) */
.cta-band__heading, .cta-band h2, .cta-band h3,
.bento__item--feature .bento__title, .bento__item--feature h3,
.price-card--featured .price-card__amount { color: #fff; }

/* icon glyphs: smaller for proper breathing room/padding */
.bento__ic { font-size: 1.3rem; }
.service-card__icon { font-size: 1.5rem; }
.why-card__icon { font-size: 1.2rem; }
.contact__icon { font-size: 1.05rem; }
.hero__float .fic { font-size: 1rem; }

/* AI feature card: photo behind gradient, content readable */
.bento__item--feature { background-size: cover; background-position: center; }
.bento__item--feature .bento__ic { backdrop-filter: blur(3px); }

/* =============================================================
   CONTACT — icon visibility fix + success panel
   ============================================================= */
.contact__icon { font-size: 1.3rem; }          /* was too small/faint */
.contact__social-links a { font-size: 1.15rem; }
.contact__success { text-align: center; padding: 2.5rem 1rem; }
.contact__success .ok { width: 66px; height: 66px; border-radius: 50%; background: var(--grad); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.9rem; margin-bottom: 1.3rem; box-shadow: 0 14px 30px -14px rgba(79,70,229,.7); }
.contact__success h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
.contact__success p { color: var(--muted); line-height: 1.7; max-width: 30rem; margin-inline: auto; }

/* =============================================================
   CONTACT ICON — force bright, thicker, clearly visible
   ============================================================= */
.contact__icon { font-size: 1.45rem; color: #fff !important; }
.contact__icon .app-icon { color: #fff; }
.contact__icon .app-icon svg { stroke: #fff !important; stroke-width: 2 !important; width: 1.45rem; height: 1.45rem; }

/* =============================================================
   ANIMATIONS + PROCESS STEPS (v2.1)
   ============================================================= */
@keyframes vit-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes vit-drift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes vit-pop { 0% { opacity: 0; transform: scale(.96); } 100% { opacity: 1; transform: scale(1); } }

@media (prefers-reduced-motion: no-preference) {
  .hero__float { animation: vit-float 5.5s ease-in-out infinite; }
  .hero__float--2 { animation-delay: -1.8s; }
  .hero__float--3 { animation-delay: -3.4s; }
  .hero__mesh { background-size: 200% 200%; animation: vit-drift 20s ease-in-out infinite; }
  .cta-band, .statband, .about-stats, .bento__item--feature, .price-card--featured, .about-mission {
    background-size: 220% 220%; animation: vit-drift 16s ease-in-out infinite;
  }
  .btn--solid { background-size: 180% 180%; }
  .btn--solid:hover { animation: vit-drift 3s ease infinite; }
  .feature__media .shot img, .bento__shot img { transition: transform 0.7s var(--ease); }
  .feature:hover .shot img { transform: scale(1.04); }
  .hero__shot img { transition: transform 0.7s var(--ease); }
  .hero__visual:hover .hero__shot img { transform: scale(1.03); }
}

/* PROCESS STEPS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); counter-reset: step; }
.step { position: relative; padding: 2rem 1.6rem 1.8rem; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); overflow: hidden; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step::before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 4px; background: var(--grad); }
.step__num { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step__title { font-size: 1.12rem; font-weight: 600; margin: 0.8rem 0 0.45rem; }
.step__desc { color: var(--muted); font-size: 0.93rem; line-height: 1.6; }
@media (max-width: 940px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
