/* ============================================================
   IntegrateXpress  --  dark editorial green theme
   ============================================================ */

:root {
  /* Surfaces */
  --bg: #0a100c;
  --bg-2: #0d1410;
  --surface: #131e16;
  --surface-2: #1a2820;
  --surface-3: #213029;
  --line: rgba(255, 255, 255, 0.11);
  --line-2: rgba(198, 232, 74, 0.18);

  /* Greens */
  --green-deep: #1a5a36;
  --green: #2a7a47;
  --green-2: #46a16a;
  --olive: #8aa83e;

  /* Lime accent (from the brighter logo leaf) */
  --lime: #c6e84a;
  --lime-soft: rgba(198, 232, 74, 0.14);
  --lime-bright: #d8ee62;
  --lime-deep: #aacc2d;

  /* Text — slightly brighter secondary for readability */
  --text: #e7f0ea;
  --text-2: #c1cdc4;
  --text-3: #8fa396;

  /* Radius / shadow */
  --r-sm: 10px;
  --r: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --shadow-1: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 20px 40px -20px rgba(0, 0, 0, 0.6);
  --shadow-2: 0 30px 60px -30px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--line);

  /* Type — high-legibility pairing */
  --display: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: var(--sans);

  /* Layout */
  --container: 1180px;
  --header-h: 92px;
  --tap-min: 48px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--bg); }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.125rem;
  line-height: 1.72;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg { max-width: 100%; display: block; }

::selection { background: var(--lime); color: #0a100c; }

/* Comfortable focus indicators */
:focus-visible {
  outline: 3px solid var(--lime-bright);
  outline-offset: 3px;
}
:focus:not(:focus-visible) {
  outline: none;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--lime); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 0 0 .52em;
}
h1 { font-size: clamp(2.35rem, 5.2vw, 4.5rem); line-height: 1.06; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.35rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.95rem); }
h4 {
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
em, .italic { font-style: italic; color: var(--lime); }

p { margin: 0 0 1em; color: var(--text-2); }

.btn--primary:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 600px) { .container { padding: 0 20px; } }

.section { padding: clamp(80px, 10vw, 128px) 0; position: relative; }
.section--tight { padding: clamp(64px, 7vw, 96px) 0; }
.section--divider { border-top: 1px solid var(--line); }

/* Eyebrow / kicker — clear labels without tiny monospace */
.kicker {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.05em;
  color: var(--lime);
  margin: 0 0 1.25em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.35;
}
.kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--lime);
  display: inline-block;
}
.kicker--plain::before { display: none; }

/* Skip link */
.skip-link {
  position: absolute;
  left: 0; top: -40px;
  background: var(--lime);
  color: #0a100c;
  padding: 12px 18px;
  font-weight: 700;
  z-index: 1000;
  font-family: var(--sans);
  font-size: 0.9375rem;
  letter-spacing: .04em;
  line-height: 1.25;
}
.skip-link:focus { top: 0; color: #0a100c; }
.skip-link:focus-visible {
  outline: 3px solid #0a100c;
  outline-offset: 2px;
}

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 16, 12, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
  position: relative;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 1.375rem;
  letter-spacing: -0.015em;
  color: var(--text);
}
.nav__brand:hover { color: var(--text); }
.nav__brand img {
  height: 46px;
  width: 46px;
  object-fit: cover;
  border-radius: 50%;
  background: #0a100c;
  border: 1px solid var(--line-2);
}
.nav__brand strong { font-weight: 400; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.nav__links a {
  font-size: clamp(0.8125rem, 1.1vw, 1rem);
  color: var(--text-2);
  font-weight: 600;
  position: relative;
  padding: 14px 0;
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__links a.is-active { color: var(--text); }
.nav__links a.is-active::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lime);
  position: absolute;
  left: -12px; top: 50%;
  transform: translateY(-50%);
}

/* Services dropdown */
.nav__links > li {
  list-style: none;
}
.nav__item--dropdown {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.nav__dropdown-btn {
  font-family: inherit;
  font-size: clamp(0.8125rem, 1.1vw, 1rem);
  font-weight: 600;
  color: var(--text-2);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 14px 6px 14px 0;
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s ease;
  border-radius: var(--r-sm);
}
.nav__dropdown-btn:hover,
.nav__dropdown-btn.is-active { color: var(--text); }
.nav__dropdown-btn.is-active .nav__dropdown-chevron { color: var(--lime); }
.nav__dropdown-chevron {
  width: 0.45em;
  height: 0.45em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-bottom: 0.15em;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.nav__item--dropdown.is-open .nav__dropdown-chevron {
  transform: rotate(-135deg);
  margin-bottom: -0.1em;
}
.nav__sub {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__sub li { margin: 0; }
.nav__sub a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: background .2s ease, color .2s ease;
}
.nav__sub a:hover {
  background: var(--lime-soft);
  color: var(--text);
}
.nav__sub a.is-active {
  color: var(--text);
  background: rgba(198, 232, 74, 0.08);
}

@media (min-width: 1101px) {
  .nav__item--dropdown {
    flex-wrap: nowrap;
  }
  .nav__sub {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: min(300px, calc(100vw - 40px));
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-2);
    z-index: 120;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
  }
  .nav__item--dropdown:hover .nav__sub,
  .nav__item--dropdown:focus-within .nav__sub,
  .nav__item--dropdown.is-open .nav__sub {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .nav__item--dropdown {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .nav__dropdown-btn {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
  }
  .nav__sub {
    display: none;
    width: 100%;
    padding: 4px 0 12px 16px;
    margin: 0;
    border-left: 2px solid var(--line-2);
  }
  .nav__item--dropdown.is-open .nav__sub {
    display: block;
  }
}

.nav__cta { display: inline-flex; }

.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 14px 16px;
  min-width: var(--tap-min);
  min-height: var(--tap-min);
  cursor: pointer;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  margin: 4px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Use menu button before links crowd (fixes smushed nav on laptop widths) */
@media (max-width: 1100px) {
  .nav__toggle { display: block; }
  .nav__links, .nav__cta { display: none; }
  .nav.is-open .nav__links,
  .nav.is-open .nav__cta {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(10, 16, 12, 0.96);
    backdrop-filter: blur(20px);
    padding: 28px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open .nav__links > li:not(.nav__item--dropdown) > a {
    font-size: 1.125rem;
    color: var(--text);
    padding: 12px 0;
    width: 100%;
  }
  .nav.is-open .nav__links > li:not(.nav__item--dropdown) > a.is-active::before { display: none; }
  .nav.is-open .nav__sub a { padding: 12px 14px; font-size: 1.0625rem; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--tap-min);
  padding: 14px 26px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.0625rem;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .25s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translate(3px, -3px); }

.btn--primary {
  background: var(--lime);
  color: #0a100c;
  border-color: var(--lime);
}
.btn--primary:hover {
  background: var(--lime-bright);
  border-color: var(--lime-bright);
  color: #0a100c;
  box-shadow: 0 12px 40px -10px rgba(198, 232, 74, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.32); color: var(--text); }
.btn--ghost:focus-visible {
  outline-color: var(--lime-bright);
}

.btn--dark {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line);
}
.btn--dark:hover { background: var(--surface-2); color: var(--text); border-color: var(--line-2); }

.btn--sm {
  padding: 10px 20px;
  min-height: 44px;
  font-size: 0.9375rem;
}
.btn--lg { padding: 18px 32px; min-height: 52px; font-size: 1.125rem; }
.btn--pill-sm {
  padding: 10px 16px;
  min-height: 40px;
  font-size: 0.8125rem;
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.btn--align-start { align-self: flex-start; }

/* ============================================================
   Hero (home page)
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 100px) 0 clamp(60px, 7vw, 110px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(closest-side, rgba(42, 122, 71, 0.35), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -260px; right: -200px;
  width: 720px; height: 720px;
  background: radial-gradient(closest-side, rgba(198, 232, 74, 0.18), transparent 70%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: end;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero__copy h1 { margin-bottom: 28px; }
.hero__copy h1 .lead-word {
  display: inline-block;
  font-style: italic;
  color: var(--lime);
}
.hero__copy .sub {
  font-size: clamp(1.0625rem, 1.3vw, 1.2225rem);
  color: var(--text-2);
  max-width: 52ch;
  margin: 0 0 36px;
}
.hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 2px solid var(--line);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-2);
}
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 16, 12, 0.65) 100%);
  pointer-events: none;
}
.hero__media-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
}
.hero__media-badge .pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(198, 232, 74, 0.22);
  animation: pulse 4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(198, 232, 74, 0.28); }
  100% { box-shadow: 0 0 0 12px rgba(198, 232, 74, 0); }
}
.hero__media-badge .label {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
}

/* Hero side stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero__stats .stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stats .stat__num {
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  color: var(--text);
  letter-spacing: -0.015em;
  line-height: 1;
}
.hero__stats .stat__num em { color: var(--lime); }
.hero__stats .stat__label {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--text-3);
}

/* ============================================================
   Industries strip (static, easy to read)
   ============================================================ */
.industries-strip {
  border-block: 1px solid var(--line);
  background: var(--surface);
  padding: clamp(24px, 3.5vw, 36px) 0;
}
.industries-strip .container {
  text-align: center;
}
.industries-strip__title {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 1rem;
}
.industries-strip__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0;
  max-width: 960px;
}
.industries-strip__list li {
  font-family: var(--sans);
  font-size: clamp(1.0625rem, 1.3vw, 1.1875rem);
  font-weight: 600;
  color: var(--text);
}
.industries-strip__list li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin: 0 1rem;
  background: var(--lime);
  opacity: 0.85;
  vertical-align: middle;
}

/* ============================================================
   Section header
   ============================================================ */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}
.section-head h2 { margin: 0; max-width: min(36ch, 100%); line-height: 1.08; }
.section-head p { color: var(--text-2); max-width: 58ch; font-size: 1.0625rem; line-height: 1.72; }

/* ============================================================
   Bento grid (services)
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .bento { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 600px) { .bento { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.bento__tile {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--r);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  min-height: 248px;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .25s ease, background .25s ease;
}
.bento__tile:hover {
  transform: translateY(-2px);
  border-color: var(--line-2);
  background: var(--surface-2);
}
.bento__tile.is-feature {
  background: linear-gradient(135deg, #14442b 0%, #0d2e1c 60%, #0a221a 100%);
  border-color: rgba(198, 232, 74, 0.16);
  min-height: 360px;
}
.bento__tile.is-lime {
  background: linear-gradient(135deg, var(--lime) 0%, #b6d640 100%);
  color: #0a100c;
  border-color: transparent;
}
.bento__tile.is-lime h3, .bento__tile.is-lime p, .bento__tile.is-lime .tile__no { color: #0a100c; }
.bento__tile.is-image { padding: 0; min-height: 320px; }
.bento__tile.is-image .tile__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.bento__tile.is-image .tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 16, 12, 0.05) 30%, rgba(10, 16, 12, 0.86) 100%);
  z-index: 1;
}
.bento__tile.is-image .tile__content {
  position: relative;
  z-index: 2;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.bento__tile h3 { margin: 0; line-height: 1.22; }
.bento__tile p { margin: 0; color: var(--text-2); font-size: 1.0625rem; line-height: 1.65; }
.tile__no {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--text-3);
}
.tile__cta { margin-top: 22px; }
.bento__tile.is-feature .tile__no { color: var(--lime); }

/* Bento spans */
.b-12 { grid-column: span 12; }
.b-8  { grid-column: span 8; }
.b-7  { grid-column: span 7; }
.b-6  { grid-column: span 6; }
.b-5  { grid-column: span 5; }
.b-4  { grid-column: span 4; }
.b-3  { grid-column: span 3; }
@media (max-width: 900px) {
  .b-8, .b-7, .b-6, .b-5, .b-4 { grid-column: span 6; }
  .b-3 { grid-column: span 3; }
  .b-12 { grid-column: span 6; }
}
@media (max-width: 600px) {
  .b-8, .b-7, .b-6, .b-5, .b-4, .b-3, .b-12 { grid-column: span 2; }
}

/* ============================================================
   Process / steps
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 22px;
  height: 1px;
  background: var(--line);
}
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  position: relative;
  padding-top: 56px;
}
.step__dot {
  position: absolute;
  top: 12px; left: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step__dot::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
}
.step__no {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--lime);
  margin-bottom: 12px;
  display: block;
}
.step h3 { margin: 0 0 10px; font-size: clamp(1.375rem, 1.8vw, 1.5rem); }
.step p { margin: 0; color: var(--text-2); font-size: 1.0625rem; line-height: 1.68; }

/* ============================================================
   Featured quote
   ============================================================ */
.featured-quote {
  background:
    radial-gradient(700px circle at 90% 0%, rgba(198, 232, 74, 0.10), transparent 60%),
    linear-gradient(180deg, #0e1a13 0%, #0a100c 100%);
  border: 2px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(48px, 6vw, 88px);
  position: relative;
  overflow: hidden;
}
.featured-quote::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 24px;
  font-family: var(--display);
  font-size: 12rem;
  line-height: 1;
  color: var(--lime);
  opacity: 0.18;
}
.featured-quote blockquote {
  margin: 0 0 32px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.22;
  color: var(--text);
  max-width: min(34ch, 100%);
  letter-spacing: -0.01em;
}
.featured-quote blockquote em { color: var(--lime); }
.featured-quote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--text-2);
}

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.quote {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--r);
  padding: 32px;
  transition: border-color .2s ease, background .25s ease;
}
.quote:hover { transform: none; border-color: var(--line-2); background: var(--surface-2); }
.quote blockquote {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 1.285rem;
  line-height: 1.38;
  color: var(--text);
  letter-spacing: -0.008em;
}
.quote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--text-3);
}

/* ============================================================
   Accreditation
   ============================================================ */
.accred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .accred-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .accred-grid { grid-template-columns: 1fr; } }

.accred {
  position: relative;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .2s ease, background .25s ease;
}
.accred:hover { transform: none; border-color: var(--line-2); background: var(--surface-2); }
.accred__year {
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--lime);
  text-transform: none;
}
.accred__art {
  height: 180px;
  background:
    radial-gradient(120% 80% at 30% 0%, rgba(70, 161, 106, 0.35), transparent 65%),
    linear-gradient(135deg, #143a26 0%, #0e2c1c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.accred__art img {
  max-height: 130px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
  pointer-events: none;
  display: block;
}
.accred__thumb {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 136px;
  border-radius: 0;
  transition: opacity .2s ease;
}
.accred__thumb:hover { opacity: 0.92; }
.accred__thumb:focus-visible {
  outline: 2px solid var(--lime-bright);
  outline-offset: 4px;
}
.accred__art .badge {
  font-family: var(--display);
  text-align: center;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.accred__art .badge em { color: var(--lime); display: block; font-style: italic; }
.accred__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.accred__body h3 { font-size: 1.32rem; margin: 0 0 12px; line-height: 1.28; font-family: var(--display); }
.accred__body p { color: var(--text-2); font-size: 1.0625rem; flex: 1; line-height: 1.65; }
.accred__body .more {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--lime);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  align-self: flex-start;
}
.accred__body .more:hover { color: var(--lime-bright); }
.accred__body .more:focus-visible {
  outline: 2px solid var(--lime-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Accreditation detail dialog */
.accred-dialog {
  width: min(560px, calc(100vw - 32px));
  max-height: min(85vh, 720px);
  padding: 0;
  border: 2px solid var(--line-2);
  border-radius: var(--r);
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.accred-dialog::backdrop {
  background: rgba(6, 12, 9, 0.72);
  backdrop-filter: blur(4px);
}
.accred-dialog__inner {
  padding: clamp(22px, 4vw, 32px);
  padding-top: 52px;
  position: relative;
  max-height: min(85vh, 720px);
  overflow-y: auto;
  box-sizing: border-box;
}
.accred-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--line-2);
  background: var(--surface-2);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.accred-dialog__close:hover {
  border-color: var(--lime);
  color: var(--lime);
}
.accred-dialog__title {
  margin: 0 48px 18px 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.accred-dialog__body {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--text-2);
}
.accred-dialog__body p { margin: 0 0 1em; }
.accred-dialog__body p:last-child { margin-bottom: 0; }

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero {
  padding: clamp(72px, 10vw, 140px) 0 clamp(48px, 6vw, 96px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgba(70, 161, 106, 0.25), transparent 70%);
  filter: blur(50px);
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgba(198, 232, 74, 0.10), transparent 70%);
  filter: blur(60px);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.page-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(2.15rem, 5vw, 3.85rem);
  line-height: 1.06;
}
.page-hero p { color: var(--text-2); font-size: 1.125rem; max-width: 54ch; line-height: 1.72; }

/* ============================================================
   Numbered list (FAQ + values)
   ============================================================ */
.num-list { display: grid; gap: 0; max-width: none; }
.num-item {
  border-top: 1px solid var(--line);
  padding: 28px 0 32px;
}
.num-item:hover { padding-left: 4px; }
.num-item:last-of-type { border-bottom: 1px solid var(--line); }
.num-item summary { list-style: none; cursor: pointer; }
.num-item summary::-webkit-details-marker { display: none; }
.num-item__summary {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 48px;
  gap: clamp(12px, 2vw, 24px);
  align-items: start;
}
.num-item .n {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--lime);
}
.num-item .q {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  line-height: 1.26;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
}
.num-item .plus {
  width: 44px; height: 44px;
  justify-self: end;
  border-radius: 50%;
  border: 2px solid var(--line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  transition: transform .3s ease, background .25s ease;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.25rem;
}
.num-item[open] .plus { transform: rotate(45deg); background: var(--lime); color: #0a100c; }
.num-item .a {
  margin-top: 16px;
  padding: 22px 24px;
  width: 100%;
  box-sizing: border-box;
  color: var(--text-2);
  font-size: 1.0625rem;
  line-height: 1.74;
  max-width: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
@media (max-width: 640px) {
  .num-item {
    padding: 22px 0 28px;
  }
  .num-item__summary {
    grid-template-columns: 40px minmax(0, 1fr) 44px;
    gap: 10px 14px;
  }
  .num-item .a {
    padding: 20px 18px;
    margin-top: 12px;
  }
}

/* ============================================================
   Services page large feature row
   ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: clamp(48px, 8vw, 120px) 0;
  border-top: 1px solid var(--line);
}
.feature-row + .feature-row { border-top: 1px solid var(--line); }
.feature-row--single {
  grid-template-columns: 1fr;
}
.feature-row.is-flip > :first-child { order: 2; }
@media (max-width: 900px) {
  .feature-row, .feature-row.is-flip { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.is-flip > :first-child { order: 0; }
}
.feature-row h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.95rem);
  margin: 0 0 20px;
  line-height: 1.08;
}
.feature-row p { color: var(--text-2); max-width: 54ch; font-size: 1.0625rem; line-height: 1.72; }
.feature-row__art {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 2px solid var(--line);
  background: var(--surface);
  position: relative;
}
.feature-row__art img {
  width: 100%; height: 100%; object-fit: cover;
}
.feature-row__art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,16,12,0.5) 100%);
}
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 32px; }
.chip {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text);
  padding: 10px 18px;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 999px;
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background:
    radial-gradient(800px circle at 80% 30%, rgba(198, 232, 74, 0.18), transparent 60%),
    radial-gradient(500px circle at 15% 80%, rgba(42, 122, 71, 0.30), transparent 60%),
    linear-gradient(180deg, #0c1610 0%, #0a100c 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(72px, 10vw, 140px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  font-size: clamp(2rem, 4.8vw, 3.85rem);
  max-width: 22ch;
  margin: 0 auto 22px;
  line-height: 1.06;
}
.cta-band p { color: var(--text-2); max-width: 56ch; margin: 0 auto 36px; font-size: 1.125rem; line-height: 1.72; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-card {
  background:
    radial-gradient(700px circle at 100% 0%, rgba(70, 161, 106, 0.20), transparent 60%),
    linear-gradient(180deg, #0e1a13 0%, #0a100c 100%);
  border: 2px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(44px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 820px) { .contact-card { grid-template-columns: 1fr; } }
.contact-card h2 { margin: 0 0 16px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 56px;
  padding: 18px 24px;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--r);
  color: var(--text);
  transition: border-color .2s ease, background .25s ease;
}
.contact-method:hover {
  transform: none;
  border-color: var(--line-2);
  background: var(--surface-2);
  color: var(--text);
}
.contact-method:focus-visible {
  outline-offset: 4px;
}
.contact-method .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--lime-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  flex: none;
}
.contact-method .meta {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.contact-method .value {
  font-family: var(--sans);
  font-size: clamp(1.285rem, 2vw, 1.625rem);
  font-weight: 600;
  color: var(--text);
}

.contact-map-block h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  margin: 0 0 14px;
  line-height: 1.1;
}
.contact-map-block__intro {
  color: var(--text-2);
  max-width: 62ch;
  margin: 0 0 28px;
  font-size: 1.0625rem;
  line-height: 1.65;
}
.contact-map-block__intro a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-map-block__intro a:hover { color: var(--text); }
.contact-map-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  max-width: 920px;
}
.contact-map-star {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-2);
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.contact-map-star:hover {
  border-color: var(--line-2);
  color: var(--text);
  background: var(--surface-2);
}
.contact-map-star:focus-visible {
  outline: 2px solid var(--lime-bright);
  outline-offset: 3px;
}
.contact-map-star.is-active {
  border-color: var(--lime);
  background: rgba(70, 161, 106, 0.12);
  color: var(--text);
}
.contact-map-star__icon {
  color: var(--lime);
  font-size: 1.1rem;
  line-height: 1;
  transition: color .2s ease, transform .2s ease;
}
.contact-map-star.is-active .contact-map-star__icon {
  color: var(--lime-bright);
  transform: scale(1.12);
}
.contact-map-star__label { line-height: 1.2; }
.contact-map {
  border-radius: var(--r-xl);
  border: 2px solid var(--line);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  max-width: 920px;
  background: var(--surface);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

/* ============================================================
   Get Started form
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 980px) { .form-grid { grid-template-columns: 1fr; } }

.squarespace-form-host {
  background:
    radial-gradient(600px circle at 100% 0%, rgba(198, 232, 74, 0.10), transparent 60%),
    linear-gradient(180deg, #11211a 0%, #0c1610 100%);
  border: 2px solid var(--line);
  border-radius: var(--r-xl);
  padding: 0;
  overflow: hidden;
  min-height: 720px;
}
.squarespace-form-iframe {
  width: 100%;
  min-height: 720px;
  border: 0;
  display: block;
  background: #0c1610;
}

.form-grid__pitch h2 {
  font-size: clamp(1.95rem, 3.5vw, 3rem);
  margin: 0 0 20px;
  line-height: 1.08;
}
.form-grid__pitch p { color: var(--text-2); max-width: 46ch; margin: 0 0 22px; font-size: 1.0625rem; line-height: 1.72; }
.form-grid__pitch .bullets {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.form-grid__pitch .bullets li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--text-2);
  font-size: 1.0625rem;
  line-height: 1.65;
}
.form-grid__pitch .bullets li::before {
  content: "";
  width: 16px; height: 16px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--lime-soft);
  border: 1px solid var(--lime);
  flex: none;
  position: relative;
}

.form {
  --form-accent: var(--lime);
  --form-accent-soft: rgba(198, 232, 74, 0.10);
  --form-accent-border: rgba(198, 232, 74, 0.45);
  --form-accent-glow: rgba(198, 232, 74, 0.18);
  background:
    radial-gradient(600px circle at 100% 0%, var(--form-accent-soft), transparent 60%),
    linear-gradient(180deg, #11211a 0%, #0c1610 100%);
  border: 2px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
}
.form--adp {
  --form-accent: #ff6b4a;
  --form-accent-soft: rgba(255, 107, 74, 0.14);
  --form-accent-border: rgba(255, 107, 74, 0.5);
  --form-accent-glow: rgba(255, 107, 74, 0.2);
  background: linear-gradient(180deg, #1a1210 0%, #100c0a 100%);
}
.form--paychex {
  --form-accent: #5eb3ff;
  --form-accent-soft: rgba(94, 179, 255, 0.14);
  --form-accent-border: rgba(94, 179, 255, 0.5);
  --form-accent-glow: rgba(94, 179, 255, 0.2);
  background: linear-gradient(180deg, #0f1520 0%, #0a0e14 100%);
}
.form--erp {
  --form-accent: #b39cff;
  --form-accent-soft: rgba(179, 156, 255, 0.14);
  --form-accent-border: rgba(179, 156, 255, 0.5);
  --form-accent-glow: rgba(179, 156, 255, 0.2);
  background: linear-gradient(180deg, #14121c 0%, #0d0b12 100%);
}
.form--infra {
  --form-accent: #5ee4b5;
  --form-accent-soft: rgba(94, 228, 181, 0.12);
  --form-accent-border: rgba(94, 228, 181, 0.45);
  --form-accent-glow: rgba(94, 228, 181, 0.18);
  background: linear-gradient(180deg, #0f1a16 0%, #0a120e 100%);
}
.form--contact {
  --form-accent: var(--lime);
  max-width: 640px;
  margin: 0 auto;
}
.form--adp .btn--primary,
.form--paychex .btn--primary,
.form--erp .btn--primary,
.form--infra .btn--primary {
  background: var(--form-accent);
  color: #0a100c;
  border-color: var(--form-accent);
}
.form--adp .btn--primary:hover,
.form--paychex .btn--primary:hover,
.form--erp .btn--primary:hover,
.form--infra .btn--primary:hover {
  filter: brightness(1.08);
}
.form-page-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.form__badge {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 12px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--form-accent);
  border: 1px solid var(--form-accent-border);
  border-radius: 999px;
  background: var(--form-accent-soft);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
@media (max-width: 540px) { .form__row { grid-template-columns: 1fr; } }
.form__field { margin-bottom: 16px; display: flex; flex-direction: column; }
.form__field label {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 10px;
}
.form__field label .req { color: var(--form-accent); }
.form__field input,
.form__field textarea,
.form__field select {
  font-family: var(--sans);
  font-size: 1.0625rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  min-height: 52px;
  transition: border-color .2s ease, background .25s ease, box-shadow .2s ease;
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: var(--text-3); }
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus,
.form__field input:focus-visible,
.form__field textarea:focus-visible,
.form__field select:focus-visible {
  outline: none;
  border-color: var(--form-accent);
  background: var(--form-accent-soft);
  box-shadow: 0 0 0 4px var(--form-accent-glow);
}
.form__field textarea { min-height: 160px; resize: vertical; }
.form__field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c6e84a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form__help {
  margin: 8px 0 0;
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.5;
  max-width: 52ch;
}
.form__field--highlight {
  padding: 20px 18px;
  margin-bottom: 20px;
  border: 2px solid var(--form-accent-border);
  border-radius: var(--r-md);
  background: var(--form-accent-soft);
}
.form__section-label {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--form-accent);
}
.form__optional {
  font-weight: 500;
  color: var(--text-3);
  text-transform: none;
  letter-spacing: 0;
}
.form__select-payroll {
  font-weight: 600;
}

.form__checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 4px;
}
@media (max-width: 540px) { .form__checks { grid-template-columns: 1fr; } }
.form__check {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  min-height: 48px;
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-2);
  transition: border-color .2s ease, color .2s ease, background .25s ease;
}
.form__check input { accent-color: var(--form-accent); width: 22px; height: 22px; flex-shrink: 0; }
.form__check.is-checked { border-color: var(--form-accent); color: var(--text); background: var(--form-accent-soft); }

.form__submit { margin-top: 6px; }
.form__success {
  display: none;
  background: var(--form-accent-soft);
  color: var(--text);
  border: 1px solid var(--form-accent-border);
  padding: 12px 16px;
  border-radius: var(--r-sm);
  margin-bottom: 16px;
  font-size: .9rem;
}
.form__success:not([hidden]) { display: block; }
.form__error {
  display: none;
  background: rgba(220, 80, 80, 0.10);
  color: #ffb1b1;
  border: 1px solid rgba(220, 80, 80, 0.40);
  padding: 12px 16px;
  border-radius: var(--r-sm);
  margin-bottom: 16px;
  font-size: .9rem;
}
.form__error.is-visible { display: block; }

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================================
   Site Survey download
   ============================================================ */
.download-card {
  background:
    radial-gradient(700px circle at 90% 0%, rgba(198, 232, 74, 0.16), transparent 60%),
    linear-gradient(180deg, #122016 0%, #0a100c 100%);
  border: 2px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 820px) { .download-card { grid-template-columns: 1fr; } }
.download-card h2 { margin: 0 0 16px; }
.download-card p { color: var(--text-2); }
.download-card__visual {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r);
  background:
    radial-gradient(120% 100% at 20% 0%, rgba(70, 161, 106, 0.30), transparent 60%),
    linear-gradient(180deg, #143a26 0%, #0c1f15 100%);
  border: 1px solid var(--line-2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-card__visual .pdf {
  font-family: var(--display);
  font-size: 5rem;
  color: var(--lime);
  letter-spacing: -0.05em;
  font-style: italic;
}
.download-card__list { list-style: none; padding: 0; margin: 24px 0 32px; display: grid; gap: 10px; }
.download-card__list li {
  display: flex; gap: 12px; align-items: center;
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-2);
  line-height: 1.5;
}
.download-card__list li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lime);
}

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal {
  opacity: 1;
  transform: none;
}
html.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }
/* Homepage: show content immediately (no wait for scroll JS) */
.home-static .reveal,
.home-static .hero__copy,
.home-static .practice-block,
.home-static .services-hub,
.home-static .industries-strip,
.home-static .steps .step {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition: none !important; animation: none !important; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: clamp(64px, 8vw, 96px) 0 36px;
  margin-top: 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.9fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer__top { grid-template-columns: 1fr; } }

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer__brand img {
  height: 44px; width: 44px;
  border-radius: 50%;
  background: #0a100c;
  border: 1px solid var(--line-2);
  object-fit: cover;
}
.footer__brand strong {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
}
.footer__tagline { color: var(--text-2); max-width: 38ch; font-size: 1.0625rem; line-height: 1.65; }

.footer__col h4 {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text);
  margin: 0 0 16px;
}
.footer__col a {
  display: block;
  padding: 10px 0;
  color: var(--text-2);
  font-size: 1.0625rem;
  font-weight: 500;
}
.footer__col a:hover { color: var(--lime); }

.footer__bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--text-3);
}
.footer__bottom .seal { color: var(--lime); letter-spacing: 0.04em; }

.nav__external-hint {
  font-weight: 700;
  color: var(--lime);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lead-text {
  font-size: 1.1875rem;
  line-height: 1.72;
  color: var(--text-2);
  max-width: 54ch;
  margin: 0;
}
.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 20px;
}
.infra-card {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
}
.infra-card h3 {
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text);
  letter-spacing: 0;
  line-height: 1.3;
}
.infra-card p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.68;
  color: var(--text-2);
}
.narrow-prose {
  max-width: 760px;
  margin-inline: auto;
}

.partner-callout { text-align: left; }

.featured-quote.partner-callout blockquote {
  max-width: none;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.42;
  margin-bottom: 1.25rem;
}
.partner-callout__follow {
  margin: 0;
  color: var(--text-2);
  font-size: 1.125rem;
  line-height: 1.72;
}

.cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

/* helpers */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--text-3); }
.mt-block-lg { margin-top: 2.5rem; }
.footer-link--cta {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--lime);
  font-weight: 700;
  font-size: 1.0625rem;
}
.footer-link--cta:hover { color: var(--lime-bright); }
.form-hint {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-3);
  margin: 1rem 0 0;
}
.faq-help-row {
  margin-top: 3.25rem;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.faq-help-row__lead {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-2);
}

/* Hero tech video treatment */
.hero__media--tech .hero__video--tech {
  filter: saturate(1.15) contrast(1.08) hue-rotate(-8deg);
}
.hero__media--tech::after {
  background: linear-gradient(135deg, rgba(10, 16, 12, 0.15) 0%, rgba(42, 122, 71, 0.25) 50%, rgba(10, 16, 12, 0.55) 100%);
}

.industries-strip__sub {
  font-size: 0.85em;
  color: var(--text-3);
  font-weight: 400;
}

/* Separated practice blocks (home) */
.practice-block__head { margin-bottom: clamp(32px, 5vw, 48px); max-width: 720px; }
.practice-block__head h2 { margin-bottom: 0.35em; }
.practice-block__head p { margin: 0; max-width: 58ch; }
.practice-block--erp { background: var(--bg-2); }
.practice-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.practice-feature--flip .practice-feature__media { order: 2; }
.practice-feature--flip .practice-feature__body { order: 1; }
.practice-feature--text-only {
  grid-template-columns: 1fr;
}
.practice-feature--text-only .practice-feature__body {
  max-width: 720px;
}
@media (max-width: 900px) {
  .practice-feature, .practice-feature--flip { grid-template-columns: 1fr; }
  .practice-feature--flip .practice-feature__media,
  .practice-feature--flip .practice-feature__body { order: unset; }
}
.practice-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.practice-feature__body { padding: clamp(28px, 4vw, 48px); }
.practice-feature__body h3 { margin-bottom: 0.65em; }
.bullets--compact { gap: 10px; margin: 20px 0 24px; }
.bullets--compact li { font-size: 1rem; }

/* Service split (services page) */
.service-split { padding: clamp(48px, 8vw, 80px) 0; }
.service-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 800px) { .service-split__grid { grid-template-columns: 1fr; } }
.service-split__card {
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--r-xl);
  border: 2px solid var(--line);
  background: var(--surface);
}
.service-split__card--erp { background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%); }
.service-split__card h2 { margin-bottom: 0.5em; }

.industries-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.industries-grid li {
  padding: 14px 18px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-2);
  font-weight: 600;
  font-size: 1rem;
}

/* Partner platforms (accreditation) */
.partner-grid {
  list-style: none;
  padding: 0;
  margin: clamp(28px, 4vw, 40px) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.partner-grid li {
  padding: 14px 22px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-2);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  text-align: center;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.partner-grid li:hover {
  border-color: rgba(198, 232, 74, 0.35);
  color: var(--text);
  background: var(--lime-soft);
}

/* Assessments showcase */
.assess-showcase {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
@media (max-width: 900px) { .assess-showcase { grid-template-columns: 1fr; } }
.assess-showcase--copy-only {
  grid-template-columns: 1fr;
}
.assess-showcase--copy-only .assess-showcase__copy {
  max-width: 720px;
}
.assess-showcase__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 520px;
}
.assess-photo {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 2px solid var(--line);
  background: var(--surface);
}
.assess-photo--lg { grid-column: 1 / -1; }
.assess-photo img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.assess-photo figcaption {
  padding: 10px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Daniel field services */
.daniel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.daniel-card {
  padding: 22px;
  border-radius: var(--r-lg);
  border: 2px solid var(--line);
  background: var(--surface);
}
.daniel-card--lime {
  background: var(--lime-soft);
  border-color: rgba(198, 232, 74, 0.35);
}
.daniel-card h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.65em;
}
.daniel-card p { margin: 0; font-size: 1rem; line-height: 1.6; }
.daniel-lead {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 32px;
  padding: 24px;
  border-radius: var(--r-lg);
  border: 2px solid var(--line);
  background: var(--surface-2);
}
.daniel-lead__photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lime);
  flex: none;
}
.daniel-lead p { margin: 0; color: var(--text-2); }

.infra-card--img {
  padding: 0;
  overflow: hidden;
}
.infra-card--img img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.infra-card--img .infra-card__body { padding: 18px 20px 22px; }

/* Contact map + stars */
.contact-map-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 2px solid var(--line);
}
.contact-map-locations--overlay {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  right: 16px;
  margin: 0;
  padding: 12px;
  background: rgba(10, 16, 12, 0.82);
  backdrop-filter: blur(8px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.contact-map-wrap .contact-map {
  border: none;
  border-radius: 0;
}
.contact-map-star .contact-map-star__icon {
  color: var(--lime);
  text-shadow: 0 0 12px rgba(198, 232, 74, 0.5);
}

.team-soon {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px);
  border: 2px dashed var(--line);
  border-radius: var(--r-xl);
}
.team-soon__badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--lime-soft);
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Services hub (home + overview) */
.services-hub {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(48px, 7vw, 72px) 0;
}
.services-hub__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) { .services-hub__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services-hub__grid { grid-template-columns: 1fr; } }
.services-hub__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border-radius: var(--r-lg);
  border: 2px solid var(--line);
  background: var(--surface);
  color: inherit;
  transition: border-color .2s ease, transform .2s ease;
  min-height: 100%;
}
.services-hub__card:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
  color: inherit;
}
.services-hub__card--partner {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
}
.services-hub__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}
.services-hub__card h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}
.services-hub__card p {
  margin: 0;
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-2);
}
.services-hub__cta {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--lime);
}
.partner-page-card {
  padding: clamp(32px, 5vw, 48px);
  border-radius: var(--r-xl);
  border: 2px solid var(--line);
  background: var(--surface);
  text-align: center;
}
.partner-page-card h2 { margin-bottom: 0.5em; }
.partner-page-card p { max-width: 52ch; margin: 0 auto 1.5rem; }
.partner-page-card__note {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: var(--text-3);
}
.cta-band__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.nav__brand strong {
  font-size: clamp(1rem, 2vw, 1.375rem);
}
.nav__cta.btn--sm {
  font-size: 0.875rem;
  padding: 10px 16px;
  white-space: nowrap;
  flex-shrink: 0;
}
.site-survey-note {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-2);
}
.site-survey-note a { font-weight: 700; color: var(--lime); }
.site-survey-note a:hover { color: var(--lime-bright); }
.contact-muted-link { margin-top: 14px; }

/* Assessment gallery grid */
.assess-showcase__gallery--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: none;
}
@media (max-width: 900px) {
  .assess-showcase__gallery--grid { grid-template-columns: 1fr; }
}

/* Daniel card media */
.daniel-card__media {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--r);
  margin-bottom: 14px;
  display: block;
}
.daniel-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.daniel-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 2px solid var(--line);
}
@media (max-width: 768px) {
  .daniel-media { grid-template-columns: 1fr; }
  .daniel-media img { height: 180px; }
}

/* Contact map city list */
.contact-map-cities {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-map-cities__link {
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.contact-map-cities__link:hover,
.contact-map-cities__link:focus-visible {
  border-color: var(--lime);
  color: var(--text);
  background: var(--lime-soft);
}
.contact-map-cities__link.is-active {
  border-color: var(--lime);
  background: var(--lime-soft);
  color: var(--text);
}
@media (max-width: 640px) {
  .contact-map-locations--overlay {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin-bottom: 12px;
    border-radius: var(--r-lg);
  }
  .contact-map-wrap { display: flex; flex-direction: column; }
}

/* Site survey checklist */
.checklist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.checklist-doc {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
}
.checklist-doc__head h2 { margin-bottom: 0.35em; }
.checklist-doc__head p { color: var(--text-2); margin-bottom: 24px; }
.checklist-doc__meta {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.checklist-doc__meta label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-3);
}
.checklist-doc__meta input {
  font: inherit;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg);
  color: var(--text);
}
.checklist-section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.checklist-section:first-of-type { border-top: none; padding-top: 0; }
.checklist-section h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.checklist-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.checklist-items label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-2);
  line-height: 1.55;
  cursor: pointer;
}
.checklist-items input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: none;
  accent-color: var(--green);
}
.checklist-doc__notes {
  margin: 20px 0 8px;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-3);
}
.checklist-doc__textarea {
  width: 100%;
  font: inherit;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg);
  color: var(--text);
  resize: vertical;
}

@media print {
  .site-header, .site-footer, .page-hero, .download-card, .cta-band, .skip-link, .checklist-actions { display: none !important; }
  .checklist-doc { border: none; padding: 0; }
  .checklist-section { break-inside: avoid; }
  body { background: #fff; color: #000; }
}
