/* ============================================================
   FlowCrafts — main.css
   Organised: tokens → reset → base → layout → components
              → sections → utilities → animations
   ============================================================ */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Colour palette */
  color-scheme: light;
  --ink:         #281E22;
  --ink-soft:    #403238;
  --lime:        #722F45;
  --lime-deep:   #572235;
  --lime-glow:   rgba(114,47,69,.09);
  --forest:      #F3E9EC;
  --paper:       #FAF8F7;
  --card:        #FFFFFF;
  --line:        #E8DFE1;
  --text:        #281E22;
  --text-muted:  #685E62;
  --red-soft:    #C0392B;
  --red-bg:      #FEF0EE;

  /* Radii */
  --r-card:   20px;
  --r-btn:    999px;
  --r-input:  12px;
  --r-chip:   8px;

  /* Shadows */
  --shadow-card: 0 1px 2px rgba(10,13,11,.04), 0 12px 32px rgba(10,13,11,.06);
  --shadow-hover: 0 2px 4px rgba(10,13,11,.06), 0 20px 48px rgba(10,13,11,.12);
  --shadow-btn:  0 4px 14px rgba(114,47,69,.28);

  /* Easing */
  --ease-out:   cubic-bezier(.22,1,.36,1);
  --ease-in:    cubic-bezier(.55,0,1,.45);

  /* Transitions */
  --t-fast: 150ms var(--ease-out);
  --t-base: 220ms var(--ease-out);
  --t-slow: 600ms var(--ease-out);

  /* Spacing scale (8px base) */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-10: 80px;

  /* Section vertical padding */
  --section-py: clamp(56px, 6vw, 96px);

  /* Container */
  --container-max: 1240px;
  --container-px:  clamp(16px, 4vw, 24px);

  /* Typography */
  --font-head: 'Plus Jakarta Sans', 'General Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Header height */
  --header-h: 72px;
}

/* ── 2. RESET ─────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}
button { cursor: pointer; }
table { border-collapse: collapse; }

/* ── 3. BASE TYPOGRAPHY ───────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; letter-spacing: -0.02em; }

p { max-width: 65ch; line-height: 1.65; }

.text-muted { color: var(--text-muted); }
.text-lime  { color: var(--lime); }
.text-small { font-size: 0.9375rem; }

::selection { background: var(--lime); color: var(--ink); }

/* ── 4. LAYOUT ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section { padding-block: var(--section-py); }
.section--dark {
  background: var(--ink);
  color: var(--paper);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }
.section--forest {
  background: var(--forest);
  color: var(--paper);
}
.section--forest h2,
.section--forest h3 { color: #fff; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--sp-4); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); }

/* ── 5. COMPONENTS ────────────────────────────────────────── */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-btn);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  transition: var(--t-base);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}
.btn--primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: var(--shadow-btn);
  overflow: hidden;
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  animation: btn-shimmer 2.8s cubic-bezier(.4,0,.6,1) infinite;
  animation-delay: .8s;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .btn--primary::after { animation: none; }
}
.btn--primary:hover {
  background: var(--lime-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(114,47,69,.36);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}
.btn--ghost-dark {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn--ghost-dark:hover {
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

.btn--icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn--primary .btn--icon-circle {
  background: #fff;
  color: var(--ink);
}

/* Cards */
.card {
  background: var(--card);
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: var(--sp-4);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card--dark {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
}
.card--featured {
  border-color: var(--lime);
  box-shadow: 0 0 0 1px var(--lime), var(--shadow-hover);
  transform: scale(1.03);
}
.card--featured:hover { transform: scale(1.03) translateY(-4px); }

/* Icon chip */
.icon-chip {
  width: 48px;
  height: 48px;
  border-radius: var(--r-chip);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-chip--lime   { background: var(--lime-glow); color: var(--lime-deep); }
.icon-chip--ink    { background: var(--ink); color: #fff; }
.icon-chip--small  { width: 36px; height: 36px; border-radius: 6px; }

/* Pill / badge */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-btn);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.pill--trust {
  background: rgba(114,47,69,.12);
  color: var(--lime-deep);
  border: 1px solid rgba(114,47,69,.3);
}
.pill--muted {
  background: var(--paper);
  color: var(--text-muted);
  border: 1px solid var(--line);
}
.pill--chosen {
  background: var(--lime);
  color: var(--ink);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 10px;
}

/* Section label */
.section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}
.section-label--light { color: rgba(255,255,255,.45); }

/* Divider line */
.divider {
  width: 40px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
  margin: var(--sp-2) 0 var(--sp-3);
}

/* Form elements */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--r-input);
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--text);
  font-size: 0.9375rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--lime-deep);
  box-shadow: 0 0 0 3px var(--lime-glow);
}
.form-input::placeholder,
.form-textarea::placeholder { color: #A8B4A9; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235B655C' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-input.error,
.form-textarea.error,
.form-select.error { border-color: var(--red-soft); box-shadow: 0 0 0 3px rgba(192,57,43,.1); }
.form-error {
  font-size: 0.8125rem;
  color: var(--red-soft);
  display: none;
}
.form-error.visible { display: block; }

/* Honeypot */
.hp-field { display: none !important; visibility: hidden; }

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 0; }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__item:first-child { border-top: 1px solid var(--line); }
.accordion__btn {
  width: 100%;
  padding: var(--sp-3) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: -0.01em;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--t-fast);
}
.accordion__btn:hover { color: var(--lime-deep); }
.accordion__btn[aria-expanded="true"] { color: var(--lime-deep); }
.accordion__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-base), background var(--t-fast), border-color var(--t-fast);
}
.accordion__btn[aria-expanded="true"] .accordion__icon {
  transform: rotate(45deg);
  background: var(--lime-glow);
  border-color: var(--lime);
}
.accordion__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 400ms var(--ease-out);
}
.accordion__body-inner {
  padding-bottom: var(--sp-3);
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.accordion__item.open .accordion__body { max-height: 400px; }
.section--dark .accordion__item { border-color: rgba(255,255,255,.1); }
.section--dark .accordion__btn { color: rgba(255,255,255,.85); }
.section--dark .accordion__btn:hover,
.section--dark .accordion__btn[aria-expanded="true"] { color: var(--lime); }
.section--dark .accordion__icon { border-color: rgba(255,255,255,.2); }
.section--dark .accordion__body-inner { color: rgba(255,255,255,.55); }

/* ── 6. NAVIGATION ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.site-header.scrolled {
  background: rgba(242,244,239,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(10,13,11,.05);
}
.site-header--dark:not(.scrolled) .nav__link { color: rgba(255,255,255,.8); }
.site-header--dark:not(.scrolled) .nav__link:hover { color: #fff; }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo__wordmark {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.site-header--dark:not(.scrolled) .logo__wordmark { color: #fff; }
.site-header--dark:not(.scrolled) .logo__mark { background: rgba(255,255,255,.12); }

.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color var(--t-fast), background var(--t-fast);
  letter-spacing: -0.01em;
  position: relative;
}
.nav__link:hover { color: var(--lime-deep); background: transparent; }
.nav__link.active { color: var(--lime-deep); }

/* Dropdown */
.nav__item--dropdown { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-hover);
  padding: var(--sp-2);
  min-width: 260px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-base);
  transform: translateX(-50%) translateY(8px);
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav__dropdown-link:hover { background: var(--paper); color: var(--lime-deep); }
.nav__dropdown-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime-deep);
  flex-shrink: 0;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav__dropdown-link:hover .nav__dropdown-icon {
  background: var(--lime-glow);
  border-color: rgba(114,47,69,.3);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text);
  transition: background var(--t-fast);
}
.nav-toggle:hover { background: rgba(10,13,11,.05); }

/* Mobile overlay menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  padding: var(--sp-8) var(--sp-3) var(--sp-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }
.nav-overlay__links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: var(--sp-8);
}
.nav-overlay__link {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 700;
  color: rgba(255,255,255,.9);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color var(--t-fast);
  opacity: 0;
  transform: translateY(16px);
}
.nav-overlay.open .nav-overlay__link { opacity: 1; transform: translateY(0); }
.nav-overlay__link:hover { color: var(--lime); }
.nav-overlay__cta {
  margin-top: auto;
  padding-top: var(--sp-4);
  opacity: 0;
  transform: translateY(16px);
  transition-delay: 0.35s;
}
.nav-overlay.open .nav-overlay__cta { opacity: 1; transform: translateY(0); }

/* ── 7. HERO SECTION ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
  padding-top: var(--header-h);
}
.hero--dark { background: var(--ink); }

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 600px) minmax(320px, 420px);
  gap: var(--sp-10);
  align-items: center;
  justify-content: center;
  padding-block: var(--sp-10);
  width: 100%;
}

.hero__content { max-width: 600px; }
.hero__trust { margin-bottom: var(--sp-2); }
.hero__h1 {
  font-size: 56px;
  line-height: 1.18;
  margin-bottom: var(--sp-3);
}

/* Inline icon chip inside H1 */
.hero__inline-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 30px;
  background: rgba(114,47,69,.15);
  border: 1px solid rgba(114,47,69,.35);
  border-radius: 9px;
  color: var(--lime-deep);
  vertical-align: middle;
  margin: 0 3px;
  animation: chip-pulse 2.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes chip-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(114,47,69,0); }
  50%       { box-shadow: 0 0 0 5px rgba(114,47,69,.1); }
}
[data-theme="dark"] .hero__inline-chip {
  background: rgba(114,47,69,.1);
  border-color: rgba(114,47,69,.25);
}
.hero__sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: var(--sp-5);
  max-width: 52ch;
  line-height: 1.7;
}
.hero__h1-line { display: block; }
.hero__actions { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: nowrap; }
.hero__actions .btn { padding: 11px 20px; font-size: 0.875rem; }
.hero__actions .btn--icon-circle { width: 30px; height: 30px; }
.hero__secondary-link {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t-fast), gap var(--t-fast);
  padding: 14px 0;
  white-space: nowrap;
}
.hero__secondary-link:hover { color: var(--text); gap: 10px; }

/* Workflow diagram — premium node layout */
.hero__diagram {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: var(--sp-3) var(--sp-3) var(--sp-4);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  min-width: 340px;
  max-width: 420px;
}

/* Dot grid bg */
.wf-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10,13,11,.10) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}
[data-theme="dark"] .wf-bg {
  background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
}

/* Floating avatars */
.wf-avatars {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  z-index: 2;
}
.wf-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--card);
  margin-left: -8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.wf-avatars .wf-avatar:first-child { margin-left: 0; }

/* Floating AI integration pill — white/light, bottom-right of diagram */
.wf-ai-pill {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  padding: 7px 13px;
  font-size: 0.78125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(10,13,11,.12), 0 1px 4px rgba(10,13,11,.06);
  animation: float 3.5s ease-in-out infinite;
  z-index: 10;
  letter-spacing: -.01em;
  pointer-events: none;
}
.wf-ai-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
[data-theme="dark"] .wf-ai-pill {
  background: #1a2217;
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}

/* Node card */
.wf-node {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.06);
  padding: 12px 14px 10px;
  width: 100%;
  max-width: 290px;
  position: relative;
  z-index: 1;
}
.wf-node__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--card);
  box-shadow: 0 0 0 2px rgba(114,47,69,.35);
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: pulse-dot 2s ease-in-out infinite;
}
.wf-node__dot--btm {
  top: auto;
  bottom: -5px;
}
/* Hide top dot on Trigger (no incoming line) */
.wf-node--trigger .wf-node__dot:not(.wf-node__dot--btm) { display: none; }
.wf-node__top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.wf-node__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--ni, rgba(114,47,69,.15));
  color: var(--nc, #722F45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wf-node__title {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  flex: 1;
}
.wf-node__acts {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.wf-act-btn {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: default;
  flex-shrink: 0;
}
.wf-node__body {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.wf-node__body li {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 2px 0 2px 12px;
  position: relative;
}
.wf-node__body li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  opacity: .5;
}
.wf-node__chips {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

/* Integration chips */
.wf-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  background: var(--cb, var(--paper));
  color: var(--ct, var(--text-muted));
  letter-spacing: .01em;
}
.wf-chip--plus {
  width: 18px;
  height: 18px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--text-muted);
  border: 1px solid var(--line);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

/* Vertical connector line */
.wf-vconn {
  width: 2px;
  height: 22px;
  background: var(--line);
  position: relative;
  z-index: 1;
  overflow: hidden;
  flex-shrink: 0;
}
.wf-vconn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lime);
  animation: flow-down 1.4s linear infinite;
}

/* Branch row (If labels with horizontal lines) */
.wf-branch-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 290px;
  position: relative;
  height: 28px;
  z-index: 1;
}
.wf-branch-row::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20%;
  right: 20%;
  height: 1.5px;
  background: var(--line);
}
.wf-branch-row::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5px;
  height: 50%;
  background: var(--line);
  transform: translateX(-50%);
  top: 0;
}
.wf-branch-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 7px;
  position: relative;
  z-index: 2;
  line-height: 1.4;
}
.wf-branch-label--l { align-self: flex-end; margin-left: 8px; }
.wf-branch-label--r { align-self: flex-end; margin-right: 8px; }
.wf-branch-label--c { align-self: center; }

/* Actions row: two nodes side by side */
.wf-actions-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.wf-actions-row .wf-node {
  max-width: 145px;
  flex: 1;
}

/* Merge row */
.wf-merge-row {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 290px;
  position: relative;
  height: 28px;
  z-index: 1;
}
.wf-merge-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1.5px;
  background: var(--line);
}
.wf-merge-row::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 60%;
  background: var(--line);
  transform: translateX(-50%);
}

/* Dark mode diagram */
[data-theme="dark"] .wf-node {
  background: #1a2217;
  border-color: rgba(255,255,255,.07);
}
[data-theme="dark"] .wf-act-btn {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .wf-chip--plus {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .wf-branch-label {
  background: #1a2217;
  border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .hero__diagram {
  background: #141b11;
  border-color: rgba(255,255,255,.07);
}

/* ── Business Growth Dashboard (hero right panel) ────────── */
.biz-dash {
  gap: 12px;
  padding: 18px 18px 52px; /* bottom padding leaves room for AI pill */
}

/* Header */
.biz-dash__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 1;
}
.biz-dash__title {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.biz-dash__live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--lime-deep);
}
.biz-dash__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

/* KPI metric cards */
.biz-dash__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.biz-dash__metric {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 13px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.biz-dash__metric-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--mi-bg, rgba(114,47,69,.14));
  color: var(--mi-c, #722F45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.biz-dash__metric-value {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.biz-dash__metric-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
}
.biz-dash__metric-badge {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--mb, #722F45);
  margin-top: 3px;
}

/* Divider */
.biz-dash__rule {
  width: 100%;
  height: 1px;
  background: var(--line);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Feed header */
.biz-dash__feed-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 1;
}
.biz-dash__feed-hd > span:first-child {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
}
.biz-dash__badge-count {
  font-size: 0.625rem;
  font-weight: 600;
  background: rgba(114,47,69,.12);
  color: var(--lime-deep);
  border: 1px solid rgba(114,47,69,.22);
  border-radius: 999px;
  padding: 2px 8px;
}

/* Feed list */
.biz-dash__feed {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
  z-index: 1;
}
.biz-dash__item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: feed-slide .35s var(--ease-out) var(--fd, 0s) forwards;
}
@keyframes feed-slide {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}
.biz-dash__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dc, var(--lime));
  flex-shrink: 0;
}
.biz-dash__item-text {
  font-size: 0.6875rem;
  color: var(--text-muted);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.biz-dash__item-time {
  font-size: 0.625rem;
  color: var(--text-muted);
  opacity: .55;
  flex-shrink: 0;
}

/* Progress bar */
.biz-dash__bar-wrap {
  width: 100%;
  position: relative;
  z-index: 1;
}
.biz-dash__bar-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
}
.biz-dash__bar-labels > span:first-child {
  font-size: 0.6875rem;
  color: var(--text-muted);
}
.biz-dash__bar-pct {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--lime-deep);
}
.biz-dash__bar-track {
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.biz-dash__bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--lime-deep), var(--lime));
  border-radius: 999px;
  animation: bar-grow 1.6s .4s var(--ease-out) forwards;
}
@keyframes bar-grow {
  from { width: 0; }
  to   { width: var(--tw, 82%); }
}

/* Dark mode — dashboard */
[data-theme="dark"] .biz-dash__metric {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.07);
}
[data-theme="dark"] .biz-dash__rule {
  background: rgba(255,255,255,.07);
}
[data-theme="dark"] .biz-dash__bar-track {
  background: rgba(255,255,255,.1);
}

/* Tablet — slightly narrower */
@media (max-width: 1200px) {
  .hero__diagram { min-width: 300px; max-width: 360px; }
  .biz-dash__metric-value { font-size: 1.125rem; }
}

/* ── 8. TRUST BAR / MARQUEE ───────────────────────────────── */
.trust-bar {
  margin-top: var(--sp-3);
  padding-block: var(--sp-3) var(--sp-4);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

/* Heading row with flanking lines */
.trust-bar__head {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
  margin-bottom: var(--sp-5);
}
.trust-bar__line {
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, transparent, var(--lime-deep));
}
.trust-bar__line:last-child {
  background: linear-gradient(to left, transparent, var(--lime-deep));
}
.trust-bar__label {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  position: relative;
  padding: 0 18px;
}
/* Lime dot accents flanking the label text */
.trust-bar__label::before,
.trust-bar__label::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}
.trust-bar__label::before { left: 0; }
.trust-bar__label::after  { right: 0; }

/* Single-row marquee */
.marquee-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  will-change: transform;
}
.marquee-track--left { animation: marquee-left 38s linear infinite; }
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }

.marquee-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.42;
  color: var(--text);
  transition: opacity .25s ease;
  height: 44px;
  padding: 0 28px;
  flex-shrink: 0;
  cursor: default;
}
.marquee-logo:hover { opacity: 0.78; }
.marquee-logo svg { height: 32px; width: auto; display: block; }
.marquee-logo img { height: 32px; width: auto; }

/* ── 9. PROCESS / SIGNAL RAIL SECTION ────────────────────── */
.process-section {
  background: var(--ink);
  color: var(--paper);
  padding-block: var(--section-py);
}
.process-section h2 { color: #fff; }
.process-section__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.55);
  max-width: 58ch;
  margin-top: var(--sp-3);
  line-height: 1.7;
}

/* ── Signal Rail ──────────────────────────────────────────── */
.signal-rail {
  margin-top: var(--sp-6);
}

/* Desktop: column layout (track → labels stacked) */
.sr-rail-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

/* Horizontal track */
.sr-track {
  position: relative;
  height: 44px;
}

/* Base line */
.sr-line {
  position: absolute;
  left: calc(5% + 18px);
  right: calc(5% + 18px);
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  background: rgba(255,255,255,.15);
  border-radius: 999px;
}

/* Nodes — positioned at 0%, 33.33%, 66.67%, 100% */
.sr-node {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  cursor: default;
}
.sr-node[data-node="0"] { left: 5%; }
.sr-node[data-node="1"] { left: 35%; }
.sr-node[data-node="2"] { left: 65%; }
.sr-node[data-node="3"] { left: 95%; }

/* Node sub-elements */
.sr-node__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.18);
  transition: border-color .3s ease, background .3s ease;
}
.sr-node__inner {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  transition: background .3s ease, transform .3s ease;
}
.sr-node__num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 800;
  color: rgba(255,255,255,.72);
  transition: color .3s ease, opacity .25s ease;
  z-index: 1;
}
.sr-node__check {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  opacity: 0;
  transform: scale(.5);
  transition: opacity .2s ease, transform .25s var(--ease-out);
  z-index: 2;
}
.sr-node__ripple {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--lime);
  opacity: 0;
  pointer-events: none;
}
.sr-ripple--go {
  animation: sr-ripple .75s ease-out forwards;
}
@keyframes sr-ripple {
  from { opacity: .7; transform: scale(1); }
  to   { opacity: 0; transform: scale(2.4); }
}

/* Node states */
.sr-node--active .sr-node__ring {
  border-color: var(--lime);
  background: var(--lime); /* full lime fill — number clearly readable */
}
.sr-node--active .sr-node__inner {
  background: transparent; /* ring fill does the work */
  transform: none;
}
.sr-node--active .sr-node__num {
  color: var(--ink);
  font-weight: 800;
  font-size: 0.875rem;
}
.sr-node--visited .sr-node__ring  { border-color: rgba(114,47,69,.7); background: rgba(114,47,69,.12); }
.sr-node--visited .sr-node__num   { color: rgba(114,47,69,1); }
.sr-node--checked .sr-node__num   { opacity: 0; }
.sr-node--checked .sr-node__check { opacity: 1; transform: scale(1); }
/* Reduced-motion / all-lit state */
.sr-node--lit .sr-node__ring { border-color: rgba(114,47,69,.45); }
.sr-node--lit .sr-node__num  { color: rgba(114,47,69,.7); }

/* Traveling dot */
.sr-dot {
  --dot-pos: 0%;
  position: absolute;
  top: 50%;
  left: var(--dot-pos);
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(114,47,69,.75), 0 0 32px rgba(114,47,69,.3);
  z-index: 5;
  pointer-events: none;
  /* transition driven by JS via style.transitionDuration */
  transition: left .88s cubic-bezier(.4,0,.2,1),
              top  .88s cubic-bezier(.4,0,.2,1),
              width .25s ease, height .25s ease,
              box-shadow .25s ease, background .25s ease;
}
.sr-dot--return {
  width: 8px;
  height: 8px;
  background: rgba(114,47,69,.5);
  box-shadow: 0 0 8px rgba(114,47,69,.35);
}

/* Labels row — equal 4-column grid, all centered */
.sr-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.sr-label {
  text-align: center;
  opacity: .52;
  transition: opacity .4s ease, background .4s ease;
  padding: var(--sp-3) 10px var(--sp-2);
  border-radius: 14px;
}
.sr-label--active {
  opacity: 1;
  background: rgba(114,47,69,.07);
}
.sr-label__title {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.sr-label__body {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.48);
  line-height: 1.65;
}

/* ── Mobile: vertical rail ─────────────────────────────── */
@media (max-width: 768px) {
  .sr-rail-inner {
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
  }
  .sr-track {
    width: 36px;
    height: auto;
    min-height: 360px;
    flex-shrink: 0;
  }
  .sr-line {
    left: 50%;
    top: calc(5% + 18px);
    bottom: calc(5% + 18px);
    right: auto;
    width: 4px;
    height: auto;
    transform: translateX(-50%);
  }
  /* Re-position nodes vertically — aligned with label rows */
  .sr-node[data-node="0"] { left: 50%; top: 5%; }
  .sr-node[data-node="1"] { left: 50%; top: 35%; }
  .sr-node[data-node="2"] { left: 50%; top: 65%; }
  .sr-node[data-node="3"] { left: 50%; top: 95%; }
  /* Dot travels vertically */
  .sr-dot {
    left: 50% !important;
    top: var(--dot-pos);
    transition: top .88s cubic-bezier(.4,0,.2,1),
                left 0s,
                width .25s ease, height .25s ease,
                box-shadow .25s ease, background .25s ease;
  }
  /* Labels stack vertically */
  .sr-labels {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    gap: 0;
  }
  .sr-label {
    flex: 0 0 auto;
    text-align: left;
  }
}

/* ── 10. SERVICES GRID ────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.service-card {
  background: var(--card);
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: var(--sp-4);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(114,47,69,.4);
}
.service-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-top: var(--sp-1);
}
.service-card__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lime-deep);
  margin-top: var(--sp-1);
  transition: gap var(--t-fast), color var(--t-fast);
}
.service-card:hover .service-card__link { gap: 8px; }
.service-card__link svg { transition: transform var(--t-fast); }
.service-card:hover .service-card__link svg { transform: translateX(3px); }

/* ── 11. HOW WE WORK ──────────────────────────────────────── */
.work-section { padding-block: var(--section-py); }
.work-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.work-checklist { display: flex; flex-direction: column; gap: var(--sp-2); margin-top: var(--sp-4); }
.work-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.work-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.work-check-icon svg { color: var(--lime-deep); }

/* ── 12. STANDARDS ────────────────────────────────────────── */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.standard-item {
  padding: var(--sp-3);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--card);
}
.standard-item__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.standard-item__body { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ── 13. TOOLS DIAGRAM ────────────────────────────────────── */
.tools-section {
  padding-block: var(--section-py);
  background: var(--paper);
  text-align: center;
}
.tools-section h2 { margin-bottom: var(--sp-3); }
.tools-section__sub { color: var(--text-muted); max-width: 52ch; margin-inline: auto; }

.tools-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  position: relative;
  flex-wrap: wrap;
}
.tools-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.tool-icon-chip {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
}
.tool-icon-chip:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.tool-icon-chip img,
.tool-icon-chip svg { width: 28px; height: 28px; }
.tool-icon-chip__label {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: .03em;
}
.tools-center-cta {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: var(--sp-5) var(--sp-4);
  max-width: 280px;
  text-align: center;
}
.tools-paths-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}

/* ── 14. TESTIMONIALS ─────────────────────────────────────── */
.testimonials-section {
  background: var(--forest);
  padding-block: var(--section-py);
  overflow: hidden;
}
.testimonials-section h2 { color: #fff; }
.testimonials-section__sub { color: rgba(255,255,255,.5); max-width: 54ch; margin-inline: auto; }

/* Full-bleed infinite-scroll marquee */
.testimonials-marquee {
  overflow: hidden;
  margin-top: var(--sp-8);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-left 50s linear infinite;
  will-change: transform;
}
.testimonials-marquee:hover .testimonials-track { animation-play-state: paused; }

/* Card — fixed width for seamless marquee */
.testimonial-card {
  width: clamp(290px, 72vw, 360px);
  flex-shrink: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 2px solid var(--lime);
  border-radius: var(--r-card);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.testimonials-marquee:hover .testimonial-card:hover {
  background: rgba(114,47,69,.05);
  border-color: rgba(114,47,69,.25);
  border-top-color: var(--lime);
}

/* 5-star row */
.testimonial-card__stars {
  color: var(--lime);
  font-size: 0.8125rem;
  letter-spacing: 3px;
}

/* Quote */
.testimonial-card__quote {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

/* Author row */
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255,255,255,.08);
}

/* Avatar circle */
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(114,47,69,.12);
  border: 1.5px solid rgba(114,47,69,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--lime);
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9375rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.testimonial-card__role { font-size: 0.8125rem; color: rgba(255,255,255,.45); }
.testimonial-card__flag { margin-left: auto; font-size: 1.25rem; }

/* Video lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
  backdrop-filter: blur(4px);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__inner {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}
.lightbox__inner iframe { width: 100%; height: 100%; border: none; }
.lightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: .7;
  transition: opacity var(--t-fast);
}
.lightbox__close:hover { opacity: 1; }

/* ── 15. PRICING ──────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  align-items: start;
  margin-top: var(--sp-8);
  overflow: visible;   /* allow featured card badge to overflow above grid */
  padding-top: 20px;   /* room for the badge */
}
.pricing-card {
  background: var(--card);
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pricing-card--featured {
  border-color: var(--lime);
  box-shadow: 0 0 0 1px var(--lime), var(--shadow-hover);
  transform: scale(1.03);
  position: relative;
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}
.pricing-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.pricing-card__price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-card__price span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}
.pricing-card__desc { font-size: 0.875rem; color: var(--text-muted); }
.pricing-card__divider { height: 1px; background: var(--line); }
.pricing-card__includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-card__include-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.pricing-card__include-item svg { flex-shrink: 0; color: var(--lime-deep); margin-top: 2px; }
.pricing-card .btn { width: 100%; justify-content: center; }

.pricing-hourly {
  text-align: center;
  margin-top: var(--sp-5);
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.pricing-hourly strong { color: var(--text); font-weight: 600; }

/* Pricing comparison table */
.pricing-table-wrap { overflow-x: auto; margin-top: var(--sp-6); }
.pricing-table {
  width: 100%;
  font-size: 0.9375rem;
  border-spacing: 0;
}
.pricing-table th,
.pricing-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.pricing-table th {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text);
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  background: var(--paper);
}
.pricing-table td { color: var(--text-muted); }
.pricing-table .check { color: var(--lime-deep); }
.pricing-table .dash  { color: var(--line); }
.pricing-table tr:last-child td,
.pricing-table tr:last-child th { border-bottom: none; }

/* ── 16. FAQ ──────────────────────────────────────────────── */
.faq-section { padding-block: var(--section-py); }
.faq-section h2 { text-align: center; margin-bottom: var(--sp-8); }
.faq-inner { max-width: 740px; margin-inline: auto; }

/* ── 17. CTA BANDS ────────────────────────────────────────── */
.cta-band {
  padding-block: var(--sp-10);
  text-align: center;
}
.cta-band--lime {
  background: var(--lime-glow);
  border-top: 1px solid rgba(114,47,69,.25);
  border-bottom: 1px solid rgba(114,47,69,.25);
}
.cta-band--dark { background: var(--ink); }
.cta-band--dark h2 { color: #fff; }
.cta-band--dark p { color: rgba(255,255,255,.5); max-width: 58ch; margin-inline: auto; margin-top: var(--sp-3); }
.cta-band--lime p  { max-width: 60ch; margin-inline: auto; }
.cta-band h2 { margin-bottom: var(--sp-3); }
.cta-band__actions {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--sp-5);
}
.cta-band__reassurance {
  margin-top: var(--sp-2);
  font-size: 0.875rem;
  color: var(--text-muted);
}
.cta-band--dark .cta-band__reassurance { color: rgba(255,255,255,.35); }

/* ── 18. FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  padding-block: clamp(48px, 7vw, 80px) var(--sp-6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__brand-desc {
  margin-top: var(--sp-2);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 28ch;
}
.footer__socials {
  display: flex;
  gap: var(--sp-1);
  margin-top: var(--sp-3);
}
.footer__social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: background var(--t-fast), color var(--t-fast);
}
.footer__social-icon:hover { background: var(--lime-glow); color: var(--lime); }
.footer__col-title {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .01em;
  margin-bottom: var(--sp-3);
}
.footer__links { display: flex; flex-direction: column; gap: var(--sp-1); }
.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,.45);
  transition: color var(--t-fast);
}
.footer__link:hover { color: rgba(255,255,255,.85); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.footer__contact-item a { color: rgba(255,255,255,.45); transition: color var(--t-fast); }
.footer__contact-item a:hover { color: var(--lime); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  flex-wrap: wrap;
  padding-top: var(--sp-4);
  font-size: 0.8125rem;
}
.footer__bottom-links { display: flex; gap: var(--sp-2); }
.footer__bottom a { color: rgba(255,255,255,.35); transition: color var(--t-fast); }
.footer__bottom a:hover { color: rgba(255,255,255,.7); }

/* WhatsApp bubble */
.wa-bubble {
  position: fixed;
  bottom: var(--sp-4);
  right: var(--sp-4);
  z-index: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--t-base), transform var(--t-base);
}
.wa-bubble.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.wa-bubble__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  color: #fff;
}
.wa-bubble__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}

/* ── 19. PORTFOLIO ────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: var(--sp-1);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.filter-btn {
  padding: 8px 18px;
  border-radius: var(--r-btn);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1.5px solid var(--line);
  background: var(--card);
  cursor: pointer;
  transition: all var(--t-fast);
  letter-spacing: -0.01em;
}
.filter-btn:hover { border-color: var(--lime-deep); color: var(--lime-deep); }
.filter-btn.active {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.project-card {
  background: var(--card);
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-base), box-shadow var(--t-base);
  box-shadow: var(--shadow-card);
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.project-card[hidden] { display: none; }
.project-card__thumb {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  position: relative;
  overflow: hidden;
}
.project-card__body { padding: var(--sp-3); }
.project-card__type {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.project-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.project-card__chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: var(--sp-2);
}
.chip {
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Project modal */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10,13,11,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
  backdrop-filter: blur(4px);
  padding: var(--sp-3);
}
.project-modal.open { opacity: 1; pointer-events: auto; }
.project-modal__inner {
  background: var(--card);
  border-radius: var(--r-card);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--sp-5);
  position: relative;
  box-shadow: 0 24px 80px rgba(10,13,11,.3);
}
.project-modal__close {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast);
}
.project-modal__close:hover { background: var(--line); }
.project-modal__section {
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--line);
}
.project-modal__section:last-child { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }
.project-modal__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 6px;
}

/* ── 20. ABOUT PAGE ───────────────────────────────────────── */
.about-story { max-width: 680px; }
.display-quote {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
  padding: var(--sp-6) 0;
  border-top: 3px solid var(--lime);
  max-width: 700px;
}
.timeline { display: flex; flex-direction: column; gap: var(--sp-4); margin-top: var(--sp-6); }
.timeline-item {
  display: flex;
  gap: var(--sp-3);
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -var(--sp-4);
  width: 2px;
  background: var(--line);
  height: calc(100% + var(--sp-4));
}
.timeline-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime-glow);
  border: 2px solid rgba(114,47,69,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--lime-deep);
}
.timeline-content { padding-top: 8px; }
.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 2px;
}
.timeline-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.timeline-body { font-size: 0.875rem; color: var(--text-muted); }

/* Discipline grid */
.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.discipline-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--sp-3);
}
.discipline-item__icon { margin-bottom: var(--sp-2); }
.discipline-item__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.discipline-item__body { font-size: 0.875rem; color: var(--text-muted); }

/* ── 21. CONTACT PAGE ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-detail__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--lime-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lime-deep);
}
.contact-detail__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-detail__value {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9375rem;
}
.contact-detail__value a { transition: color var(--t-fast); }
.contact-detail__value a:hover { color: var(--lime-deep); }
.hours-note { font-size: 0.8125rem; color: var(--text-muted); }

/* ── 22. FREE CONSULTATION PAGE ───────────────────────────── */
.consultation-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 400px 1fr;
}
.consultation-panel-left {
  background: var(--ink);
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: sticky;
  top: 0;
  min-height: 100vh;
}
.consultation-panel-right {
  padding: clamp(32px, 5vw, 56px);
  background: var(--paper);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.consultation-form-wrap { max-width: 540px; width: 100%; }
.consultation-panel-left h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.25rem); }
.consult-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,.55);
}
.consult-bullets { display: flex; flex-direction: column; gap: var(--sp-2); }
.consult-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.consult-bullet::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  margin-top: 7px;
}
.consult-note {
  font-size: 0.875rem;
  color: rgba(255,255,255,.35);
  margin-top: auto;
  line-height: 1.6;
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,.07);
}

/* Progress bar */
.form-progress {
  display: flex;
  gap: 4px;
  margin-bottom: var(--sp-5);
}
.form-progress__step {
  height: 3px;
  flex: 1;
  background: var(--line);
  border-radius: 2px;
  transition: background var(--t-base);
}
.form-progress__step.done { background: var(--lime); }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.form-step__sub { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: var(--sp-4); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }

/* ── 23. SERVICE DETAIL PAGE ──────────────────────────────── */
.service-hero { padding-top: calc(var(--header-h) + var(--sp-8)); padding-bottom: var(--sp-10); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}
.breadcrumb a { color: var(--text-muted); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb__sep { color: var(--line); }

.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-8);
  align-items: start;
}
.service-sidebar {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--sp-4);
  position: sticky;
  top: calc(var(--header-h) + var(--sp-3));
  box-shadow: var(--shadow-card);
}
.service-sidebar h4 { margin-bottom: var(--sp-3); }
.service-sidebar-links { display: flex; flex-direction: column; gap: 4px; }
.service-sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: background var(--t-fast), color var(--t-fast);
}
.service-sidebar-link:hover { background: var(--paper); color: var(--text); }

.process-list { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-4); }
.process-list-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}
.process-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lime-glow);
  border: 1.5px solid rgba(114,47,69,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--lime-deep);
  flex-shrink: 0;
}

/* ── 24. SERVICES PAGE (alternating blocks) ───────────────── */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
  padding-block: var(--sp-8);
  border-bottom: 1px solid var(--line);
}
.service-block:last-of-type { border-bottom: none; }
.service-block--reversed .service-block__visual { order: -1; }
.service-block__meta {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: var(--sp-2);
}
.service-block__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.service-block__bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.service-block__bullet::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime-deep);
  flex-shrink: 0;
  margin-top: 8px;
}
.service-block__timeline-row {
  display: flex;
  gap: var(--sp-4);
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: var(--sp-2);
}
.service-block__timeline-row strong { color: var(--text); font-weight: 600; }

.service-visual-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--lime-glow), rgba(26,7,8,.1));
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── 25. THANK YOU PAGE ───────────────────────────────────── */
.thankyou-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-10) var(--container-px);
  background: var(--paper);
}
.thankyou-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--lime-glow);
  border: 3px solid var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  color: var(--lime-deep);
}
.next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  text-align: left;
}
.next-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--sp-3);
}
.next-step__num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.next-step__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
}
.next-step__body { font-size: 0.875rem; color: var(--text-muted); }

/* ── 26. PRIVACY / TERMS ──────────────────────────────────── */
.legal-content {
  max-width: 720px;
  margin-inline: auto;
  padding-top: calc(var(--header-h) + var(--sp-8));
  padding-bottom: var(--sp-10);
}
.legal-content h1 { margin-bottom: var(--sp-4); }
.legal-content h2 { font-size: 1.375rem; margin-top: var(--sp-6); margin-bottom: var(--sp-2); }
.legal-content p { color: var(--text-muted); margin-bottom: var(--sp-2); }
.legal-content ul {
  list-style: disc;
  margin-left: var(--sp-4);
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}
.legal-content li { margin-bottom: 6px; }

/* ── 27. 404 PAGE ─────────────────────────────────────────── */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-10) var(--container-px);
}
.error-num {
  font-family: var(--font-head);
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 700;
  color: var(--line);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.error-page h2 { margin-bottom: var(--sp-3); }
.error-links {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--sp-5);
}

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

.text-center { text-align: center; }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }

/* Skip link */
.skip-link {
  position: fixed;
  top: -100%;
  left: var(--sp-3);
  z-index: 9999;
  background: var(--lime);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: 0 0 var(--r-card) var(--r-card);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 0; }

/* Focus rings */
:focus-visible {
  outline: 2px solid var(--lime-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 29. ANIMATIONS ───────────────────────────────────────── */
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@keyframes flow-down {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}
@keyframes dash-flow {
  to { stroke-dashoffset: -20; }
}

/* Entrance reveal */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal--hidden {
  opacity: 0;
  transform: translateY(24px);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal--hidden { opacity: 1; transform: none; }
}

/* ── 30. RESPONSIVE ───────────────────────────────────────── */

/* 1280px */
/* ── Dark mode toggle button ──────────────────────────────── */
.dark-toggle {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  background: none;
  border: 1.5px solid var(--line);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
  flex-shrink: 0;
}
.dark-toggle:hover {
  color: var(--lime-deep);
  border-color: var(--lime-deep);
  background: rgba(111,190,65,.08);
}

/* ── btn-shimmer keyframe ─────────────────────────────────── */
@keyframes btn-shimmer {
  0%   { left: -130%; }
  100% { left: 160%;  }
}

/* ════════════════════════════════════════════════════════════
   DARK MODE — [data-theme="dark"] overrides
   ════════════════════════════════════════════════════════════ */
[data-theme="dark"] {
  --paper:       #0d1009;
  --card:        #141b11;
  --line:        rgba(255,255,255,.08);
  --text:        #e8ece5;
  --text-muted:  rgba(232,236,229,.55);
  --ink-soft:    #1a2217;
  --shadow-card: 0 1px 2px rgba(0,0,0,.25), 0 8px 24px rgba(0,0,0,.35);
  --shadow-hover:0 2px 4px rgba(0,0,0,.35), 0 16px 40px rgba(0,0,0,.55);
  color-scheme: dark;
}

/* Body */
[data-theme="dark"] body { background: #0d1009; color: rgba(232,236,229,.55); }

/* Headings */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 { color: #e8ece5; }

/* Header */
[data-theme="dark"] .site-header.scrolled {
  background: rgba(13,16,9,.90);
  border-bottom-color: rgba(255,255,255,.07);
}
[data-theme="dark"] .site-header:not(.scrolled) { background: transparent; }
[data-theme="dark"] .logo__wordmark { color: #e8ece5; }
[data-theme="dark"] .logo__mark { background: rgba(114,47,69,.2); }

/* Nav */
[data-theme="dark"] .nav__link { color: rgba(232,236,229,.75); }
[data-theme="dark"] .nav__link:hover { color: var(--lime-deep); background: transparent; }
[data-theme="dark"] .nav__link.active { color: var(--lime-deep); }
[data-theme="dark"] .nav__dropdown {
  background: #141b11;
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
[data-theme="dark"] .nav__dropdown-link { color: rgba(232,236,229,.6); }
[data-theme="dark"] .nav__dropdown-link:hover { background: rgba(255,255,255,.05); color: var(--lime-deep); }
[data-theme="dark"] .nav__dropdown-icon { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .nav__dropdown-link:hover .nav__dropdown-icon { background: rgba(114,47,69,.12); border-color: rgba(114,47,69,.25); }
[data-theme="dark"] .dark-toggle { color: var(--lime); border-color: rgba(114,47,69,.25); }
[data-theme="dark"] .dark-toggle:hover { background: rgba(114,47,69,.1); }

/* Consultation button in dark mode */
[data-theme="dark"] .btn--primary {
  background: #1c2419;
  color: #e8ece5;
  box-shadow: 0 0 0 1px rgba(114,47,69,.25);
}
[data-theme="dark"] .btn--primary:hover {
  background: rgba(114,47,69,.18);
  color: var(--lime);
  box-shadow: 0 0 0 1px rgba(114,47,69,.5);
}
[data-theme="dark"] .btn--primary::after {
  background: linear-gradient(90deg, transparent, rgba(114,47,69,.22), transparent);
}

/* Ghost buttons */
[data-theme="dark"] .btn--ghost { border-color: rgba(255,255,255,.15); color: rgba(232,236,229,.8); }
[data-theme="dark"] .btn--ghost:hover { border-color: rgba(255,255,255,.4); color: #e8ece5; }

/* Cards */
[data-theme="dark"] .card {
  background: #141b11;
  border-color: rgba(255,255,255,.07);
}
[data-theme="dark"] .card--dark { background: #0a0d09; }

/* Accordion */
[data-theme="dark"] .accordion__item { border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .accordion__btn { color: rgba(232,236,229,.8); }
[data-theme="dark"] .accordion__btn:hover { color: var(--lime-deep); }
[data-theme="dark"] .accordion__icon { border-color: rgba(255,255,255,.15); }
[data-theme="dark"] .accordion__body-inner { color: rgba(232,236,229,.5); }

/* Forms */
[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
  background: #141b11;
  border-color: rgba(255,255,255,.1);
  color: #e8ece5;
}
[data-theme="dark"] .form-input::placeholder,
[data-theme="dark"] .form-textarea::placeholder { color: rgba(232,236,229,.3); }
[data-theme="dark"] .form-label { color: rgba(232,236,229,.8); }

/* Sections with paper background */
[data-theme="dark"] .section[style*="background:var(--paper)"],
[data-theme="dark"] [style*="background:var(--paper)"] { background: #0d1009 !important; }

/* Process section (already dark - keep as is) */

/* Trust bar */
[data-theme="dark"] .trust-bar { border-color: rgba(255,255,255,.07); }
[data-theme="dark"] .trust-bar__line { background: linear-gradient(to right, transparent, rgba(114,47,69,.4)); }
[data-theme="dark"] .trust-bar__line:last-child { background: linear-gradient(to left, transparent, rgba(114,47,69,.4)); }
[data-theme="dark"] .trust-bar__label { color: var(--paper); }
[data-theme="dark"] .marquee-logo { color: rgba(232,236,229,1); opacity: 0.3; }
[data-theme="dark"] .marquee-logo:hover { opacity: 0.65; }

/* Nav mobile overlay */
[data-theme="dark"] .nav-toggle { color: rgba(232,236,229,.8); }

/* Filter bar */
[data-theme="dark"] .filter-btn {
  background: #141b11;
  border-color: rgba(255,255,255,.1);
  color: rgba(232,236,229,.6);
}
[data-theme="dark"] .filter-btn.active,
[data-theme="dark"] .filter-btn:hover {
  border-color: var(--lime-deep);
  color: var(--lime-deep);
  background: rgba(111,190,65,.08);
}

/* Portfolio cards */
[data-theme="dark"] .project-card { background: #141b11; border-color: rgba(255,255,255,.07); }
[data-theme="dark"] .project-modal__inner {
  background: #141b11;
  border-color: rgba(255,255,255,.08);
}

/* Pricing */
[data-theme="dark"] .pricing-table thead tr { background: #141b11; }
[data-theme="dark"] .pricing-table td,
[data-theme="dark"] .pricing-table th { border-color: rgba(255,255,255,.08); color: rgba(232,236,229,.7); }
[data-theme="dark"] .pricing-table th { color: #e8ece5; }

/* Standard items */
[data-theme="dark"] .standard-item {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.07);
}
[data-theme="dark"] .standard-item__title { color: #e8ece5; }

/* Service blocks / sidebar */
[data-theme="dark"] .service-block { border-color: rgba(255,255,255,.07); }
[data-theme="dark"] .service-visual-placeholder {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.06);
}
[data-theme="dark"] .service-sidebar { background: #141b11; border-color: rgba(255,255,255,.07); }
[data-theme="dark"] .service-sidebar-link:hover { background: rgba(255,255,255,.05); color: #e8ece5; }

/* About page */
[data-theme="dark"] .display-quote { color: #e8ece5; }

/* Contact */
[data-theme="dark"] .contact-info { border-color: rgba(255,255,255,.07); }
[data-theme="dark"] .contact-detail__icon { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); }

/* Legal */
[data-theme="dark"] .legal-content h1,
[data-theme="dark"] .legal-content h2 { color: #e8ece5; }
[data-theme="dark"] .legal-content li { color: rgba(232,236,229,.55); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1280px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
  .footer__brand-desc { max-width: 100%; }
  .footer__socials { flex-wrap: wrap; }
}

/* 1024px */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; justify-content: stretch; }
  .hero__diagram { display: none; }
  .hero__content { max-width: 100%; }
  /* process-steps removed — signal-rail handles its own responsive layout */
  .services-grid { grid-template-columns: 1fr 1fr; }
  .standards-grid { grid-template-columns: 1fr 1fr; }
  .work-section__inner { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .disciplines-grid { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block--reversed .service-block__visual { order: 0; }
  .tools-diagram { flex-direction: column; gap: var(--sp-4); }
  .tools-paths-svg { display: none; }
  .consultation-layout { grid-template-columns: 1fr; min-height: auto; }
  .consultation-panel-left { position: static; min-height: auto; }
  .next-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .pricing-card__badge { display: block; }  /* badge visible on all screen sizes */
}

/* 768px */
@media (max-width: 768px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  /* process-steps removed */
  .standards-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .disciplines-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
  .footer__grid > :last-child { grid-column: 1 / -1; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta-band__actions { flex-direction: column; align-items: center; }
}

/* 480px */
@media (max-width: 480px) {
  :root { --header-h: 64px; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn { padding: 12px 22px; font-size: 0.875rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════════════════════
   TECH / AI VISUAL UPGRADE  — homepage section enhancements
   ════════════════════════════════════════════════════════════ */

/* ── A. Lime dot grid — light sections ──────────────────────── */
.services-tech,
.work-section,
.faq-section,
.pricing-tech { position: relative; }
.services-tech::before,
.work-section::before,
.faq-section::before,
.pricing-tech::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(114,47,69,.055) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}
.services-tech > .container,
.work-section > .container,
.faq-section > .container,
.pricing-tech > .container { position: relative; z-index: 1; }

/* Tools section dot grid */
.tools-section { position: relative; }
.tools-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(114,47,69,.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}
.tools-section > .container { position: relative; z-index: 1; }

/* ── B. Circuit line grid — dark process section ────────────── */
.process-section { position: relative; }
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(114,47,69,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114,47,69,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}
.process-section > .container { position: relative; z-index: 1; }

/* ── C. Service cards — lime top accent bar ─────────────────── */
.service-card { position: relative; overflow: hidden; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime-deep), rgba(114,47,69,.3), transparent 70%);
  opacity: .55;
  transition: opacity var(--t-base);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: rgba(114,47,69,.28);
  box-shadow: 0 0 0 1px rgba(114,47,69,.1), var(--shadow-hover);
}

/* ── D. Standards section — dark tech theme ─────────────────── */
.standards-section--tech {
  background: var(--ink);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}
.standards-section--tech::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(114,47,69,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114,47,69,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}
.standards-section--tech > .container { position: relative; z-index: 1; }
.standards-section--tech .section-label { color: rgba(255,255,255,.45); }
.standards-section--tech h2 { color: #fff; }
.standards-section--tech .standard-item {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.standards-section--tech .standard-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--lime-deep), rgba(114,47,69,.25), transparent 65%);
}
.standards-section--tech .standard-item:hover {
  border-color: rgba(114,47,69,.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,.35), 0 0 0 1px rgba(114,47,69,.1);
}
.standards-section--tech .standard-item__title { color: rgba(255,255,255,.9); }
.standards-section--tech .standard-item__body  { color: rgba(255,255,255,.42); }

/* ── E. Stat numbers — gradient text glow ───────────────────── */
#proof-projects, #proof-countries, #proof-hours, #proof-retention {
  background: linear-gradient(135deg, var(--text) 25%, var(--lime-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.work-section .card { position: relative; overflow: hidden; }
.work-section .card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(114,47,69,.5), transparent);
  opacity: .4;
}

/* ── F. CTA band — radial glow aura ─────────────────────────── */
.cta-band--lime { position: relative; }
.cta-band--lime::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 90% at 50% 50%, rgba(114,47,69,.1) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.cta-band--lime > .container { position: relative; z-index: 1; }

/* ── G. Pricing cards — top accent + ticket design ──────────── */
.pricing-card {
  position: relative;
  overflow: visible;           /* allow badge to overflow above card */
  border-top: 3px solid rgba(114,47,69,.18);
}
.pricing-card--featured {
  border-top-color: var(--lime);
  box-shadow: 0 0 0 1px var(--lime), 0 0 40px rgba(114,47,69,.08), var(--shadow-hover);
}

/* Ticket-stub: dashed divider with punch-hole circles */
.pricing-card__divider {
  height: 0 !important;
  background: none !important;
  border: none;
  border-top: 1.5px dashed rgba(114,47,69,.18);
  position: relative;
}
.pricing-card__divider::before,
.pricing-card__divider::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px dashed rgba(114,47,69,.18);
  top: 50%;
  transform: translateY(-50%);
}
.pricing-card__divider::before { left:  calc(-1 * var(--sp-5) - 10px); }
.pricing-card__divider::after  { right: calc(-1 * var(--sp-5) - 10px); }

/* ── H. Tools center CTA — lime top accent ──────────────────── */
.tools-center-cta { position: relative; overflow: hidden; }
.tools-center-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime-deep), transparent);
  opacity: .8;
}

/* ══════════════════════════════════════════════════════════════
   PRICING PAGE — Budget Planner + Not-Included Section
══════════════════════════════════════════════════════════════ */

/* Budget planner section */
.budget-planner-section { background: var(--paper); }
.budget-planner {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--lime);
  border-radius: var(--r-card);
  padding: var(--sp-6);
  box-shadow: var(--shadow-hover);
  max-width: 860px;
  margin-inline: auto;
}
.budget-planner__step { margin-bottom: var(--sp-5); }
.budget-planner__step:last-child { margin-bottom: 0; }
.budget-planner__step-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: var(--sp-3);
}
.service-toggles { display: flex; flex-wrap: wrap; gap: 10px; }
.service-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.service-toggle:hover { border-color: var(--lime); color: var(--lime); }
.service-toggle.active {
  border-color: var(--lime);
  background: rgba(114,47,69,.06);
  color: var(--lime);
}
.budget-slider-wrap { display: flex; flex-direction: column; gap: 10px; }
.budget-range {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 3px;
  background: var(--line);
  outline: none;
  cursor: pointer;
}
.budget-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(114,47,69,.15);
  transition: box-shadow var(--t-fast);
}
.budget-range::-webkit-slider-thumb:hover { box-shadow: 0 0 0 6px rgba(114,47,69,.2); }
.budget-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime);
  cursor: pointer;
  border: none;
}
.budget-slider-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.budget-current {
  text-align: center;
}
.budget-current__label { display: block; font-size: 0.75rem; color: var(--text-muted); }
.budget-current__value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--lime);
  line-height: 1.2;
}
.budget-result {
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
  min-height: 64px;
}
.budget-result__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.budget-result__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.budget-result__plan {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.2;
}
.budget-result__price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2rem;
  color: var(--lime);
  letter-spacing: -.03em;
  line-height: 1;
  margin-top: 2px;
}
.budget-result__note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
  max-width: 42ch;
}

/* Not-included section */
.not-included-section {
  background: var(--ink);
  padding-block: var(--section-py);
}
.not-included-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 2px solid rgba(114,47,69,.35);
  border-radius: var(--r-card);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.not-included-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(114,47,69,.12);
  border: 1px solid rgba(114,47,69,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  flex-shrink: 0;
}
.not-included-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9375rem;
  color: #fff;
}
.not-included-card__body {
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE — Hero, Timeline, Story, Disciplines
══════════════════════════════════════════════════════════════ */

/* About hero */
.about-hero {
  background: var(--ink);
  padding-top: calc(var(--header-h) + var(--sp-10));
  padding-bottom: var(--sp-8);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(114,47,69,.12) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero > .container { position: relative; z-index: 1; }
.about-hero__inner { margin-top: var(--sp-4); max-width: 760px; }
.about-hero__h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.04em;
  margin-top: var(--sp-2);
}
.about-hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 60ch;
  margin-top: var(--sp-3);
}
.about-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,.08);
}
.about-stat { text-align: center; flex: 1 1 120px; }
.about-stat__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--lime);
  letter-spacing: -.04em;
  line-height: 1;
}
.about-stat__label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
}
.about-stat__sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .about-stat__sep { display: none; }
}

/* About story grid */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}
.about-story-text .section-label { margin-bottom: var(--sp-2); }
.about-story-quote .display-quote {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
}
@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; }
}

/* About disciplines section */
.about-disciplines-section {
  background: var(--ink);
  padding-block: var(--section-py);
}
.discipline-item--dark {
  background: rgba(255,255,255,.04) !important;
  border-color: rgba(255,255,255,.08) !important;
}
.discipline-item--dark .discipline-item__title { color: #fff !important; }
.discipline-item--dark .discipline-item__body { color: rgba(255,255,255,.5) !important; }

/* About timeline */
.about-timeline {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.about-timeline::before {
  content: '';
  position: absolute;
  left: 52px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--lime), rgba(114,47,69,.1));
}
.about-timeline__item {
  display: flex;
  gap: var(--sp-4);
  padding-bottom: var(--sp-6);
  position: relative;
}
.about-timeline__item:last-child { padding-bottom: 0; }
.about-timeline__marker {
  width: 104px;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  padding-right: var(--sp-4);
  position: relative;
  z-index: 1;
}
.about-timeline__marker span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--lime);
  background: var(--paper);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1.5px solid var(--lime);
  white-space: nowrap;
  line-height: 1.4;
}
.about-timeline__content { flex: 1; padding-top: 2px; }
.about-timeline__content h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: 6px;
}
.about-timeline__content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE — Hero, Info cards, Chips
══════════════════════════════════════════════════════════════ */

/* Contact hero */
.contact-hero {
  background: var(--ink);
  padding-top: calc(var(--header-h) + var(--sp-10));
  padding-bottom: var(--sp-10);
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 30% 50%, rgba(114,47,69,.1) 0%, transparent 70%);
  pointer-events: none;
}
.contact-hero > .container { position: relative; z-index: 1; }
.contact-hero__inner { max-width: 680px; margin-top: var(--sp-4); }
.contact-hero__h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.04em;
  margin-top: var(--sp-2);
}
.contact-hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 52ch;
  margin-top: var(--sp-3);
}
.contact-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--sp-5);
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.8);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.contact-chip:hover {
  border-color: var(--lime);
  background: rgba(114,47,69,.08);
  color: var(--lime);
}

/* Contact info cards */
.contact-info-card {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-4);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  transition: border-color var(--t-fast);
}
.contact-info-card:hover { border-color: rgba(114,47,69,.25); }
.contact-info-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(114,47,69,.08);
  border: 1px solid rgba(114,47,69,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  flex-shrink: 0;
}
.contact-info-card__icon--red { background: rgba(114,47,69,.1); border-color: rgba(114,47,69,.2); }
.contact-info-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.contact-info-card__value {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
}
.contact-info-card__value a { color: inherit; text-decoration: none; }
.contact-info-card__value a:hover { color: var(--lime); }
.contact-info-card__note { font-size: 0.8125rem; color: var(--text-muted); margin-top: 2px; }

/* Contact book card */
.contact-book-card {
  background: var(--ink);
  border-radius: var(--r-card);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.contact-book-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.contact-book-card__sub { font-size: 0.875rem; color: rgba(255,255,255,.5); }

/* Contact form wrap */
.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--sp-5);
  box-shadow: var(--shadow-card);
}

.contact-info { display: flex; flex-direction: column; gap: var(--sp-3); }

html[data-theme="light"] { color-scheme: light; }
body { background: var(--paper); }
h1, h2 { text-wrap: balance; line-height: 1.14; }
::selection { background: var(--lime); color: #fff; }
.btn { justify-content: center; white-space: normal; text-align: center; }
.btn--primary, .pill--chosen { color: #fff; }
.btn--primary::after { animation: none; }
.btn--ghost-dark { color: var(--text); border-color: var(--line); }
.btn--ghost-dark:hover { color: var(--lime); border-color: var(--lime); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}
.site-header, .site-header.scrolled { background: rgba(250,248,247,.97); border-bottom: 1px solid var(--line); }
.logo__mark { background: var(--lime-glow); }
.section-label, .section-label--light, .standards-section--tech .section-label { color: var(--lime); }
main > section { padding-block: var(--section-py); }
main > section:not(:first-child) { border-top: 1px solid var(--line); }
main > section[style*="padding-top:0"] { padding-top: clamp(32px, 4vw, 56px) !important; }
.pricing-hourly { max-width: none; width: 100%; margin-inline: auto; text-align: center; }
.about-story-text .divider { margin-inline: auto; }
main > section > .container > .reveal:has(> h2),
.section-heading {
  max-width: 960px !important;
  margin-inline: auto;
  margin-bottom: 40px !important;
  text-align: center;
}
main > section > .container > .reveal:has(> h2) > p,
.section-heading > p { margin-inline: auto; max-width: 60ch; }
main > section > .container > .reveal:has(> h2) > .section-label,
.section-heading > .section-label { margin-bottom: 14px; }
main > section > .container > h2 { text-align: center; }
main .cta-band > .container > .reveal { max-width: 960px !important; margin-bottom: 0 !important; }
main .cta-band { background: var(--forest); }
main .cta-band h2 { color: var(--text); }
main .cta-band p { color: var(--text-muted); }
main [style*="color:#fff"], main [style*="color: #fff"] { color: var(--text) !important; }
main [style*="color:rgba(255,255,255"], main [style*="color: rgba(255,255,255"] { color: var(--text-muted) !important; }
main section[style*="background:var(--ink)"] { background: var(--paper) !important; }
main [style*="background:var(--forest)"] { background: var(--forest); border: 1px solid var(--line); }
.page-hero {
  background: radial-gradient(ellipse at 50% 0, rgba(114,47,69,.055), transparent 65%), var(--paper) !important;
  padding-top: calc(var(--header-h) + clamp(36px, 5vw, 64px)) !important;
  padding-bottom: clamp(48px, 5vw, 72px) !important;
  text-align: center;
}
.page-hero::before { display: none; }
.page-hero .breadcrumb { justify-content: center; }
.page-hero .container > nav { display: flex; justify-content: center; }
.page-hero .container > .reveal:not(.about-stats) {
  max-width: 1040px !important;
  margin: 32px auto 0;
}
.page-hero h1 { font-size: clamp(2.25rem, 5vw, 4rem); color: var(--text); margin-top: 16px; }
.page-hero .section-label { margin-inline: auto; }
.page-hero > .container > .reveal > p:not(.section-label),
.page-hero .service-detail-layout article > .reveal:first-child > p {
  max-width: 60ch !important;
  margin: 24px auto 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
}
.hero--workflow {
  min-height: auto;
  padding: calc(var(--header-h) + 48px) 0 64px;
  background: radial-gradient(ellipse at 50% 65%, #F0E1E7 0%, transparent 65%), var(--paper);
}
.hero--workflow .hero__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(24px, 4vw, 64px); padding-block: 0; }
.hero__content { width: 100%; min-width: 0; max-width: 600px; margin-inline: 0; text-align: left; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  margin: 0 auto 20px;
  border: 1px solid rgba(114,47,69,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  color: var(--lime);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .025em;
}
.hero__eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.hero--workflow .hero__h1 { font-size: clamp(2.25rem, 4.3vw, 3.75rem); line-height: 1.1; letter-spacing: -.045em; margin-bottom: 20px; text-wrap: initial; }
.hero__h1-line { white-space: normal; }
.hero__h1-accent { color: var(--lime); }
.hero--workflow .hero__sub { max-width: 58ch; margin: 0 auto 24px; font-size: 1.0625rem; line-height: 1.7; }
.hero--workflow .hero__actions { justify-content: center; align-items: center; flex-direction: row; flex-wrap: wrap; gap: 12px; }
.hero--workflow .hero__actions .btn { min-height: 48px; padding: 10px 22px; }
.hero--workflow .hero__secondary-link { min-height: 48px; padding: 10px 20px; border: 1px solid var(--line); border-radius: var(--r-btn); background: rgba(255,255,255,.7); color: var(--text); justify-content: center; }
.hero__assurances { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin-top: 20px; font-size: .75rem; color: var(--text-muted); }
.hero__assurances li { display: flex; align-items: center; gap: 7px; }
.hero__assurances li::before { content: ''; width: 7px; height: 7px; border: 1.5px solid var(--lime); border-radius: 50%; }
.hero--workflow .hero__diagram {
  display: flex;
  width: 100%;
  max-width: 880px;
  min-width: 0;
  margin-inline: auto;
  padding: 24px;
  gap: 18px;
  text-align: left;
  border: 1px solid rgba(114,47,69,.18);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(114,47,69,.08), 0 0 0 6px rgba(255,255,255,.5);
}
.hero__canvas { opacity: .14; }
.hero__diagram .wf-avatars, .hero--workflow .wf-ai-pill { display: none; }
.hero--workflow .wf-bg { opacity: .25; background-size: 24px 24px; }
.hero--workflow .biz-dash__header { gap: 12px; }
.hero--workflow .biz-dash__title { font-size: .875rem; }
.hero--workflow .biz-dash__title svg { color: var(--lime); flex-shrink: 0; }
.hero__demo-label { color: var(--text-muted); font-size: .6875rem; white-space: nowrap; }
.hero-flow { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; position: relative; z-index: 1; }
.hero-flow__step { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; min-width: 0; padding: 20px; border: 1px solid var(--line); background: var(--card); border-radius: 16px; }
.hero-flow__step:not(:last-child)::after { content: '→'; position: absolute; right: -20px; top: 50%; transform: translateY(-50%); color: var(--lime); font-size: 16px; }
.hero-flow__step--ai { background: var(--forest); border-color: rgba(114,47,69,.3); }
.hero-flow__number { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; color: var(--lime); background: var(--lime-glow); font-size: .6875rem; font-weight: 700; }
.hero-flow__step--ai .hero-flow__number { color: #fff; background: var(--lime); }
.hero-flow .hero-flow__title { font-size: 1rem; line-height: 1.3; margin: 0 0 4px; letter-spacing: -.02em; }
.hero-flow__step p { font-size: .75rem; line-height: 1.5; color: var(--text-muted); }
.hero-flow__tag { font-size: .625rem; font-weight: 600; color: var(--lime); letter-spacing: .025em; margin-top: auto; }
.hero--workflow .biz-dash__feed { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.hero--workflow .biz-dash__item { opacity: 1; animation: none; min-width: 0; }
.hero--workflow .biz-dash__item-text { white-space: normal; overflow: visible; font-size: .75rem; }
.hero__workflow-note { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .75rem; text-align: center; color: var(--text-muted); position: relative; }
.hero__workflow-note svg { flex-shrink: 0; color: var(--lime); }
@media (min-width: 601px) and (max-width: 1024px) {
  .hero--workflow { padding-top: calc(var(--header-h) + 40px); padding-bottom: 48px; }
  .hero--workflow .hero__h1 { font-size: clamp(3rem, 6.5vw, 4rem); }
  .hero--workflow .hero__diagram { max-width: 760px; padding: 20px; }
  .hero-flow { gap: 18px; }
  .hero-flow__step { padding: 16px 12px; }
  .hero-flow__step:not(:last-child)::after { right: -16px; }
}
@media (max-width: 600px) {
  .hero--workflow { padding: calc(var(--header-h) + 32px) 0 40px; }
  .hero--workflow .hero__inner { gap: 28px; }
  .hero__eyebrow { font-size: .6875rem; margin-bottom: 16px; }
  .hero--workflow .hero__h1 { font-size: clamp(2.1rem, 10vw, 3.25rem); }
  .hero--workflow .hero__sub { font-size: .9375rem; max-width: 38ch; margin-bottom: 20px; }
  .hero--workflow .hero__actions { flex-direction: column; width: min(100%, 340px); margin-inline: auto; gap: 10px; }
  .hero--workflow .hero__actions > a { width: 100%; }
  .hero__assurances { gap: 8px 12px; font-size: .6875rem; }
  .hero--workflow .hero__diagram { padding: 18px 16px; border-radius: 18px; gap: 14px; }
  .hero--workflow .biz-dash__header { flex-wrap: wrap; gap: 4px 12px; }
  .hero--workflow .biz-dash__title { font-size: .8125rem; }
  .hero-flow { grid-template-columns: 1fr; gap: 18px; }
  .hero-flow__step { display: grid; grid-template-columns: 28px minmax(0, 1fr); column-gap: 12px; row-gap: 4px; padding: 12px 14px; }
  .hero-flow__number { grid-row: 1 / 3; align-self: center; }
  .hero-flow__tag { grid-column: 2; }
  .hero-flow__step:not(:last-child)::after { content: '↓'; top: auto; bottom: -20px; left: 27px; right: auto; transform: none; }
  .hero--workflow .biz-dash__feed { grid-template-columns: 1fr; gap: 8px; }
  .hero--workflow .biz-dash__feed-hd { flex-wrap: wrap; gap: 8px; }
  .hero__workflow-note { align-items: flex-start; font-size: .6875rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero--workflow .reveal { opacity: 1; transform: none; }
}
.trust-bar { margin: 0; padding-block: 32px; background: var(--card); }
.process-section, .standards-section--tech, .testimonials-section,
.about-disciplines-section, .not-included-section { background: var(--paper); color: var(--text-muted); }
.process-section h2, .standards-section--tech h2, .testimonials-section h2 { color: var(--text); }
.process-section__sub, .testimonials-section__sub { color: var(--text-muted); }
.services-tech, .pricing-tech, .tools-section { background: var(--card); }
.services-tech::before, .pricing-tech::before, .tools-section::before,
.standards-section--tech::before, .process-section::before { opacity: .2; }
.sr-label { opacity: 1; }
.sr-label__title, .sr-node__num { color: var(--text); }
.sr-label__body { color: var(--text-muted); }
.sr-line { background: var(--line); left: 12.5%; right: 12.5%; }
.sr-node[data-node="0"] { left: 12.5%; }
.sr-node[data-node="1"] { left: 37.5%; }
.sr-node[data-node="2"] { left: 62.5%; }
.sr-node[data-node="3"] { left: 87.5%; }
@media (max-width: 768px) {
  .sr-line { left: 50%; right: auto; top: 12.5%; bottom: 12.5%; }
  .sr-node[data-node="0"] { left: 50%; top: 12.5%; }
  .sr-node[data-node="1"] { left: 50%; top: 37.5%; }
  .sr-node[data-node="2"] { left: 50%; top: 62.5%; }
  .sr-node[data-node="3"] { left: 50%; top: 87.5%; }
  .sr-labels { display: grid; grid-template-rows: repeat(4, 1fr); grid-template-columns: 1fr; }
  .sr-label { display: flex; flex-direction: column; justify-content: center; padding-block: 20px; }
}
.sr-node__ring { border-color: var(--line); background: var(--card); }
.sr-node__inner { background: transparent; }
.sr-node--active .sr-node__num { color: #fff; }
.work-section__inner { display: flex; flex-direction: column; gap: 40px; }
.work-section__inner > .reveal { width: 100%; text-align: center; }
.work-section__inner h2 { max-width: 960px; margin-inline: auto; }
.work-section__inner p { margin-inline: auto; }
.work-checklist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 700px; margin-inline: auto; text-align: left; }
.work-section__inner > .reveal:last-child > div { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.standards-section--tech .standard-item, main .standard-item,
.discipline-item--dark, .not-included-card, .testimonial-card {
  background: var(--card) !important;
  border-color: var(--line) !important;
  box-shadow: var(--shadow-card);
}
.standards-section--tech .standard-item__title, .discipline-item--dark .discipline-item__title,
.not-included-card__title, .testimonial-card__name { color: var(--text) !important; }
.standards-section--tech .standard-item__body, .discipline-item--dark .discipline-item__body,
.not-included-card__body, .testimonial-card__quote, .testimonial-card__role { color: var(--text-muted) !important; }
.testimonial-card__author { border-color: var(--line); }
.not-included-section .container > div:last-child { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.not-included-card { text-align: left; }
.about-hero, .contact-hero { background: var(--paper); }
.about-stats { border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px; background: var(--card); gap: 16px; }
.about-stat__label { color: var(--text-muted); }
.about-stat__sep { background: var(--line); }
.about-story-grid { grid-template-columns: 1fr; max-width: 900px; margin-inline: auto; gap: 32px; }
.about-story-text { text-align: center; }
.about-story-text p { margin-inline: auto; }
.about-story-text h2 { max-width: 850px; margin-inline: auto; }
.about-story-quote { padding: 32px; background: var(--forest); border: 1px solid var(--line); border-radius: var(--r-card); text-align: center; }
.about-story-quote p { margin-inline: auto; }
.about-story-quote .display-quote { border: 0; padding: 0; color: var(--lime); }
.about-timeline__marker { align-items: flex-start; }
.contact-hero__chips { justify-content: center; }
.contact-chip { color: var(--lime); background: var(--card); border-color: var(--line); }
.contact-grid { gap: 32px; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); align-items: start; }
.contact-grid > *, .contact-info-card > div { min-width: 0; }
.contact-info-card { background: var(--card); }
.contact-info-card__value { overflow-wrap: anywhere; }
.contact-book-card { background: var(--forest); border: 1px solid var(--line); }
.contact-book-card__title { color: var(--text); }
.contact-book-card__sub { color: var(--text-muted); }
.contact-form-wrap { border-top: 3px solid var(--lime); }
section:has(#contact-faq-heading) { padding-top: var(--section-py) !important; }
.budget-planner-section { padding-top: var(--section-py) !important; }
.budget-range:focus-visible { outline: 3px solid var(--lime); }
.service-block--reversed .service-block__content, .service-block--reversed .service-block__visual { order: initial; }
.service-block { border: 1px solid var(--line); border-radius: var(--r-card); background: var(--card); padding: clamp(20px, 4vw, 48px); margin-bottom: 32px; }
.service-detail-layout { grid-template-columns: 1fr; max-width: 960px; margin-inline: auto; text-align: left; }
.service-detail-layout article > .reveal:first-child > .card { text-align: left; }
section[aria-label="Free consultation offer"] { padding-block: 36px; }
section[aria-label="Free consultation offer"] h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.service-detail-layout article > .reveal:first-child { text-align: center; }
.service-detail-layout article > .reveal:first-child > p, #service-icon { margin-inline: auto; }
.service-detail-layout .service-sidebar { position: static; }
.legal-content > h1, .legal-content > h1 + p { text-align: center; margin-inline: auto; }
.consultation-layout { min-height: 0; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 32px; padding-block: 48px var(--section-py); align-items: start; }
.consultation-panel-left { position: static; min-height: 0; background: var(--forest); color: var(--text-muted); border: 1px solid var(--line); border-radius: var(--r-card); padding: 32px; gap: 24px; }
.consultation-panel-left > a { display: none !important; }
.consultation-panel-right { background: var(--card); border: 1px solid var(--line); border-top: 3px solid var(--lime); border-radius: var(--r-card); padding: clamp(24px, 4vw, 40px); }
.consultation-form-wrap { max-width: none; }
@media (max-width: 900px) {
  .consultation-layout { grid-template-columns: 1fr; }
  .consultation-panel-right { grid-row: 1; }
}
.consultation-panel-left h2, .consult-bullet { color: var(--text); }
.consult-meta, .consult-note { color: var(--text-muted); }
.consultation-panel-left svg { stroke: var(--lime); }
.site-footer { background: var(--forest); color: var(--text-muted); border-top: 1px solid var(--line); }
.site-footer .logo, .nav-overlay .logo { filter: none !important; }
.footer__col-title { color: var(--text); }
.footer__brand-desc, .footer__link, .footer__contact-item, .footer__contact-item a,
.footer__bottom, .footer__bottom a { color: var(--text-muted); }
.footer__link:hover, .footer__bottom a:hover { color: var(--lime); }
.footer__bottom { border-color: var(--line); }
.footer__social-icon { color: var(--lime); background: var(--card); border: 1px solid var(--line); }
.footer__contact-item svg { color: var(--lime); }
.footer__contact-item svg[fill="none"] { stroke: currentColor; }
.footer__contact-item svg:not([fill="none"]) { fill: currentColor; }
.nav-overlay { background: var(--paper); }
.nav-overlay__link, .nav-overlay #nav-close { color: var(--text) !important; }
.nav-overlay__cta p { color: var(--text-muted) !important; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { grid-row: 1; }
  .work-section__inner > .reveal:last-child > div { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 600px) {
  .hero { padding-top: calc(var(--header-h) + 36px); }
  .hero__diagram { padding: 20px 16px 52px; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .page-hero br { display: none; }
  .about-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 24px 16px; }
  .about-stat__num { font-size: 1.9rem; }
  .work-checklist { grid-template-columns: 1fr; }
  .not-included-section .container > div:last-child { grid-template-columns: 1fr !important; }
  .budget-planner, .contact-form-wrap, .contact-info-card { padding: 24px 20px; }
  .budget-result__inner .btn { width: 100%; }
  .service-toggle { padding: 10px 14px; }
  .about-timeline__marker { width: 88px; padding-right: 12px; }
  .about-timeline::before { left: 38px; }
  .about-timeline__item { gap: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__canvas { display: none; }
}

/* ── Dark mode fine-tuning ───────────────────────────────────── */
[data-theme="dark"] .standards-section--tech { background: #0d0909; }
[data-theme="dark"] .standards-section--tech::before {
  background-image:
    linear-gradient(rgba(114,47,69,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114,47,69,.025) 1px, transparent 1px);
}
[data-theme="dark"] .standards-section--tech .standard-item {
  background: rgba(255,255,255,.02);
  border-color: rgba(255,255,255,.06);
}
[data-theme="dark"] #proof-projects,
[data-theme="dark"] #proof-countries,
[data-theme="dark"] #proof-hours,
[data-theme="dark"] #proof-retention {
  background: linear-gradient(135deg, #e8ece5 25%, var(--lime-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
