/* ═══════════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════════ */
:root {
  /* Palette */
  --c-base:         #06080f;
  --c-surface:      #0b1019;
  --c-elevated:     #111827;
  --c-raised:       #1a2438;
  --c-border:       rgba(255 255 255 / 0.07);
  --c-border-mid:   rgba(255 255 255 / 0.12);

  --c-accent:       #00d4ff;
  --c-accent-dim:   rgba(0 212 255 / 0.10);
  --c-accent-glow:  rgba(0 212 255 / 0.30);
  --c-accent-dark:  rgba(0 212 255 / 0.06);

  --c-text-1:       #f1f5ff;
  --c-text-2:       #8496bc;
  --c-text-3:       #3d5070;

  --c-green:        #22d47e;

  /* Typography */
  --f-display: 'Urbanist', sans-serif;
  --f-body:    'Figtree', sans-serif;

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Layout */
  --max-w: 1200px;
  --nav-h: 68px;

  /* Shadows */
  --shadow-card: 0 1px 2px rgb(0 0 0 / 0.5), 0 8px 32px rgb(0 0 0 / 0.4), 0 0 0 1px var(--c-border);
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
/* ─ Shader canvas ─ */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -2;
  display: block;
}

body {
  font-family: var(--f-body);
  background: transparent;
  color: var(--c-text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* overflow-x on a wrapper, not body — body overflow breaks position:fixed on mobile */
.site-wrapper { overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: var(--c-accent); color: var(--c-base); }

/* ─ Container ─ */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

/* ─ Grain overlay ─ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

/* ─ Eyebrow label ─ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  margin-bottom: var(--sp-4);
}
.eyebrow i {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* ─ Section rhythm ─ */
.section        { padding-block: var(--sp-24); background: rgba(6,8,15,0.82); }
.section--alt   { background: rgba(11,16,25,0.87); }
.section__hd    { margin-bottom: var(--sp-12); }
.section__title {
  font-family: var(--f-display);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.section__sub {
  margin-top: var(--sp-3);
  font-size: 1.0rem;
  color: var(--c-text-2);
  line-height: 1.75;
  max-width: 520px;
}

/* ─ Buttons ─ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--r-sm);
  transition:
    transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.25s ease,
    opacity    0.2s ease;
}
.btn:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
}
.btn:active { transform: translateY(0) !important; }

.btn--primary {
  padding: 0.85rem 1.75rem;
  background: var(--c-accent);
  color: var(--c-base);
  box-shadow: 0 4px 24px var(--c-accent-glow);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px var(--c-accent-glow);
}
.btn--primary .btn__arrow { transition: transform 0.2s ease; }
.btn--primary:hover .btn__arrow { transform: translateX(4px); }

.btn--ghost {
  padding: 0.85rem 1.5rem;
  color: var(--c-text-2);
  border: 1px solid var(--c-border-mid);
}
.btn--ghost:hover {
  color: var(--c-text-1);
  border-color: var(--c-border-mid);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   1. NAVIGATION
═══════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(6 8 15 / 0.85);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid var(--c-border);
}
.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  position: relative;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--c-accent);
  border-radius: 9px;
  display: none;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--c-base);
  letter-spacing: 0;
  flex-shrink: 0;
}

/* Desktop links */
.nav__links {
  display: none;
  list-style: none;
  gap: var(--sp-8);
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-2);
  position: relative;
  transition: color 0.2s ease;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav__links a:hover {
  color: var(--c-text-1);
}
.nav__links a:hover::after {
  transform: scaleX(1);
}
.nav__links a.is-current {
  color: var(--c-text-1);
}
.nav__links a.is-current::after {
  transform: scaleX(1);
}

/* Desktop CTA */
.nav__cta { display: none; }

/* Hamburger */
.nav__burger {
  width: 38px;
  height: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  padding: 4px;
  border-radius: var(--r-sm);
  transition: background 0.2s ease;
}
.nav__burger:hover { background: rgba(255 255 255 / 0.05); }
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--c-text-1);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.nav__burger span:nth-child(1) { width: 22px; }
.nav__burger span:nth-child(2) { width: 22px; }
.nav__burger span:nth-child(3) { width: 22px; }
.nav__burger.is-open span:nth-child(1) { width: 22px; transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { width: 22px; transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  top: var(--nav-h);
  inset-inline: 0;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-6);
  z-index: 199;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
}
.nav__drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav__drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.nav__drawer a {
  display: block;
  padding: var(--sp-3) 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-text-2);
  border-bottom: 1px solid var(--c-border);
  transition: color 0.2s ease;
}
.nav__drawer a:hover { color: var(--c-accent); }
.drawer-cta {
  display: block;
  text-align: center;
  padding: 0.85rem;
  background: var(--c-accent);
  color: var(--c-base) !important;
  font-weight: 700;
  border-radius: var(--r-sm);
  border-bottom: none !important;
}

/* Desktop dropdown */
.nav__links li {
  position: relative;
}
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 12px;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(6 8 15 / 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: var(--sp-2) 0;
  min-width: 148px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 300;
  list-style: none;
  box-shadow: 0 12px 40px rgba(0 0 0 / 0.5);
  margin: 0;
}
.nav__links li:hover .nav__dropdown,
.nav__links li:focus-within .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 0.55rem var(--sp-4);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-text-2);
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav__dropdown a::after { display: none !important; }
.nav__dropdown a:hover {
  color: var(--c-accent);
  background: rgba(255 255 255 / 0.04);
}
.nav__has-dropdown > a,
.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav__dropdown-trigger {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-2);
  cursor: pointer;
  transition: color 0.2s ease;
  position: relative;
}
.nav__dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav__has-dropdown:hover .nav__dropdown-trigger,
.nav__has-dropdown:focus-within .nav__dropdown-trigger {
  color: var(--c-text-1);
}
.nav__dropdown-trigger.is-current        { color: var(--c-text-1); }
.nav__dropdown-trigger.is-current::after { transform: scaleX(1); }
.nav__chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.nav__has-dropdown:hover .nav__chevron {
  transform: rotate(180deg);
}

/* Mobile drawer sub-links */
.drawer-sub {
  padding-left: var(--sp-4);
  margin-top: var(--sp-1);
  border-left: 2px solid var(--c-border);
  display: flex;
  flex-direction: column;
}
.drawer-sub a {
  font-size: 0.875rem !important;
  padding: 0.45rem 0 !important;
  color: var(--c-text-2) !important;
  border-bottom: 1px solid rgba(255 255 255 / 0.04) !important;
}
.drawer-sub a:hover { color: var(--c-accent) !important; }
.drawer-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-text-2);
  display: block;
  padding: 0.6rem 0;
  cursor: default;
}

/* Desktop nav — only at 1024px+ */
@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__cta   { display: inline-flex; }
  .nav__burger { display: none; }
}
/* Mobile + tablet (0–1023px): bottom nav + burger both visible */
@media (max-width: 1023px) {
  /* burger is visible; drawer works as secondary nav */
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
}

/* ═══════════════════════════════════════
   BOTTOM NAV (mobile + tablet, 0–1023px)
═══════════════════════════════════════ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  height: calc(64px + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(6, 8, 15, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}
.bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding-top: 4px;
  color: #8496bc;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  position: relative;
}
.bottom-nav__item i {
  font-size: 1.15rem;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.bottom-nav__item::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 28px; height: 2px;
  background: #00d4ff;
  border-radius: 0 0 3px 3px;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.bottom-nav__item.is-active,
.bottom-nav__item:active { color: #00d4ff; }
.bottom-nav__item.is-active i { transform: translateY(-2px); }
.bottom-nav__item.is-active::after { transform: translateX(-50%) scaleX(1); }
/* Hide on desktop */
@media (min-width: 1024px) { .bottom-nav { display: none; } }

/* ═══════════════════════════════════════
   2. HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: flex-start;
  padding-block: var(--sp-10) var(--sp-12);
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero { min-height: auto; padding-block-start: var(--sp-5); padding-block-end: var(--sp-8); }
  .hero__content { display: flex; flex-direction: column; }
  .hero__h1      { order: 1; margin-bottom: var(--sp-8); }
  .hero__badge   { order: 2; text-align: center; align-self: center; margin-bottom: var(--sp-6); }
  .hero__sub     { order: 3; }
  .hero__actions { order: 4; }
}

/* Layered background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 55% -10%, rgba(0 212 255 / 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 80%, rgba(0 212 255 / 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 0% 40%,   rgba(0  80 200 / 0.06) 0%, transparent 50%);
}
/* Dot-grid texture */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255 255 255 / 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
}
/* Glow orb */
.hero__bg::after {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-25%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0 212 255 / 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

/* Pill badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: var(--c-accent-dim);
  border: 1px solid rgba(0 212 255 / 0.22);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: var(--sp-6);
  animation: fadein 0.5s ease both;
}
.hero__badge-dot {
  width: 22px;
  height: 22px;
  background: var(--c-accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero__badge-dot::after {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--c-base);
  border-radius: 50%;
}

.hero__h1 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: var(--sp-5);
  animation: fadein 0.5s 0.08s ease both;
}
.hero__h1 em {
  font-style: normal;
  color: var(--c-accent);
}

.hero__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--c-text-2);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: var(--sp-8);
  animation: fadein 0.5s 0.16s ease both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  justify-content: center; /* mobile + tablet: centred */
  animation: fadein 0.5s 0.24s ease both;
}
@media (min-width: 1024px) {
  .hero__actions { justify-content: flex-start; }
}

/* Scroll cue */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-3);
  animation: bounce 2s 1s ease-in-out infinite;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-text-3), transparent);
}
@media (max-width: 767px) { .hero__scroll { display: none; } }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   3. SOCIAL PROOF STRIP
═══════════════════════════════════════ */
.strip {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding-block: var(--sp-5);
  position: relative;
  overflow: hidden;
}
/* Left + right edge fades */
.strip::before,
.strip::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.strip::before {
  left: 0;
  background: linear-gradient(to right, var(--c-surface), transparent);
}
.strip::after {
  right: 0;
  background: linear-gradient(to left, var(--c-surface), transparent);
}
/* Marquee track */
.strip__track {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  width: max-content;
  animation: strip-marquee 35s linear infinite;
}
.strip__track:hover { animation-play-state: paused; }
@keyframes strip-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* Reduced motion: static centered layout, duplicates hidden */
@media (prefers-reduced-motion: reduce) {
  .strip__track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-6);
  }
  .strip__track > *:nth-child(n+10) { display: none; }
}
/* Mobile: single-column list, no animation */
@media (max-width: 767px) {
  .strip {
    overflow: visible;
    padding-block: var(--sp-3);
  }
  .strip::before,
  .strip::after { display: none; }
  .strip__track {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-3);
    width: auto;
    animation: none;
    padding-left: var(--sp-4);
  }
  .strip__track > *:nth-child(n+10) { display: none; }
  .strip__sep { display: none; }
  .strip__item {
    gap: 6px;
    flex-shrink: 1;
    min-width: 0;
  }
  .strip__icon {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }
  .strip__copy {
    font-size: 0.72rem;
    white-space: normal;
  }
}

.strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
/* ── Shared icon-box base ── */
.svc-card__ico,
.ai-benefit__ico,
.strip__icon,
.meta-item__ico,
.who-col__ico,
.discovery-point__ico {
  background: var(--c-accent-dim);
  display: grid;
  place-items: center;
  color: var(--c-accent);
  flex-shrink: 0;
}

.strip__icon {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  font-size: 1rem;
}
.strip__copy {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-2);
  white-space: nowrap;
}
.strip__copy strong {
  color: var(--c-text-1);
  font-weight: 700;
}
.strip__sep {
  width: 1px;
  height: 28px;
  background: var(--c-border);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   4. SERVICES
═══════════════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 520px)  { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services__grid { grid-template-columns: repeat(4, 1fr); } }
/* Featured card spans full width on 2-col grid (520–999px) */
@media (min-width: 520px) and (max-width: 999px) {
  .svc-card--featured { grid-column: 1 / -1; }
}

/* Featured (5th) service card — full-width row with horizontal layout */
.svc-card--featured {
  background: linear-gradient(135deg, var(--c-elevated) 0%, rgba(0 212 255 / 0.05) 100%);
  border-color: rgba(0 212 255 / 0.18);
}
@media (min-width: 1000px) {
  .svc-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 60px 1fr auto;
    grid-template-rows: auto auto;
    column-gap: var(--sp-6);
    row-gap: var(--sp-2);
    padding: var(--sp-6) var(--sp-8);
    align-items: center;
  }
  .svc-card--featured .svc-card__ico {
    grid-column: 1; grid-row: 1 / 3;
    align-self: center;
    width: 60px; height: 60px;
    font-size: 1.4rem;
  }
  .svc-card--featured .svc-card__title {
    grid-column: 2; grid-row: 1;
  }
  .svc-card--featured .svc-card__desc {
    grid-column: 2; grid-row: 2;
    flex: unset;
  }
  .svc-card--featured .svc-card__link {
    grid-column: 3; grid-row: 1 / 3;
    align-self: center;
    margin-top: 0;
    white-space: nowrap;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(0 212 255 / 0.3);
    border-radius: var(--r-sm);
    background: var(--c-accent-dim);
    font-size: 0.9rem;
    transition: background 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
  }
  .svc-card--featured .svc-card__link:hover {
    background: rgba(0 212 255 / 0.18);
    border-color: rgba(0 212 255 / 0.55);
  }
}

.svc-card {
  background: var(--c-elevated);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: relative;
  overflow: hidden;
  transition:
    transform     0.3s cubic-bezier(0.34,1.56,0.64,1),
    border-color  0.3s ease,
    box-shadow    0.3s ease;
}
/* Shared: top accent bar */
.svc-card::before,
.discovery-card::before {
  content: '';
  position: absolute;
  top: 0;
  background: var(--c-accent);
  border-radius: 0 0 3px 3px;
}
/* Shared: corner glow */
.svc-card::after,
.discovery-card::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
/* Top accent line */
.svc-card::before {
  left: var(--sp-6); right: var(--sp-6);
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
/* Corner glow */
.svc-card::after {
  top: -60px; right: -60px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, var(--c-accent-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0 212 255 / 0.28);
  box-shadow: 0 16px 50px rgb(0 0 0 / 0.45), 0 0 0 1px rgba(0 212 255 / 0.12);
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after  { opacity: 1; }

.svc-card__ico {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-size: 1.25rem;
}
.svc-card__title {
  font-family: var(--f-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.svc-card__desc {
  font-size: 0.9rem;
  color: var(--c-text-2);
  line-height: 1.7;
  flex: 1;
}
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--c-accent);
  margin-top: var(--sp-2);
  transition: gap 0.2s ease;
}
.svc-card:hover .svc-card__link { gap: 10px; }

/* ═══════════════════════════════════════
   4b. AI & AUTOMATION
═══════════════════════════════════════ */
.ai-section {
  position: relative;
  overflow: hidden;
}
.ai-section::before {
  content: '';
  position: absolute;
  top: -140px; right: -100px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(0 212 255 / 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.ai-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
}
@media (min-width: 900px) {
  .ai-inner {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: var(--sp-16);
  }
  /* Left col fills full height — CTA pins to bottom, text is larger */
  .ai-inner > :first-child {
    display: flex;
    flex-direction: column;
  }
  .ai-inner > :first-child .ai-body {
    font-size: 1.05rem;
    line-height: 1.85;
  }
  .ai-inner > :first-child .ai-hl {
    margin-bottom: var(--sp-8);
  }
  .ai-inner > :first-child .btn {
    align-self: flex-start;
    margin-top: auto;
    margin-bottom: 1.875rem;
  }
}

.ai-hl {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: var(--sp-5);
}
.ai-hl em { font-style: normal; color: var(--c-accent); }

.ai-body {
  font-size: 0.97rem;
  color: var(--c-text-2);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
}

.ai-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.ai-benefit {
  display: flex;
  gap: var(--sp-4);
  background: var(--c-elevated);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.ai-benefit:hover {
  border-color: rgba(0 212 255 / 0.25);
  box-shadow: 0 8px 30px rgb(0 0 0 / 0.35);
}
.ai-benefit__ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  font-size: 1.05rem;
}
.ai-benefit__title {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-2);
}
.ai-benefit__desc {
  font-size: 0.85rem;
  color: var(--c-text-2);
  line-height: 1.65;
}

/* ── AI trust banner ── */
.ai-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-10);
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-elevated);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}
.ai-trust__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-3);
  white-space: nowrap;
  margin-right: var(--sp-1);
}
.ai-trust__items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.ai-trust__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--c-raised);
  border: 1px solid var(--c-border-mid);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-text-2);
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.ai-trust__pill i {
  font-size: 0.72rem;
  color: var(--c-accent);
}
.ai-trust__pill:hover {
  border-color: rgba(0 212 255 / 0.35);
  color: var(--c-text-1);
}

/* Tighten gap between employee automation and process sections */
#automation-individual { padding-block-end: var(--sp-12); }
#process               { padding-block-start: var(--sp-12); padding-block-end: var(--sp-12); }
#results               { padding-block-start: var(--sp-12); }
@media (max-width: 1023px) {
  #automation { padding-block-start: var(--sp-12); }
}

/* Employee automation — glow left, columns reversed on desktop */
.ai-section--emp::before {
  top: -140px; right: auto; left: -100px;
}
@media (min-width: 900px) {
  .ai-inner--rev > :first-child { order: 2; }
  .ai-inner--rev > :last-child  { order: 1; padding-top: calc(0.72rem * 1.5 + var(--sp-4)); }
}

/* ═══════════════════════════════════════
   5. PROCESS
═══════════════════════════════════════ */
.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}
/* Mobile: 1 col, tablet: 2 col, desktop: 4 col */
@media (min-width: 768px) and (max-width: 1023px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .process__grid { grid-template-columns: repeat(4, 1fr); }
}

.proc-step {
  padding: var(--sp-8) var(--sp-6);
  position: relative;
}

/* Vertical connector (mobile single-col) */
@media (max-width: 767px) {
  .proc-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: calc(var(--sp-6) + 23px);
    top: calc(var(--sp-8) + 48px);
    width: 2px;
    height: calc(100% - var(--sp-8) - 48px + var(--sp-4));
    background: linear-gradient(to bottom, rgba(0 212 255 / 0.4), transparent);
  }
}
/* Vertical connectors for tablet 2-col (between rows, right col only) */
@media (min-width: 768px) and (max-width: 1023px) {
  .proc-step:nth-child(1)::after,
  .proc-step:nth-child(2)::after {
    content: '';
    position: absolute;
    left: calc(var(--sp-6) + 23px);
    top: calc(var(--sp-8) + 48px);
    width: 2px;
    height: calc(100% - var(--sp-8) - 48px + var(--sp-4));
    background: linear-gradient(to bottom, rgba(0 212 255 / 0.4), transparent);
  }
}
/* Horizontal connectors (desktop 4-col) */
@media (min-width: 1024px) {
  .proc-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: calc(var(--sp-8) + 23px);
    right: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, rgba(0 212 255 / 0.45), transparent);
  }
  .proc-step:not(:first-child)::before {
    content: '';
    position: absolute;
    top: calc(var(--sp-8) + 23px);
    left: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(0 212 255 / 0.45));
  }
}

.proc-step__num {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(0 212 255 / 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--c-accent);
  background: var(--c-base);
  margin-bottom: var(--sp-6);
  position: relative;
  z-index: 1;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.proc-step:hover .proc-step__num {
  border-color: var(--c-accent);
  box-shadow: 0 0 20px var(--c-accent-glow);
}
.proc-step__title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
}
.proc-step__desc {
  font-size: 0.9rem;
  color: var(--c-text-2);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   6. RESULTS
═══════════════════════════════════════ */
.results__wrap {
  background: var(--c-elevated);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.results__grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .results__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .results__grid { grid-template-columns: repeat(4, 1fr); } }

.stat {
  padding: var(--sp-10) var(--sp-6);
  text-align: center;
  position: relative;
}
/* Vertical dividers: 4-col layout only */
@media (min-width: 900px) {
  .stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: var(--sp-6); bottom: var(--sp-6);
    width: 1px;
    background: var(--c-border);
  }
}
/* Horizontal dividers: below 900px */
@media (max-width: 899px) {
  .stat:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0; left: var(--sp-6); right: var(--sp-6);
    height: 1px;
    background: var(--c-border);
  }
}

/* Top accent */
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 56px; height: 3px;
  background: var(--c-accent);
  border-radius: 0 0 3px 3px;
}

.stat__num {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.stat__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text-1);
  margin-bottom: var(--sp-2);
}
.stat__note {
  font-size: 0.8rem;
  color: var(--c-text-3);
}

/* ═══════════════════════════════════════
   7. PORTFOLIO
═══════════════════════════════════════ */
.portfolio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 600px)  { .portfolio__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .portfolio__grid { grid-template-columns: repeat(3, 1fr); } }

.proj-card {
  background: var(--c-elevated);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
  cursor: pointer;
}
.proj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgb(0 0 0 / 0.5), 0 0 0 1px rgba(0 212 255 / 0.12);
}
.proj-card:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 4px;
}

.proj-card__img {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: var(--c-surface);
}
.proj-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  filter: brightness(0.85) saturate(0.75);
}
.proj-card:hover .proj-card__img img { transform: scale(1.06); }
.proj-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6 8 15 / 0.85) 0%, transparent 60%);
}
/* placeholder bg when no image */
.proj-placeholder {
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--c-surface) 0%, var(--c-raised) 100%);
  color: var(--c-text-3);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proj-card__body {
  padding: var(--sp-5) var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
.proj-card__name {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.proj-card__tag {
  padding: 4px 12px;
  background: var(--c-accent-dim);
  border: 1px solid rgba(0 212 255 / 0.2);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-accent);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   8. CONTACT
═══════════════════════════════════════ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
}
@media (min-width: 900px) {
  .contact__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact__hl {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: var(--sp-5);
}
.contact__hl em { font-style: normal; color: var(--c-accent); }
.contact__body {
  font-size: 1rem;
  color: var(--c-text-2);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
}

.contact__meta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--c-text-2);
}
.meta-item__ico {
  width: 36px; height: 36px;
  border-radius: 9px;
  font-size: 0.9rem;
}

/* Form */
.form-card {
  background: var(--c-elevated);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: var(--sp-5); }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-text-2);
  margin-bottom: 7px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--c-raised);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  color: var(--c-text-1);
  font-family: var(--f-body);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--c-text-3); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(0 212 255 / 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.btn-submit {
  width: 100%;
  margin-top: var(--sp-6);
  padding: 1rem;
  background: var(--c-accent);
  color: var(--c-base);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition:
    transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.25s ease;
  box-shadow: 0 4px 24px var(--c-accent-glow);
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px var(--c-accent-glow);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; }
.btn-submit.sent  { background: var(--c-green); box-shadow: none; }
.btn-submit.error { background: #f87171;        box-shadow: none; font-size: 0.85rem; }

/* ═══════════════════════════════════════
   9. FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding-block: var(--sp-12) var(--sp-8);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: var(--sp-8);
}
@media (min-width: 640px) {
  .footer__top {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}
.footer__role {
  font-size: 0.8rem;
  color: var(--c-text-2);
  margin-top: 4px;
}
.footer__tagline {
  font-size: 0.85rem;
  color: var(--c-text-3);
  margin-top: 2px;
}
.footer__nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
}
.footer__nav a {
  font-size: 0.875rem;
  color: var(--c-text-2);
  transition: color 0.2s ease;
}
.footer__nav a:hover { color: var(--c-accent); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.footer__copy { font-size: 0.8rem; color: var(--c-text-3); }
.footer__copy a { color: var(--c-text-3); text-decoration: none; margin-left: 0.75rem; }
.footer__copy a:hover { color: var(--c-text-2); }
.footer__status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--c-text-3);
}
.footer__status-dot {
  width: 7px; height: 7px;
  background: var(--c-green);
  border-radius: 50%;
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

/* ═══════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════ */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-surface);
  color: var(--c-accent);
  border: 1px solid var(--c-border-mid);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0 0 0 / 0.5), 0 0 0 1px var(--c-border);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#back-to-top:hover {
  border-color: var(--c-accent);
  box-shadow: 0 4px 24px var(--c-accent-glow), 0 0 0 1px var(--c-border);
  transform: translateY(-3px);
}
#back-to-top:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
}
#back-to-top:active {
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   AUTOMATION PAGE — NEW COMPONENTS
═══════════════════════════════════════ */

/* 3-step process grid */
@media (min-width: 640px) {
  .process__grid--3 { grid-template-columns: repeat(3, 1fr); }
}
/* Suppress default tablet vertical connectors, apply horizontal instead */
@media (min-width: 640px) and (max-width: 1023px) {
  .process__grid--3 .proc-step:nth-child(1)::after,
  .process__grid--3 .proc-step:nth-child(2)::after { display: none; }
  .process__grid--3 .proc-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: calc(var(--sp-8) + 23px);
    right: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, rgba(0 212 255 / 0.45), transparent);
    display: block;
  }
  .process__grid--3 .proc-step:not(:first-child)::before {
    content: '';
    position: absolute;
    top: calc(var(--sp-8) + 23px);
    left: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(0 212 255 / 0.45));
    display: block;
  }
}

/* Help / what-I-do grid (3-col on desktop for 6 cards) */
.help-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 520px) { .help-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .help-grid { grid-template-columns: repeat(3, 1fr); } }

/* Who This Is For */
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
@media (min-width: 700px) { .who-grid { grid-template-columns: 1fr 1fr; } }

.who-col {
  background: var(--c-elevated);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.who-col:hover {
  border-color: rgba(0 212 255 / 0.25);
  box-shadow: 0 8px 40px rgb(0 0 0 / 0.35);
}
.who-col::before {
  content: '';
  position: absolute;
  top: 0; left: var(--sp-6); right: var(--sp-6);
  height: 2px;
  background: var(--c-accent);
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.who-col:hover::before { opacity: 1; }

.who-col__title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.who-col__ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 1.1rem;
}

.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.who-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.9rem;
  color: var(--c-text-2);
  line-height: 1.65;
}
.who-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--c-accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55em;
}

/* Discovery Session Card */
.discovery-card {
  background: var(--c-elevated);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-8);
  position: relative;
  overflow: hidden;
}
.discovery-card::before {
  left: var(--sp-8); right: var(--sp-8);
  height: 3px;
}
.discovery-card::after {
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(0 212 255 / 0.06) 0%, transparent 65%);
}

.discovery-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  position: relative;
  z-index: 1;
}
@media (min-width: 800px) {
  .discovery-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: var(--sp-12);
  }
}

.discovery-hl {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: var(--sp-5);
}
.discovery-hl em { font-style: normal; color: var(--c-accent); }

.discovery-body {
  font-size: 0.97rem;
  color: var(--c-text-2);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
}

.discovery-points {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.discovery-point {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.discovery-point__ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 1rem;
}
.discovery-point__title {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-1);
}
.discovery-point__desc {
  font-size: 0.85rem;
  color: var(--c-text-2);
  line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(0 212 255 / 0.05) 0%, transparent 70%);
  border: 1px solid rgba(0 212 255 / 0.14);
  border-radius: var(--r-xl);
  padding: var(--sp-16) var(--sp-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0 212 255 / 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
}
.cta-banner__title {
  font-family: var(--f-display);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: var(--sp-5);
}
.cta-banner__title em { font-style: normal; color: var(--c-accent); }
.cta-banner__sub {
  font-size: 1rem;
  color: var(--c-text-2);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
}

/* ── Accessibility utilities ────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ── Cookie consent banner ──────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 9999;
  width: min(340px, calc(100vw - 3rem));
  background: var(--elevated);
  border-top: 2px solid var(--accent);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-5) var(--sp-4);
  box-shadow:
    0 2px 4px rgba(0 0 0 / 0.3),
    0 8px 24px rgba(0 0 0 / 0.45),
    0 0 0 1px rgba(255 255 255 / 0.07);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner.is-hiding {
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
}

.cookie-banner__title {
  font-family: var(--ff-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-1);
  margin: 0 0 var(--sp-2);
  letter-spacing: -0.01em;
}

.cookie-banner__body {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 var(--sp-3);
}

.cookie-banner__details {
  margin-bottom: var(--sp-4);
}

.cookie-banner__details summary {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  user-select: none;
  transition: opacity 0.15s ease;
}

.cookie-banner__details summary::-webkit-details-marker { display: none; }

.cookie-banner__details summary::before {
  content: '›';
  display: inline-block;
  transition: transform 0.2s ease;
  font-size: 1rem;
  line-height: 1;
}

.cookie-banner__details[open] summary::before {
  transform: rotate(90deg);
}

.cookie-banner__details summary:hover { opacity: 0.8; }

.cookie-banner__details ul {
  margin: var(--sp-3) 0 0;
  padding-left: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.cookie-banner__details li {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-2);
}

.cookie-banner__details li strong {
  color: var(--text-1);
  font-weight: 600;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--sp-2);
}

.cookie-banner__btn {
  flex: 1;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: opacity 0.15s ease, transform 0.15s ease;
  line-height: 1;
}

.cookie-banner__btn:hover { opacity: 0.85; transform: translateY(-1px); }
.cookie-banner__btn:active { transform: translateY(0); }

.cookie-banner__btn--accept {
  background: var(--accent);
  color: var(--base);
}

.cookie-banner__btn--decline {
  background: transparent;
  color: var(--text-2);
  border-color: rgba(255 255 255 / 0.12);
}

.cookie-banner__btn--decline:hover {
  color: var(--text-1);
  border-color: rgba(255 255 255 / 0.25);
}

@media (max-width: 1023px) {
  .cookie-banner {
    bottom: calc(64px + env(safe-area-inset-bottom, 0px) + 1rem);
  }
}
