/* Genesix Solutions — design system
   Navy #071A2B · Electric #2563EB · Cyan #22D3EE · Soft #F5F8FC · Text #111827 */

:root {
  --navy: #071a2b;
  --navy-2: #0b2740;
  --navy-3: #12304c;
  --blue: #2563eb;
  --blue-deep: #1d4ed8;
  --cyan: #22d3ee;
  --cyan-soft: #a5f3fc;
  --white: #ffffff;
  --soft: #f5f8fc;
  --text: #111827;
  --muted: #4b5563;
  --faint: #6b7280;
  --line: #e5eaf1;
  --line-strong: #d5deea;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 20px;
  --shadow: 0 10px 30px -16px rgba(7, 26, 43, 0.18);
  --shadow-lg: 0 24px 50px -24px rgba(7, 26, 43, 0.28);
  --header: 76px;
  --container: 1180px;
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.03em; line-height: 1.15; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; }
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--blue);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.container { width: min(var(--container), calc(100% - 2.5rem)); margin-inline: auto; }
.container-wide { width: min(1280px, calc(100% - 2.5rem)); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 99px;
}

h1 { font-size: clamp(2.15rem, 4.6vw, 3.7rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.55rem); font-weight: 750; font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 46rem; }
.muted { color: var(--muted); }
.center { text-align: center; }
.center .lead, .center .eyebrow { margin-inline: auto; }
.section-head { margin-bottom: 3rem; }
.section-head h2 { margin: 0.7rem 0 0.9rem; }
.section { padding: 5.5rem 0; }
.section-soft { background: var(--soft); }
.section-navy {
  background:
    radial-gradient(900px 420px at 10% -10%, rgba(37, 99, 235, 0.28), transparent 55%),
    radial-gradient(700px 360px at 90% 110%, rgba(34, 211, 238, 0.16), transparent 50%),
    var(--navy);
  color: #fff;
}
.section-navy .lead, .section-navy .muted { color: rgba(255,255,255,0.74); }
.section-navy .eyebrow { color: var(--cyan); }
.section-navy h2, .section-navy h3 { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 650;
  font-family: var(--font-display);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(37, 99, 235, 0.7);
}
.btn-primary:hover { box-shadow: 0 14px 28px -10px rgba(37, 99, 235, 0.85); }
.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); }
.btn-ghost {
  background: #fff;
  color: var(--navy);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-cyan {
  background: var(--cyan);
  color: var(--navy);
}
.btn-sm { min-height: 40px; padding: 0.45rem 0.95rem; font-size: 0.92rem; }
.btn-block { width: 100%; }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--blue);
  font-weight: 650;
  font-size: 0.92rem;
  text-decoration: none;
}
.link-more:hover { color: var(--blue-deep); gap: 0.5rem; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header);
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s, color 0.3s;
}
.site-header.is-top.on-hero {
  background: transparent;
}
.site-header.is-solid,
.site-header:not(.on-hero) {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(7,26,43,0.06);
}
.nav-wrap {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: max-content;
}
.brand img { object-fit: contain; }
.brand .logo-wordmark {
  height: 42px;
  width: auto;
  max-width: min(280px, 48vw);
  object-fit: contain;
  display: block;
}
.brand .logo-wordmark-white { display: none; }
.site-header.on-hero.is-top .logo-wordmark-white,
.site-footer .logo-wordmark-white { display: block; }
.site-header.on-hero.is-top .logo-wordmark-gray { display: none; }
.site-footer .logo-wordmark-white { height: 46px; }
.brand-mark,
.brand-text { display: none; }
.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}
.brand-mark img {
  position: absolute;
  inset: 0;
  width: 44px;
  height: 44px;
  object-fit: cover;
  transition: opacity 0.25s;
}
.logo-dark { opacity: 0; }
.site-header.on-hero.is-top .logo-light { opacity: 0; }
.site-header.on-hero.is-top .logo-dark { opacity: 1; }
.site-footer .brand-mark .logo-dark { opacity: 1; position: static; }
.brand-text { display: none; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--navy); }
.brand-sub { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); }
.site-header.on-hero.is-top .brand-name,
.site-header.on-hero.is-top .nav-links a { color: #fff; }
.site-header.on-hero.is-top .brand-sub { color: rgba(255,255,255,0.7); }
.site-header.on-hero.is-top .nav-toggle { color: #fff; border-color: rgba(255,255,255,0.25); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--text);
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blue); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(7,26,43,0.46);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; visibility: visible; }
.mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  padding: 1.2rem 1.3rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow: auto;
}
.mobile-nav.open .mobile-panel { transform: none; }
.mobile-panel a {
  display: block;
  padding: 0.85rem 0;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.mobile-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.icon-close {
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 80% 10%, rgba(37,99,235,0.32), transparent 55%),
    radial-gradient(900px 480px at 0% 80%, rgba(34,211,238,0.16), transparent 50%),
    linear-gradient(180deg, #061422 0%, var(--navy) 50%, #0a2238 100%);
  color: #fff;
  padding: calc(var(--header) + 3.5rem) 0 4.5rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.hero h1,
.page-hero h1 {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}
.hero h1 { max-width: 16ch; }
.hero .reveal {
  opacity: 1;
  transform: none;
  animation: none;
}
.hero .lead,
.page-hero .lead { color: rgba(255,255,255,0.82); }
.hero .lead { margin: 1.15rem 0 1.8rem; max-width: 38rem; }
.hero .eyebrow,
.page-hero .eyebrow { color: var(--cyan); }
.hero .btn-primary {
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  color: var(--navy);
  box-shadow: 0 12px 28px -10px rgba(34, 211, 238, 0.55);
}
.hero .btn-primary:hover { box-shadow: 0 16px 32px -10px rgba(34, 211, 238, 0.7); }
.hero .btn-secondary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.38);
  color: #fff;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.trust-line {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.trust-line span:not(:last-child)::after {
  content: "•";
  margin-left: 0.55rem;
  color: var(--cyan);
}

.hero-visual { position: relative; min-height: 420px; }
.hero-photo {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  animation: float 8s ease-in-out infinite;
}
.orb-1 { width: 220px; height: 220px; background: rgba(37,99,235,0.35); top: 10%; right: 8%; }
.orb-2 { width: 160px; height: 160px; background: rgba(34,211,238,0.22); bottom: 8%; left: 6%; animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.dash-card, .phone, .code-chip, .float-icon {
  position: absolute;
  animation: float 7s ease-in-out infinite;
}
.dash-card {
  right: 0;
  top: 18%;
  width: min(340px, 86%);
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  animation-delay: -1.5s;
}
.dash-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.9rem; }
.dash-dots { display: flex; gap: 5px; }
.dash-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); display: block; }
.dash-dots i:first-child { background: #f87171; }
.kpi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.kpi {
  background: rgba(7,26,43,0.35);
  border-radius: 12px;
  padding: 0.75rem;
}
.kpi b { display: block; font-size: 1.15rem; }
.kpi span { font-size: 0.72rem; color: rgba(255,255,255,0.65); }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 72px; margin-top: 0.9rem; }
.bars span {
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  opacity: 0.9;
}
.phone {
  left: 4%;
  top: 8%;
  width: 168px;
  height: 340px;
  background: #091827;
  border: 6px solid #1c3348;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 2;
}
.phone-notch {
  width: 70px; height: 12px; background: #1c3348; border-radius: 0 0 10px 10px; margin: 0 auto;
}
.phone-screen { padding: 0.85rem 0.7rem; }
.app-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 0.7rem;
  margin-bottom: 0.5rem;
}
.app-card strong { font-size: 0.78rem; }
.app-card p { font-size: 0.68rem; color: rgba(255,255,255,0.6); }
.progress {
  height: 6px; background: rgba(255,255,255,0.08); border-radius: 99px; margin-top: 0.45rem; overflow: hidden;
}
.progress i { display: block; height: 100%; width: 68%; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.code-chip {
  bottom: 12%;
  right: 8%;
  width: 210px;
  background: #0b1d30;
  border: 1px solid rgba(34,211,238,0.2);
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  color: #9cdcfe;
  z-index: 3;
  animation-delay: -2.5s;
}
.code-chip .cm { color: #6b7280; }
.code-chip .cy { color: var(--cyan); }
.float-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  z-index: 4;
}
.fi-1 { top: 8%; right: 6%; animation-delay: -1s; }
.fi-2 { bottom: 10%; left: 4%; animation-delay: -4s; }
.fi-3 { top: 46%; left: -8px; }

/* Logos */
.logo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.brand-tile {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  text-align: left;
}
.brand-swatch {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  margin-bottom: 0.35rem;
}
.brand-lockup {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.1;
}
.brand-sector {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}
.logo-ph {
  height: 72px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  color: var(--faint);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.4rem;
}

.note-chip {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--faint);
  background: #eef3f9;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

/* Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  height: 100%;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #c9d8ee;
}
.icon-box {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #eef4ff, #e6fbff);
  color: var(--blue);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.45rem; }
.card p { color: var(--muted); font-size: 0.94rem; margin-bottom: 1rem; }

.value-card { padding: 1.4rem; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 1.4rem 1.2rem;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cyan);
}
.stat span { color: rgba(255,255,255,0.72); font-size: 0.92rem; }

/* Projects */
.project-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.project-visual {
  height: 210px;
  position: relative;
  overflow: hidden;
  background: #0b2740;
}
.project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.project-card:hover .project-visual img { transform: scale(1.04); }
.pv-ecom { background: linear-gradient(145deg, #0b2740, #1e3a8a 55%, #0e7490); }
.pv-delivery { background: linear-gradient(145deg, #083344, #075985 50%, #2563eb); }
.pv-biz { background: linear-gradient(145deg, #071a2b, #1e40af 60%, #312e81); }
.pv-ai { background: linear-gradient(145deg, #042f2e, #0f766e 45%, #2563eb); }
.mock-ui {
  position: absolute; inset: 24px 20px 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px 14px 0 0;
  backdrop-filter: blur(8px);
  padding: 0.8rem;
}
.mock-line { height: 8px; background: rgba(255,255,255,0.22); border-radius: 99px; margin-bottom: 8px; }
.mock-line.w-60 { width: 60%; }
.mock-line.w-40 { width: 40%; }
.mock-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.mock-tiles i { height: 42px; border-radius: 8px; background: rgba(255,255,255,0.14); display: block; }
.project-body { padding: 1.25rem 1.3rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.pill {
  display: inline-flex;
  align-items: center;
  background: #eef4ff;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}
.pill-light { background: rgba(34,211,238,0.12); color: #0e7490; }
.stack {
  display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0.7rem 0 1rem;
}
.stack span {
  font-size: 0.75rem;
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  color: var(--muted);
}
.project-body .btn { margin-top: auto; align-self: flex-start; }

/* Process — multi-row connected roadmap */
.section-process {
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(37, 99, 235, 0.08), transparent 60%),
    radial-gradient(700px 360px at 90% 20%, rgba(34, 211, 238, 0.1), transparent 55%),
    linear-gradient(180deg, #f7fafc 0%, #fff 55%, #f5f8fc 100%);
  overflow: hidden;
}
.process-board { position: relative; margin-top: 0.75rem; }
.process-map { display: grid; gap: 0.35rem; padding: 0.4rem 0 0.2rem; }
.process-row {
  list-style: none; margin: 0; padding: 0;
  display: grid; align-items: center; gap: 0;
}
.process-row-1 {
  grid-template-columns: minmax(0,1fr) 48px minmax(0,1fr) 48px minmax(0,1fr) 48px minmax(0,1fr);
}
.process-row-2 {
  grid-template-columns: minmax(0,1fr) 48px minmax(0,1fr) 48px minmax(0,1fr);
  max-width: 78%;
  justify-self: start;
}
.process-node-wrap {
  position: relative; min-width: 0; opacity: 0;
  transform: translateY(22px) scale(0.96);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: calc(var(--i, 0) * 0.08s);
}
.process-board.is-ready .process-node-wrap { opacity: 1; transform: none; }
.process-node {
  width: 100%; appearance: none; border: 1px solid var(--line); background: #fff;
  border-radius: 24px; padding: 1rem 0.85rem 1.1rem; display: grid; gap: 0.75rem;
  cursor: pointer; text-align: center; color: inherit; font: inherit; position: relative;
  z-index: 1; box-shadow: 0 14px 34px -20px rgba(7, 26, 43, 0.28);
  transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s, background 0.3s;
}
.process-node:hover {
  transform: translateY(-6px); border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 20px 40px -18px rgba(37, 99, 235, 0.35);
}
.process-node.is-done {
  border-color: rgba(34, 211, 238, 0.35);
  background: linear-gradient(180deg, #f0f9ff, #fff);
}
.process-node.is-active {
  border-color: transparent;
  background: linear-gradient(180deg, #0b2740, #071a2b);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.18), 0 22px 48px -16px rgba(7, 26, 43, 0.6);
  transform: translateY(-8px) scale(1.03);
  z-index: 2;
}
.process-node-media {
  display: grid; place-items: center; height: 140px; border-radius: 18px;
  background: radial-gradient(circle at 50% 80%, rgba(37,99,235,0.08), transparent 62%), linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
  border: 1px solid rgba(37, 99, 235, 0.08); overflow: hidden; position: relative;
}
.process-node-media::after {
  content: ""; position: absolute; inset: auto 12% -20%; height: 42%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.1), transparent 70%); pointer-events: none;
}
.process-node-media img {
  width: 94%; height: 94%; object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.12));
  transition: transform 0.4s var(--ease); position: relative; z-index: 1;
}
.process-node.is-active .process-node-media {
  background: radial-gradient(circle at 50% 80%, rgba(34,211,238,0.16), transparent 60%), linear-gradient(180deg, #102a43 0%, #0b1f33 100%);
  border-color: rgba(255,255,255,0.08);
}
.process-node.is-active .process-node-media img {
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35)); transform: scale(1.06);
}
.process-node:hover .process-node-media img { transform: scale(1.06); }
.process-node-meta { display: grid; gap: 0.22rem; justify-items: center; }
.process-node-num {
  font-family: var(--font-display); font-weight: 800; font-size: 0.78rem;
  letter-spacing: 0.14em; color: var(--blue);
}
.process-node.is-active .process-node-num,
.process-node.is-done .process-node-num { color: var(--cyan); }
.process-node-label {
  font-family: var(--font-display); font-weight: 750; font-size: 1.08rem; line-height: 1.2;
}
.process-node-tag { font-size: 0.76rem; color: var(--faint); line-height: 1.3; max-width: 12rem; }
.process-node.is-active .process-node-tag { color: rgba(255,255,255,0.7); }

.process-connector {
  display: grid; place-items: center; position: relative; z-index: 0; align-self: center; height: 100%;
}
.process-connector-track {
  position: relative; display: block; width: 100%; height: 4px; border-radius: 99px;
  background: rgba(37, 99, 235, 0.14); overflow: hidden;
}
.process-connector-fill, .process-turn-fill {
  position: absolute; inset: 0 auto 0 0; width: 0%; border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.55); transition: width 0.7s var(--ease);
}
.process-connector.is-filled .process-connector-fill,
.process-turn.is-filled .process-turn-fill { width: 100%; }
.process-connector.is-animating .process-connector-fill,
.process-turn.is-animating .process-turn-fill {
  width: 100%; transition: width 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.process-connector-pulse, .process-turn-pulse {
  position: absolute; top: 50%; left: 0; width: 10px; height: 10px;
  margin-top: -5px; margin-left: -5px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.45); opacity: 0;
}
.process-connector.is-animating .process-connector-pulse {
  opacity: 1; animation: process-line-run-h 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.process-connector-arrow {
  position: absolute; right: 0; top: 50%; width: 8px; height: 8px;
  border-top: 2px solid rgba(37, 99, 235, 0.35); border-right: 2px solid rgba(37, 99, 235, 0.35);
  transform: translateY(-50%) rotate(45deg); transition: border-color 0.35s, filter 0.35s;
}
.process-connector.is-filled .process-connector-arrow,
.process-connector.is-animating .process-connector-arrow {
  border-color: var(--cyan); filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.55));
}

.process-turn {
  width: 56px; justify-self: end; margin-right: 6%;
  display: grid; justify-items: center; gap: 0.35rem; padding: 0.35rem 0 0.55rem;
}
.process-turn-track {
  position: relative; width: 4px; height: 54px; border-radius: 99px;
  background: rgba(37, 99, 235, 0.14); overflow: hidden;
}
.process-turn-fill {
  inset: 0 0 auto 0; width: 100%; height: 0%;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
  transition: height 0.7s var(--ease);
}
.process-turn.is-filled .process-turn-fill,
.process-turn.is-animating .process-turn-fill { height: 100%; width: 100%; }
.process-turn.is-animating .process-turn-pulse {
  opacity: 1; left: 50%; margin-left: -5px;
  animation: process-line-run-v 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.process-turn-label {
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--faint); font-weight: 700;
}
@keyframes process-line-run-h {
  0% { transform: translateX(0); box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(34, 211, 238, 0); }
  100% { transform: translateX(48px); opacity: 0.15; }
}
@keyframes process-line-run-v {
  0% { transform: translateY(0); box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(34, 211, 238, 0); }
  100% { transform: translateY(54px); opacity: 0.15; }
}

.process-stage {
  margin-top: 1.8rem; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 1.35rem; align-items: stretch;
}
.process-stage-card {
  background: linear-gradient(165deg, #0b2740 0%, #071a2b 55%, #0a2035 100%);
  color: #fff; border-radius: 26px; padding: 2rem; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.process-stage-card::before {
  content: ""; position: absolute; width: 240px; height: 240px; right: -70px; top: -80px;
  border-radius: 50%; background: radial-gradient(circle, rgba(34,211,238,0.2), transparent 70%);
  pointer-events: none;
}
.process-kicker {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan); font-weight: 700; margin: 0 0 0.75rem;
}
.process-stage-card h3 {
  margin: 0 0 0.75rem; font-size: clamp(1.45rem, 2.2vw, 1.9rem); line-height: 1.2;
}
.process-stage-copy { margin: 0; color: rgba(255,255,255,0.78); line-height: 1.65; max-width: 38rem; }
.process-artefact {
  margin: 1.2rem 0 0; display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.5rem 0.85rem; border-radius: 999px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); font-size: 0.84rem; color: rgba(255,255,255,0.86);
}
.process-artefact strong { color: var(--cyan-soft); font-weight: 700; }
.process-assurances { list-style: none; margin: 1.25rem 0 1.5rem; padding: 0; display: grid; gap: 0.6rem; }
.process-assurances li {
  position: relative; padding-left: 1.4rem; color: rgba(255,255,255,0.78); font-size: 0.95rem;
}
.process-assurances li::before {
  content: ""; position: absolute; left: 0; top: 0.45rem; width: 0.55rem; height: 0.55rem;
  border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}
.process-stage-visual {
  border-radius: 26px; border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 78%, rgba(37,99,235,0.1), transparent 55%), linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%);
  min-height: 340px; position: relative; overflow: hidden; box-shadow: var(--shadow);
  display: grid; place-items: center; padding: 1.4rem;
}
.process-stage-visual img {
  width: min(100%, 560px); height: auto; max-height: 360px; object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(15, 23, 42, 0.14));
  transition: opacity 0.35s var(--ease), transform 0.45s var(--ease);
}
.process-stage-visual img.is-swap { opacity: 0; transform: translateY(10px) scale(0.97); }

.timeline { display: grid; gap: 0; }
.t-item {
  display: grid; grid-template-columns: 88px 1fr; gap: 1.2rem;
  position: relative; padding-bottom: 1.6rem;
}
.t-num {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--blue), #0ea5e9);
}

/* Tech */
.tech-cat { margin-bottom: 1.4rem; }
.tech-cat h3 { font-size: 0.95rem; margin-bottom: 0.7rem; color: var(--muted); font-weight: 650; }
.tech-pills { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.8rem 0.45rem 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.tech-mark {
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--soft);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue);
}

/* Testimonials */
.t-wrap { position: relative; }
.t-track { overflow: hidden; }
.t-slides { display: flex; transition: transform 0.5s var(--ease); }
.t-slide { min-width: 100%; padding: 0.2rem; }
.quote {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-width: 820px;
  margin: 0 auto;
}
.stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 1rem; }
.quote blockquote { font-size: 1.15rem; margin: 0 0 1.4rem; font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1.5; }
.who { display: flex; align-items: center; gap: 0.8rem; }
.avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: grid; place-items: center; color: #fff; font-weight: 800;
}
.t-nav { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.2rem; }
.t-nav button, .dots button {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
}
.dots { display: flex; justify-content: center; gap: 0.4rem; margin-top: 0.8rem; }
.dots button { width: 8px; height: 8px; padding: 0; background: #c9d4e3; }
.dots button[aria-current="true"] { background: var(--blue); width: 22px; border-radius: 99px; }

.sample-banner {
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}

/* Pricing */
.price-card {
  padding: 1.7rem;
  position: relative;
}
.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 18px 40px -20px rgba(37,99,235,0.45);
}
.badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--navy); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 0.55rem; border-radius: 999px;
}
.price-card ul { list-style: none; margin: 1rem 0 1.4rem; }
.price-card li {
  padding: 0.4rem 0 0.4rem 1.4rem;
  position: relative;
  color: var(--muted);
}
.price-card li::before {
  content: "";
  position: absolute; left: 0; top: 0.75rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
}

/* FAQ */
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 1.1rem;
  margin-bottom: 0.7rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 1.05rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue); font-size: 1.3rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: 1.1rem; color: var(--muted); }

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 3rem;
  background:
    radial-gradient(500px 200px at 100% 0%, rgba(34,211,238,0.2), transparent),
    linear-gradient(135deg, #0b2740, #071a2b 50%, #123a6b);
  color: #fff;
}
.cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,0.75); margin: 0.8rem 0 1.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: 4rem 0 1.4rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: 2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer h3 { color: #fff; font-size: 0.92rem; margin-bottom: 0.9rem; }
.site-footer a { color: rgba(255,255,255,0.72); text-decoration: none; display: block; margin: 0.38rem 0; font-size: 0.92rem; }
.site-footer a:hover { color: var(--cyan); }
.foot-brand p { margin-top: 0.8rem; font-size: 0.92rem; max-width: 28ch; }
.socials { display: flex; gap: 0.5rem; margin-top: 1rem; }
.socials a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; margin: 0;
}
.legal {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem;
  padding-top: 1.2rem; font-size: 0.82rem; color: rgba(255,255,255,0.55);
}
.legal nav { display: flex; gap: 1rem; }
.legal nav a { display: inline; margin: 0; }

/* Inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 280px at 90% 0%, rgba(37,99,235,0.22), transparent),
    var(--navy);
  color: #fff;
  padding: calc(var(--header) + 2.6rem) 0 3rem;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin: 0.5rem 0 0.8rem; }
.page-hero .lead { color: rgba(255,255,255,0.74); }
.crumbs { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.86rem; color: rgba(255,255,255,0.6); }
.crumbs a { color: rgba(255,255,255,0.78); text-decoration: none; }
.crumbs a:hover { color: var(--cyan); }
.inner-crumbs {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  font-size: 0.86rem; color: var(--faint); margin-bottom: 1rem;
}
.inner-crumbs a { color: var(--blue); text-decoration: none; }

.prose { max-width: 760px; }
.prose h2 { margin: 2rem 0 0.8rem; }
.prose h3 { margin: 1.4rem 0 0.5rem; }
.prose p { margin: 0.8rem 0; color: var(--muted); }
.prose ul, .prose ol { margin: 0.6rem 0 1rem 1.2rem; color: var(--muted); }
.prose li { margin: 0.35rem 0; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 0.95rem; }
.field label { display: block; font-weight: 650; font-size: 0.88rem; margin-bottom: 0.35rem; }
.field-label {
  display: block;
  font-weight: 650;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}
.field-hint {
  margin: 0.45rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}
.req { color: #dc2626; }
.field input:not([type="checkbox"]):not([type="file"]),
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 0.72rem 0.85rem;
  background: #fff;
  color: var(--text);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:not([type="checkbox"]):not([type="file"]):focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
}
.field .error { color: #b91c1c; font-size: 0.8rem; margin-top: 0.3rem; display: none; }
.field.invalid input:not([type="checkbox"]):not([type="file"]),
.field.invalid select,
.field.invalid textarea { border-color: #ef4444; }
.field.invalid .error { display: block; }

/* File attachment */
.file-drop {
  display: block;
  margin: 0;
  cursor: pointer;
  font-weight: 500;
}
.file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.file-drop-ui {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: var(--soft, #f5f8fc);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.file-drop:hover .file-drop-ui,
.file-drop:focus-within .file-drop-ui {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}
.file-icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #e8eef8;
  color: var(--blue);
}
.file-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.file-title {
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--text);
}
.file-hint {
  font-size: 0.78rem;
  color: var(--muted);
}
.file-btn {
  flex-shrink: 0;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 650;
}

/* Consent row — keep checkbox + text on one line */
.field label.check {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
  width: 100%;
  margin: 0;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text);
}
.field label.check input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  min-width: 1.05rem;
  margin: 0.2rem 0 0;
  flex: 0 0 auto;
  accent-color: var(--blue);
}
.field label.check > span {
  flex: 1 1 auto;
  min-width: 0;
}
.form-success, .form-error {
  display: none;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}
.form-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.form.ok .form-success { display: block; }
.form.fail .form-error { display: block; }
.contact-aside .card { margin-bottom: 1rem; }
.map-ph {
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #dbeafe, #e0f2fe);
  display: grid; place-items: center;
  color: var(--muted);
  text-align: center;
  padding: 1rem;
}

.job {
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.wa-float, .consult-float {
  position: fixed;
  z-index: 40;
  right: 1.1rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
}
.wa-float {
  bottom: 1.2rem;
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
}
.consult-float {
  display: none;
  bottom: 5.2rem;
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-display);
}
.cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  max-width: 720px;
  margin-inline: auto;
  background: rgba(7,26,43,0.96);
  color: #fff;
  border-radius: 16px;
  padding: 1rem 1.1rem;
  display: none;
  box-shadow: var(--shadow-lg);
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.cookie.show { display: flex; }
.cookie p { font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.cookie a { color: var(--cyan); }

.meta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; color: var(--faint); font-size: 0.88rem; margin: 0.6rem 0 1.2rem; }
.article-hero { max-width: 760px; }
.cs-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1.5rem; }
.cs-panel { background: var(--soft); border-radius: 16px; padding: 1.2rem; }
.cs-panel dt { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); font-weight: 700; }
.cs-panel dd { margin: 0.2rem 0 0.9rem; }
.team-photo {
  min-height: 320px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: #071a2b;
}
.team-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.glass-panel {
  position: absolute;
  inset: auto 8% 8% 8%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  color: #fff;
}
.list-clean { list-style: none; }
.list-clean li {
  padding: 0.55rem 0 0.55rem 1.3rem;
  position: relative;
  color: var(--muted);
}
.list-clean li::before {
  content: "";
  position: absolute; left: 0; top: 0.9rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.toc a { color: var(--muted); text-decoration: none; display: block; padding: 0.35rem 0; }
.toc a:hover { color: var(--blue); }

.notfound { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 8rem 1rem 4rem; }
.notfound .code {
  font-size: 5rem; font-weight: 800; font-family: var(--font-display);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.reveal { opacity: 0; transform: translateY(16px); animation: rise 0.7s var(--ease) forwards; }
.d1 { animation-delay: 0.08s; } .d2 { animation-delay: 0.16s; } .d3 { animation-delay: 0.24s; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (max-width: 1240px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .hero-grid, .split, .foot-grid, .cs-grid, .process-stage { grid-template-columns: 1fr; }
  .process-row-1 {
    grid-template-columns: minmax(0,1fr) 36px minmax(0,1fr) 36px minmax(0,1fr) 36px minmax(0,1fr);
  }
  .process-row-2 {
    max-width: 100%;
    grid-template-columns: minmax(0,1fr) 36px minmax(0,1fr) 36px minmax(0,1fr);
  }
  .process-node-media { height: 118px; }
  .process-turn { margin-right: 8%; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .logo-row { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: auto; }
  .float-icon { display: none; }
  .consult-float { display: grid; place-items: center; }
}
@media (max-width: 760px) {
  .brand .logo-wordmark-white,
  .brand .logo-wordmark-gray { display: none !important; }
  .brand-mark { display: block; }
  .brand-text { display: flex; }
  .grid-3, .grid-2, .grid-4, .logo-row, .stat-grid, .foot-grid { grid-template-columns: 1fr; }
  .logo-row { grid-template-columns: 1fr 1fr; }
  .cta-band, .cookie { flex-direction: column; padding: 1.6rem; }
  .consult-float { display: grid; place-items: center; }
  .t-item { grid-template-columns: 64px 1fr; }
  .process-connector,
  .process-turn { display: none; }
  .process-row-1,
  .process-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    max-width: 100%;
  }
  .process-node-media { height: 110px; }
  .process-node-tag { display: none; }
  .process-stage-visual { min-height: 240px; }
  .process-stage-card { padding: 1.5rem 1.35rem; }
  .hero { padding-top: calc(var(--header) + 2rem); }
  .section { padding: 3.6rem 0; }
  .phone { width: 140px; height: 280px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .t-item { opacity: 1; transform: none; }
  .process-node-wrap { opacity: 1; transform: none; }
  .process-connector-pulse,
  .process-turn-pulse { animation: none !important; }
}
