/* ==========================================================================
   home.v3.css — ClayDesk Infotech homepage (premium rebuild, June 2026)
   Dark cinematic direction. Palette: brand navy ink / bone / brand cyan.
   Type: Satoshi (display + body) · Instrument Serif (italic accents) ·
   JetBrains Mono (regulatory data). Nav + footer markup from navbar.v2.js /
   footer.v2.js; nav re-skinned dark for the homepage below.
   ========================================================================== */

:root {
  /* Palette — derived from the ClayDesk Infotech logo (navy + cyan) */
  --ink:          #050E1D;   /* deepest brand navy */
  --ink-2:        #081A33;
  --ink-3:        #0E2747;
  --bone:         #F4F3F0;
  --paper:        #FFFFFF;
  --accent:       #1FA9E8;   /* brand cyan (logo INFOTECH) */
  --accent-bright:#5BC4F2;
  --accent-deep:  #0E78AC;   /* cyan dark enough for text on light */
  --accent-dim:   rgba(31, 169, 232, 0.45);
  --navy:         #0B2A4A;   /* logo wordmark navy */
  --text-ink:     #0F1722;
  --text-mid:     #455161;
  --text-soft:    #6B7686;
  --snow:         #F7FAFD;
  --snow-70:      rgba(247, 250, 253, 0.74);
  --snow-45:      rgba(247, 250, 253, 0.46);
  --line-dark:    rgba(247, 250, 253, 0.12);
  --line-light:   rgba(15, 23, 34, 0.14);

  /* Type */
  --f-display: 'Satoshi', 'Inter', system-ui, sans-serif;
  --f-serif:   'Instrument Serif', Georgia, serif;
  --f-mono:    'JetBrains Mono', 'SF Mono', monospace;

  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Base ────────────────────────────────────────────────────────────── */

.home-v3 {
  background: var(--bone);
  color: var(--text-ink);
  font-family: var(--f-display);
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.home-v3 ::selection { background: var(--accent); color: var(--ink); }

.shell {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.serif-accent {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ── Reveal (safe-by-default: hidden ONLY when .js-anim on <html>) ───── */

.js-anim .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.js-anim .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js-anim .reveal { opacity: 1; transform: none; transition: none; }
  .home-v3 *, .home-v3 *::before, .home-v3 *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* (Nav + footer re-skin lives in theme.v3.css, applied site-wide.) */

/* ══ 1. HERO — cinematic ink canvas + three-service slider ═══════════ */

.hero-wrap { padding: 0.75rem 0.75rem 0; }

.hero-canvas {
  position: relative;
  background:
    radial-gradient(110% 90% at 50% -10%, var(--ink-2) 0%, var(--ink) 55%);
  border-radius: clamp(1.25rem, 2.5vw, 2.25rem);
  overflow: hidden;
  isolation: isolate;
}

/* Aurora — layered drifting gradients in brand navy + cyan */
.hero-aurora {
  position: absolute;
  inset: -25%;
  z-index: -2;
  background:
    radial-gradient(40% 50% at 80% 16%, rgba(31, 169, 232, 0.20), transparent 65%),
    radial-gradient(46% 56% at 14% 88%, rgba(14, 78, 140, 0.45), transparent 70%),
    radial-gradient(60% 48% at 55% 112%, rgba(11, 42, 74, 0.65), transparent 72%),
    radial-gradient(30% 34% at 94% 76%, rgba(91, 196, 242, 0.10), transparent 60%);
  filter: blur(36px);
  animation: aurora-drift 26s ease-in-out infinite alternate;
}
@keyframes aurora-drift {
  from { transform: translate3d(-2.5%, -2%, 0) scale(1); }
  to   { transform: translate3d(2.5%, 2.5%, 0) scale(1.07); }
}

/* Fine engineering grid, faded by mask */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(91, 196, 242, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 196, 242, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(75% 65% at 50% 30%, black 25%, transparent 78%);
          mask-image: radial-gradient(75% 65% at 50% 30%, black 25%, transparent 78%);
}

/* Network constellation — animated data paths behind the headline */
.hero-net {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
}
.hero-net .net-path {
  fill: none;
  stroke: rgba(91, 196, 242, 0.22);
  stroke-width: 1;
  stroke-dasharray: 6 8;
  animation: net-dash 4.5s linear infinite;
}
.hero-net .net-node {
  fill: rgba(91, 196, 242, 0.55);
}
.hero-net .net-node.dim { fill: rgba(91, 196, 242, 0.25); }
@keyframes net-dash { to { stroke-dashoffset: -56; } }

/* Film grain */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem) 0;
  text-align: center;
}

/* ── Slider mechanics: slides stacked in one grid cell, crossfade ──── */

.hero-slides {
  display: grid;
}
.hs-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), visibility 0s linear 0.6s;
  pointer-events: none;
}
.hs-slide.active {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.6s var(--ease-out) 0.15s, transform 0.6s var(--ease-out) 0.15s, visibility 0s;
  pointer-events: auto;
}
.no-js .hs-slide:first-child,
html:not(.js-anim) .hs-slide:first-child { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }

.hero-eyebrow {
  color: var(--accent-bright);
  justify-content: center;
  flex-wrap: wrap;
}
.hero-eyebrow::before { display: none; }
.hero-eyebrow .pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 0 rgba(91, 196, 242, 0.6);
  animation: pulse-ring 2.6s var(--ease-out) infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(91, 196, 242, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(91, 196, 242, 0); }
  100% { box-shadow: 0 0 0 0 rgba(91, 196, 242, 0); }
}

.hero-h1 {
  margin: 1.75rem auto 0;
  max-width: 18ch;
  color: var(--snow);
  font-size: clamp(2.75rem, 7vw, 6.25rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.hero-h1 .serif-accent {
  color: var(--accent-bright);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero-sub {
  margin: 2rem auto 0;
  max-width: 56ch;
  color: var(--snow-70);
  font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
  font-weight: 450;
  line-height: 1.65;
  text-wrap: pretty;
}

.hero-cta-row {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  padding: 1.1rem 1.5rem 1.1rem 1.9rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  box-shadow: 0 12px 40px -12px rgba(31, 169, 232, 0.5);
}
.btn-accent:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 18px 52px -12px rgba(31, 169, 232, 0.6);
}
.btn-accent .btn-orb {
  display: grid;
  place-items: center;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent-bright);
  transition: transform 0.25s var(--ease-out);
}
.btn-accent:hover .btn-orb { transform: translateX(3px); }

.link-quiet {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--snow-70);
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 2px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.link-quiet:hover { color: var(--snow); border-color: var(--snow-45); }

/* ── Slider tabs ─────────────────────────────────────────────────────── */

.hero-tabs {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.hero-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--f-mono);
  font-size: 0.71875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--snow-45);
  background: rgba(247, 250, 253, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.hero-tab:hover { color: var(--snow); border-color: var(--snow-45); }
.hero-tab .tab-num { color: var(--accent-bright); opacity: 0.7; }
.hero-tab.active {
  color: var(--snow);
  border-color: var(--accent-dim);
  background: rgba(31, 169, 232, 0.10);
}
.hero-tab .tab-progress {
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}
.hero-tab.active .tab-progress { animation: tab-fill 8s linear forwards; }
.hero-tabs.paused .hero-tab.active .tab-progress { animation-play-state: paused; }
@keyframes tab-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) {
  .hero-tab.active .tab-progress { animation: none; transform: scaleX(1); }
}

/* Hero credentials row */
.hero-creds {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 2.5rem;
  row-gap: 0.875rem;
  font-family: var(--f-mono);
  font-size: 0.71875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--snow-45);
}
.hero-creds span { display: inline-flex; align-items: center; gap: 0.625rem; }
.hero-creds .tick { color: var(--accent-bright); font-family: var(--f-display); }

/* ── Mandate horizon — marquee artifact ──────────────────────────────── */

.horizon {
  position: relative;
  z-index: 1;
  margin-top: clamp(3rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.horizon-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1.5rem, 5vw, 5rem) 1.25rem;
}
.horizon-label {
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--snow-45);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.horizon-label .live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse-ring 2.6s var(--ease-out) infinite;
}
.horizon-link {
  font-size: 0.875rem;
  color: var(--accent-bright);
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.horizon-link:hover { color: var(--snow); }

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding-inline: 1rem;
  animation: marquee-scroll 56s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}

.mandate-card {
  flex: 0 0 auto;
  width: 308px;
  background: rgba(247, 250, 253, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: 1rem;
  padding: 1.25rem 1.375rem;
  backdrop-filter: blur(8px);
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
}
.mandate-card:hover {
  border-color: var(--accent-dim);
  background: rgba(247, 250, 253, 0.065);
}
.mandate-card .mc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.mandate-card .mc-code {
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-bright);
  border: 1px solid var(--accent-dim);
  border-radius: 0.375rem;
  padding: 0.2rem 0.5rem;
}
.mandate-card .mc-status {
  font-family: var(--f-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--snow-45);
}
.mandate-card .mc-name {
  color: var(--snow);
  font-weight: 700;
  font-size: 0.9875rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}
.mandate-card .mc-note {
  color: var(--snow-45);
  font-size: 0.8125rem;
  line-height: 1.5;
}
.mandate-card .mc-note strong { color: var(--accent-bright); font-weight: 600; }

/* ══ 2. STATEMENT — editorial, bone + flow diagram ═══════════════════ */

.statement { padding: clamp(5rem, 10vw, 8.5rem) 0 clamp(4rem, 8vw, 7rem); }

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 900px) {
  .statement-grid { grid-template-columns: 1fr; }
}

.statement .eyebrow { color: var(--text-soft); }

.statement-h2 {
  margin-top: 1.5rem;
  font-size: clamp(2.5rem, 5.2vw, 4.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text-ink);
}
.statement-h2 .serif-accent { color: var(--accent-deep); }

.statement-copy {
  margin-top: 2rem;
  max-width: 58ch;
  color: var(--text-mid);
  font-size: 1.125rem;
  line-height: 1.75;
}
.statement-copy + .statement-copy { margin-top: 1.25rem; }
.statement-copy strong { color: var(--text-ink); font-weight: 700; }

.proof-list { border-top: 1px solid var(--line-light); margin-top: 0.5rem; }
.proof-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line-light);
}
.proof-item .pi-num {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--accent-deep);
  padding-top: 0.3rem;
}
.proof-item h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.375rem;
}
.proof-item p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-mid);
}

/* Flow diagram — ERP → GoRoute AP → Authority */
.flow-panel {
  margin-top: clamp(3rem, 5vw, 4.5rem);
  background: var(--ink);
  border-radius: clamp(1rem, 2vw, 1.75rem);
  padding: clamp(1.75rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.flow-panel::before {
  content: '';
  position: absolute;
  inset: -30%;
  z-index: -1;
  background:
    radial-gradient(40% 60% at 88% 10%, rgba(31, 169, 232, 0.16), transparent 65%),
    radial-gradient(46% 56% at 6% 100%, rgba(14, 78, 140, 0.4), transparent 70%);
  filter: blur(36px);
}
.flow-panel .flow-label {
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--snow-45);
  display: block;
  margin-bottom: 1.75rem;
}
.flow-row {
  display: grid;
  grid-template-columns: 1fr auto 1.3fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 760px) {
  .flow-row { grid-template-columns: 1fr; }
  .flow-link { transform: rotate(90deg); justify-self: center; }
}
.flow-node {
  background: rgba(247, 250, 253, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: 1rem;
  padding: 1.25rem 1.375rem;
  text-align: center;
}
.flow-node.flow-core {
  border-color: var(--accent-dim);
  background: rgba(31, 169, 232, 0.09);
  box-shadow: 0 0 48px -12px rgba(31, 169, 232, 0.35);
}
.flow-node .fn-kicker {
  font-family: var(--f-mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--snow-45);
  display: block;
  margin-bottom: 0.5rem;
}
.flow-node .fn-name {
  display: block;
  color: var(--snow);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.015em;
}
.flow-node.flow-core .fn-name { color: var(--accent-bright); }
.flow-node .fn-sub {
  display: block;
  color: var(--snow-45);
  font-size: 0.78125rem;
  margin-top: 0.375rem;
}
.flow-link { width: 56px; height: 12px; flex: none; }
.flow-link line {
  stroke: var(--accent-dim);
  stroke-width: 1.5;
  stroke-dasharray: 5 6;
  animation: net-dash 3s linear infinite;
}
.flow-link polygon { fill: var(--accent-bright); }

/* ══ 3. SERVICES INDEX — inverted hover rows ═════════════════════════ */

.services { background: var(--paper); padding: clamp(5rem, 10vw, 8.5rem) 0; }

.services-head { max-width: 64ch; margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.services-head .eyebrow { color: var(--text-soft); }
.services-head h2 {
  margin-top: 1.5rem;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.services-head p {
  margin-top: 1.25rem;
  color: var(--text-mid);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 56ch;
}

.svc-row {
  display: grid;
  grid-template-columns: auto auto minmax(0, 5fr) minmax(0, 6fr) auto;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.75rem, 3vw, 2.75rem) clamp(1rem, 2.5vw, 2rem);
  border-top: 1px solid var(--line-light);
  text-decoration: none;
  color: inherit;
  border-radius: 1.25rem;
  transition: background 0.35s var(--ease-out), color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  cursor: pointer;
}
.svc-row:last-of-type { border-bottom: 1px solid var(--line-light); }
.svc-row:hover {
  background: var(--ink);
  color: var(--snow);
  border-color: transparent;
  transform: scale(1.012);
}
.svc-row:hover + .svc-row { border-top-color: transparent; }

.svc-num {
  font-family: var(--f-mono);
  font-size: 0.8125rem;
  color: var(--accent-deep);
  transition: color 0.35s;
}
.svc-row:hover .svc-num { color: var(--accent-bright); }

.svc-icon {
  display: grid;
  place-items: center;
  width: 3.25rem; height: 3.25rem;
  border-radius: 1rem;
  background: rgba(31, 169, 232, 0.10);
  color: var(--accent-deep);
  transition: background 0.35s, color 0.35s;
  flex: none;
}
.svc-row:hover .svc-icon { background: rgba(31, 169, 232, 0.18); color: var(--accent-bright); }

.svc-title {
  font-size: clamp(1.5rem, 3vw, 2.375rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  flex-wrap: wrap;
  color: inherit;
}
.svc-tag {
  font-family: var(--f-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  transform: translateY(-0.4em);
  transition: color 0.35s;
}
.svc-row:hover .svc-tag { color: var(--accent-bright); }

.svc-desc {
  font-size: 0.96875rem;
  line-height: 1.65;
  color: var(--text-mid);
  transition: color 0.35s;
  max-width: 52ch;
}
.svc-row:hover .svc-desc { color: var(--snow-70); }

.svc-arrow {
  display: grid;
  place-items: center;
  width: 3rem; height: 3rem;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  transition: background 0.35s, border-color 0.35s, color 0.35s, transform 0.35s var(--ease-out);
}
.svc-row:hover .svc-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .svc-row { grid-template-columns: auto auto 1fr auto; }
  .svc-desc { grid-column: 2 / 4; grid-row: 2; }
  .svc-num { align-self: start; padding-top: 0.75rem; }
}

/* ══ 4. COVERAGE — dark band + globe ═════════════════════════════════ */

.coverage-wrap { padding: 0.75rem; background: var(--paper); }
.coverage {
  background: var(--ink);
  border-radius: clamp(1.25rem, 2.5vw, 2.25rem);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.coverage::before {
  content: '';
  position: absolute;
  inset: -30%;
  z-index: -1;
  background:
    radial-gradient(42% 52% at 85% 8%, rgba(14, 78, 140, 0.5), transparent 70%),
    radial-gradient(36% 44% at 8% 96%, rgba(31, 169, 232, 0.12), transparent 65%);
  filter: blur(40px);
}

/* Decorative dotted globe */
.cov-globe {
  position: absolute;
  top: clamp(-3rem, -2vw, -1rem);
  right: clamp(-6rem, -4vw, -2rem);
  width: clamp(280px, 36vw, 520px);
  height: auto;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.cov-globe circle.meridian, .cov-globe ellipse {
  fill: none;
  stroke: rgba(91, 196, 242, 0.16);
  stroke-width: 1;
}
.cov-globe .gnode { fill: var(--accent-bright); opacity: 0.65; }
.cov-globe .gnode.dim { opacity: 0.3; }
.cov-globe .garc {
  fill: none;
  stroke: rgba(91, 196, 242, 0.35);
  stroke-width: 1.2;
  stroke-dasharray: 4 7;
  animation: net-dash 5s linear infinite;
}

.coverage .shell { position: relative; z-index: 1; }
.coverage .eyebrow { color: var(--accent-bright); }
.coverage h2 {
  margin-top: 1.5rem;
  color: var(--snow);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.04;
  max-width: 18ch;
}
.coverage .coverage-sub {
  margin-top: 1.25rem;
  color: var(--snow-70);
  font-size: 1.0938rem;
  line-height: 1.7;
  max-width: 52ch;
}
.coverage-sub strong { color: var(--accent-bright); font-weight: 600; }

.coverage-grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
@media (max-width: 980px) { .coverage-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .coverage-grid { grid-template-columns: 1fr; } }

.cov-col {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.cov-col:last-child { border-right: none; }
@media (max-width: 980px) { .cov-col:nth-child(2n) { border-right: none; } }
@media (max-width: 560px) { .cov-col { border-right: none; } }

.cov-col .cc-region {
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 1.125rem;
  display: block;
}
.cov-col ul { list-style: none; padding: 0; margin: 0; }
.cov-col li { margin-bottom: 0.625rem; }
.cov-col li:last-child { margin-bottom: 0; }
.cov-col a, .cov-col span.cv {
  color: var(--snow-70);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.2s;
}
.cov-col a:hover { color: var(--accent-bright); }
.cov-col .cv-note {
  font-size: 0.78125rem;
  color: var(--snow-45);
  font-style: italic;
}

.coverage-cta { margin-top: clamp(2.5rem, 4vw, 3.5rem); text-align: center; }

/* ══ 5. PROCESS ══════════════════════════════════════════════════════ */

.process { padding: clamp(5rem, 10vw, 8.5rem) 0; }

.process-head { max-width: 64ch; margin-bottom: clamp(3rem, 5vw, 4rem); }
.process-head .eyebrow { color: var(--text-soft); }
.process-head h2 {
  margin-top: 1.5rem;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--line-light);
}
@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

.step {
  padding: 0 1.75rem 0.5rem;
  border-right: 1px solid var(--line-light);
  position: relative;
}
@media (max-width: 980px) { .step { padding-bottom: 2.5rem; } }

.step .step-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--accent-deep);
  display: block;
  margin-bottom: 1.25rem;
}
.step h4 {
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.625rem;
}
.step p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.step .step-meta {
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ══ 6. ENGAGEMENT TIERS ═════════════════════════════════════════════ */

.tiers { background: var(--paper); padding: clamp(5rem, 10vw, 8.5rem) 0; }

.tiers-head { max-width: 64ch; margin-bottom: clamp(3rem, 5vw, 4rem); }
.tiers-head .eyebrow { color: var(--text-soft); }
.tiers-head h2 {
  margin-top: 1.5rem;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.tiers-head p {
  margin-top: 1.25rem;
  color: var(--text-mid);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 58ch;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
@media (max-width: 980px) { .tier-grid { grid-template-columns: 1fr; max-width: 540px; } }

.tier {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-light);
  border-radius: 1.5rem;
  padding: 2.25rem 2rem;
  background: var(--bone);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.tier:hover { transform: translateY(-4px); box-shadow: 0 24px 60px -24px rgba(5, 14, 29, 0.18); }

.tier.tier-featured {
  background: var(--ink);
  color: var(--snow);
  border-color: var(--ink);
  position: relative;
}
.tier-flag {
  position: absolute;
  top: -0.8125rem;
  right: 1.75rem;
  font-family: var(--f-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.375rem 0.875rem;
}

.tier h3 { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 0.375rem; color: inherit; }
.tier-featured h3 { color: var(--snow); }
.tier .tier-sub { font-size: 0.875rem; color: var(--text-soft); margin-bottom: 1.75rem; }
.tier-featured .tier-sub { color: var(--snow-45); }

.tier ul { list-style: none; padding: 0; margin: 0 0 2rem; flex: 1; }
.tier li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-mid);
  padding: 0.4375rem 0;
}
.tier-featured li { color: var(--snow-70); }
.tier li .tick { color: var(--accent-deep); font-weight: 700; flex: none; }
.tier-featured li .tick { color: var(--accent-bright); }

.tier-btn {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 0.96875rem;
  padding: 0.96875rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--text-ink);
  color: var(--text-ink);
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}
.tier-btn:hover { background: var(--text-ink); color: var(--bone); }
.tier-featured .tier-btn { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.tier-featured .tier-btn:hover { background: var(--accent-bright); border-color: var(--accent-bright); }

.pricing-note {
  margin-top: 2.5rem;
  max-width: 72ch;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-soft);
}
.pricing-note strong { color: var(--text-ink); }

/* ── ERP strip ───────────────────────────────────────────────────────── */

.erp-strip { border-top: 1px solid var(--line-light); margin-top: clamp(3.5rem, 6vw, 5rem); padding-top: clamp(2.5rem, 4vw, 3.5rem); }
.erp-strip .erp-label {
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: block;
  text-align: center;
  margin-bottom: 1.75rem;
}
.erp-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: clamp(1.5rem, 4vw, 3.25rem);
  row-gap: 1rem;
}
.erp-row a {
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
.erp-row a:hover { color: var(--accent-deep); }

/* ══ 7. COMMITMENT + FINAL CTA — cinematic close ═════════════════════ */

.finale-wrap { padding: 0.75rem; }
.finale {
  background: var(--ink);
  border-radius: clamp(1.25rem, 2.5vw, 2.25rem);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.finale::before {
  content: '';
  position: absolute;
  inset: -30%;
  z-index: -1;
  background:
    radial-gradient(44% 54% at 50% 118%, rgba(31, 169, 232, 0.18), transparent 68%),
    radial-gradient(48% 56% at 12% -8%, rgba(14, 78, 140, 0.5), transparent 70%);
  filter: blur(40px);
}

.finale .eyebrow { color: var(--accent-bright); justify-content: center; }
.finale .eyebrow::before { display: none; }

.finale-h2 {
  margin: 1.75rem auto 0;
  max-width: 22ch;
  color: var(--snow);
  font-size: clamp(2.5rem, 5.6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-wrap: balance;
}
.finale-h2 .serif-accent { color: var(--accent-bright); font-weight: 400; }

.finale-sub {
  margin: 1.75rem auto 0;
  max-width: 52ch;
  color: var(--snow-70);
  font-size: 1.125rem;
  line-height: 1.7;
}

.finale-cta-row {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.finale-note {
  margin-top: 3rem;
  font-family: var(--f-mono);
  font-size: 0.71875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--snow-45);
}

.home-v3 .footer-gap { height: 0.75rem; }
