/* ============================================================
   IT Works MSP — Shared Stylesheet
   Forest green palette · generous spacing · soft radii
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Core brand — dark forest + emerald (style guide) */
  --accent-primary:     #1B4332;
  --accent-primary-hover: #2D6A4F;
  --accent-bright:      #52B788;
  --accent-soft:        rgba(27, 67, 50, 0.12);
  --accent-soft-border: rgba(27, 67, 50, 0.22);

  /* Semantic aliases (legacy class names → new palette) */
  --navy:      #1A211E;
  --navy-mid:  #252E2A;
  --blue:      #2D6A4F;
  --blue-light:#52B788;
  --orange:    var(--accent-primary);
  --orange-dk: var(--accent-primary-hover);

  --text:      #1A211E;
  --text-mid:  #4B5563;
  --text-light:#4B5563;
  --border:    #E2E8E4;
  --bg-light:  #F4F7F5;
  --bg-mid:    #E8EDE9;
  --white:     #FFFFFF;

  --radius:    14px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --shadow:    0 2px 8px rgba(26, 33, 30, 0.06), 0 1px 3px rgba(26, 33, 30, 0.04);
  --shadow-lg: 0 20px 40px rgba(26, 33, 30, 0.1), 0 8px 16px rgba(26, 33, 30, 0.06);

  --space-section:   clamp(4.5rem, 8vw, 6.5rem);
  --space-section-sm: clamp(3.25rem, 6vw, 4.5rem);
  --space-section-lg: clamp(5.5rem, 10vw, 7.5rem);
  --container-pad:   clamp(1.25rem, 4vw, 2rem);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.22; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(2.125rem, 5vw, 3.125rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.375rem); letter-spacing: -0.015em; }
h3 { font-size: 1.3125rem; }
h4 { font-size: 1.0625rem; }
p  { color: var(--text-mid); }

/* ── Layout ────────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 var(--container-pad); }
.section    { padding: var(--space-section) 0; }
.section-sm { padding: var(--space-section-sm) 0; }
.section-lg { padding: var(--space-section-lg) 0; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-lg);
  font-size: 1rem; font-weight: 600; line-height: 1;
  cursor: pointer; border: 2px solid transparent;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-primary); color: var(--white);
  border-color: var(--accent-primary);
}
.btn-primary:hover {
  background: var(--accent-primary-hover); border-color: var(--accent-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.35);
}
.btn-secondary {
  background: transparent; color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12); border-color: var(--white);
}
.btn-outline {
  background: transparent; color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue); color: var(--white);
}
.btn-lg { padding: 18px 38px; font-size: 1.0625rem; border-radius: var(--radius-xl); }
.btn-sm { padding: 11px 22px; font-size: .875rem; }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--container-pad); max-width: 1140px; margin: 0 auto;
  min-height: 64px;
}
.nav-inner > a:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-icon {
  display: block;
  height: 36px;
  width: auto;
  flex-shrink: 0;
}
.nav-wordmark {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1;
}
.nav-wordmark span { color: var(--accent-bright); }
.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none; flex-wrap: nowrap;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.78); font-size: .9375rem; font-weight: 500;
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links > li { position: relative; flex: 0 0 auto; }
.nav-links > .nav-dropdown { position: relative !important; }
.nav-links > .nav-dropdown::after {
  content: '';
  position: absolute;
  left: -24px;
  right: -24px;
  top: 100%;
  height: 22px;
  background: transparent;
}
.nav .nav-drop-btn {
  -webkit-appearance: none;
  appearance: none;
  background: transparent !important;
  border: 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: .9375rem !important;
  font-weight: 500 !important;
  font-family: inherit;
  cursor: pointer;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .18s ease;
}
.nav .nav-drop-btn::after {
  content: '\25BE';
  font-size: .72rem;
  opacity: .85;
  transform: translateY(1px) rotate(0deg);
  transition: transform .22s ease, opacity .2s ease;
}
.nav-dropdown:hover .nav-drop-btn,
.nav-dropdown:focus-within .nav-drop-btn { color: var(--white); }
.nav-dropdown:hover .nav-drop-btn::after,
.nav-dropdown:focus-within .nav-drop-btn::after {
  transform: translateY(1px) rotate(180deg);
  opacity: 1;
}
.nav .nav-dropdown-menu {
  position: absolute !important;
  top: calc(100% + 12px) !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(8px) scale(0.985) !important;
  min-width: 780px !important;
  width: max-content !important;
  max-width: min(92vw, 920px) !important;
  background:
    radial-gradient(120% 160% at 100% 0%, rgba(82, 183, 136, 0.12) 0%, rgba(82, 183, 136, 0) 52%),
    linear-gradient(180deg, rgba(37, 46, 42, 0.98) 0%, rgba(26, 33, 30, 0.98) 100%);
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 18px !important;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.38) !important;
  padding: 18px !important;
  display: none !important;
  grid-template-columns: minmax(240px, 1fr) minmax(180px, auto) minmax(240px, 1fr) !important;
  gap: 16px !important;
  z-index: 1200 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px) scale(0.985) !important;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease !important;
}
.nav .nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 17%;
  width: 14px;
  height: 14px;
  background: #27312c;
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  transform: rotate(45deg);
}
.nav .nav-dropdown:hover .nav-dropdown-menu,
.nav .nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1) !important;
}
.nav-dropdown-group {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
}
.nav-dropdown-title {
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .72rem;
  font-weight: 700;
  margin: 2px 6px 8px;
}
.nav-dropdown-group a {
  display: block;
  padding: 9px 12px;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: .875rem;
  border: 1px solid transparent;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}
.nav .nav-dropdown-menu a { white-space: nowrap; }
.nav-dropdown-group a:hover {
  background: rgba(82, 183, 136, 0.16);
  border-color: rgba(82, 183, 136, 0.32);
  color: var(--white);
  transform: translateX(3px);
}
/* Featured promo card in mega menu */
.nav-dropdown-featured {
  background: linear-gradient(160deg, rgba(82, 183, 136, 0.15) 0%, rgba(27, 67, 50, 0.3) 100%);
  border: 1px solid rgba(82, 183, 136, 0.25);
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav-dropdown-featured .nav-featured-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #52B788;
  margin-bottom: 10px;
}
.nav-dropdown-featured h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.nav-dropdown-featured p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin-bottom: 16px;
}
.nav-featured-cta {
  display: inline-block;
  background: #52B788;
  color: #1A211E;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: background .16s ease, transform .16s ease;
}
.nav-featured-cta:hover {
  background: #6fcf9a;
  transform: translateY(-1px);
}

@media (max-width: 1120px) {
  .nav-dropdown-menu {
    min-width: 500px;
    left: -14px;
    grid-template-columns: 1fr 1fr !important;
  }
  .nav-dropdown-featured {
    grid-column: 1 / -1;
  }
}
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-phone { color: #fff; font-size: .875rem; text-decoration: none; font-weight: 600; }
.nav-phone strong { color: var(--white); }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--white);
  margin: 5px 0; border-radius: 2px; transition: all .2s;
}
.mobile-menu {
  display: none; background: var(--navy-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-menu > a {
  display: block; padding: 18px var(--container-pad);
  color: rgba(255, 255, 255, 0.82); font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-menu > a:last-child { border: none; }
.mobile-menu.open { display: block; }

/* Mobile accordion sections */
.mob-section { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mob-section-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 18px var(--container-pad);
  background: none; border: none; outline: none;
  -webkit-appearance: none; appearance: none;
  color: rgba(255,255,255,0.82); font-size: 1rem; font-weight: 600;
  cursor: pointer; text-align: left; font-family: inherit;
  line-height: 1.3;
}
.mob-section-btn:hover { color: #fff; }
.mob-chevron { transition: transform 0.22s ease; flex-shrink: 0; opacity: 0.7; }
.mob-section-btn[aria-expanded="true"] .mob-chevron { transform: rotate(180deg); opacity: 1; }
.mob-section-body { display: none; background: rgba(0,0,0,0.18); }
.mob-section-body.open { display: block; }
.mob-section-label {
  padding: 12px var(--container-pad) 4px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.mob-section-body a {
  display: block; padding: 13px var(--container-pad) 13px calc(var(--container-pad) + 14px);
  color: rgba(255,255,255,0.75); font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.04); text-decoration: none;
}
.mob-section-body a:hover { color: #fff; background: rgba(255,255,255,0.04); }
.mob-link {
  display: block; padding: 18px var(--container-pad);
  color: rgba(255,255,255,0.82); font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06); text-decoration: none;
}
.mob-link:hover { color: #fff; }
.mob-cta-row {
  padding: 20px var(--container-pad) 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.mob-phone {
  display: block; text-align: center;
  color: rgba(255,255,255,0.65); font-size: 0.95rem; text-decoration: none;
}
.mob-phone:hover { color: #fff; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(145deg, #15221c 0%, var(--navy) 45%, #1a3328 100%);
  padding: clamp(5.5rem, 12vw, 7.5rem) 0 clamp(4.5rem, 10vw, 6rem);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 75% 55% at 72% 42%, rgba(82, 183, 136, 0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.hero-inner.hero-inner--triple {
  grid-template-columns: minmax(440px, 1fr) 300px 420px;
  gap: 3rem;
  align-items: start;
  max-width: none;
  width: 100%;
}
@media (max-width: 1340px) {
  .hero-inner.hero-inner--triple {
    grid-template-columns: 1fr;
  }
  .hero-inner--triple .hero-content { order: 1; }
  .hero-inner--triple .hero-illustration { order: 2; }
  .hero-inner--triple .hero-card { order: 3; }
  .hero-inner--triple .hero-content {
    min-width: 0;
    max-width: 100%;
  }
}
.hero .hero-content {
  max-width: 560px;
  min-width: 0;
}
@media (min-width: 1341px) {
  .hero-inner--triple .hero-content {
    min-width: 440px;
  }
}
.hero-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.hero-inner--triple .hero-illustration {
  flex: 0 0 300px;
  max-width: 300px;
  width: 100%;
  align-self: center;
}
.hero-visual {
  margin-top: 28px;
}
.hero-visual img {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft-border);
  color: #8FD4B3; font-size: .8125rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; padding: 8px 16px; border-radius: 100px;
  margin-bottom: 24px;
}
.hero-inner--triple .hero-eyebrow {
  white-space: nowrap;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}
@media (max-width: 1340px) {
  .hero-inner--triple .hero-eyebrow {
    white-space: normal;
    font-size: 0.65rem;
  }
}
.hero-split .hero-eyebrow { align-self: flex-start; }
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
}
.hero-sub {
  font-size: 1.125rem; color: rgba(255, 255, 255, 0.78);
  margin-bottom: 40px; max-width: 540px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-trust {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1.5rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.80);
}
.hero-trust-item svg { opacity: .75; }

/* Assessment card */
.hero-card {
  width: 420px;
  max-width: 100%;
  flex-shrink: 0;
  background: var(--white); border-radius: var(--radius-xl); padding: 40px;
  box-shadow: var(--shadow-lg);
}
.hero-card h2, .hero-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.3125rem; }
.hero-card p  { font-size: .9375rem; color: var(--text-mid); margin-bottom: 28px; }
.form-group  { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .8125rem; font-weight: 600;
  color: var(--text); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .9375rem; font-family: inherit; color: var(--text);
  background: var(--bg-light);
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-note {
  text-align: center; font-size: .8rem; color: var(--text-light); margin-top: 14px;
}

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-light); border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(32px, 6vw, 56px); flex-wrap: wrap; max-width: 1140px; margin: 0 auto; padding: 0 var(--container-pad);
}
.trust-stat { text-align: center; min-width: 0; }
.trust-stat-icon {
  width: 20px;
  height: 20px;
  margin: 0 auto 8px;
  filter: none;
}
.trust-stat-num { font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.trust-stat-label { font-size: .8125rem; color: #4B5563; margin-top: 4px; line-height: 1.45; }
.trust-item {
  text-align: center;
  max-width: 220px;
}
.trust-item strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.trust-item span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.4;
}
.trust-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ── Industries ────────────────────────────────────────────── */
.industries { background: var(--white); }
.section-label {
  font-size: .8125rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.section-title { margin-bottom: 18px; }
.section-sub {
  font-size: 1.0625rem; color: var(--text-mid); max-width: 640px; line-height: 1.75;
}
.industry-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 22px; margin-top: 56px;
}
.industry-card {
  padding: 28px 22px; border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); text-align: center;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.industry-card:hover {
  border-color: var(--blue-light); transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.industry-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent-soft); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.industry-icon img {
  width: 28px;
  height: 28px;
}
.industry-icon,
.industry-card .icon-badge,
.industry-card .icon-badge svg,
.industries .icon-badge svg {
  color: var(--accent-primary) !important;
  stroke: var(--accent-primary) !important;
  fill: none !important;
}
.industry-card .icon-badge {
  background: var(--accent-soft) !important;
}
.industry-card h3, .industry-card h4 { font-size: 1rem; color: var(--navy); font-weight: 700; margin-bottom: 10px; }
.industry-card p  { font-size: .8125rem; color: var(--text-light); line-height: 1.55; margin-top: 0; }

/* ── Services ──────────────────────────────────────────────── */
.services { background: var(--bg-light); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 40px;
  border: 1.5px solid var(--border);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  border-color: rgba(45, 106, 79, 0.35); transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 58px; height: 58px; border-radius: var(--radius-lg);
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin-bottom: 22px;
}
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(45, 106, 79, 0.10);
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.icon-badge svg,
.icon-badge img {
  width: 28px;
  height: 28px;
  color: var(--blue);
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
}
.service-illustration {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 16px;
  filter: hue-rotate(95deg) saturate(110%);
}
.service-card .illustration {
  max-height: 160px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  padding: 1rem;
  background: var(--accent-soft);
}
.service-logo-badge {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}
.service-card h3 { color: var(--navy); margin-bottom: 10px; }
.service-card .tag {
  display: inline-block; font-size: .75rem; font-weight: 600;
  color: var(--blue); background: var(--accent-soft);
  padding: 4px 12px; border-radius: 6px; margin-bottom: 14px;
}
.service-card > p { font-size: .9375rem; margin-bottom: 22px; line-height: 1.75; }
.service-features { list-style: none; }
.service-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .875rem; color: var(--text-mid); padding: 8px 0;
  border-top: 1px solid var(--border);
}
.service-features li::before {
  content: '\2713'; color: var(--blue); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}

/* Process strip (home) */
.process-section {
  background: var(--navy);
  padding: var(--space-section) 0;
}
.process-section .section-label { color: rgba(143, 212, 179, 0.95); }
.process-section h2 { color: var(--white); margin-bottom: 52px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.process-card {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.process-card-icon { font-size: 2rem; margin-bottom: 18px; }
.process-card-icon img,
.process-card-icon svg {
  width: 34px;
  height: 34px;
  margin: 0 auto;
  display: block;
  filter: none;
}
.process-card h3 { color: var(--white); margin-bottom: 12px; }
.process-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: .9375rem;
  line-height: 1.75;
}

/* ── Why IT Works ──────────────────────────────────────────── */
.why { background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 36px; margin-top: 56px;
}
.why-item {
  display: flex; gap: 24px; padding: 32px;
  border-radius: var(--radius-lg); border: 1.5px solid var(--border);
  transition: border-color .2s ease;
}
.why-item:hover { border-color: rgba(45, 106, 79, 0.35); }
.why-num {
  font-size: 2.125rem; font-weight: 800; color: #2D6A4F;
  line-height: 1; flex-shrink: 0; width: 44px;
}
.why-item h3 { color: var(--navy); margin-bottom: 8px; }
.why-item p  { font-size: .9375rem; line-height: 1.75; }
.why .illustration {
  max-width: 380px;
  opacity: 0.9;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials { background: var(--bg-light); }
.testimonials .section-label { color: var(--blue); }
.testimonials h2 { color: var(--navy); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 32px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.stars { color: var(--blue); font-size: 1rem; letter-spacing: 2px; margin-bottom: 18px; }
.testimonial-card blockquote {
  font-size: .9375rem; color: var(--text-mid); line-height: 1.75;
  font-style: normal; margin-bottom: 22px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(45, 106, 79, 0.2); display: flex; align-items: center;
  justify-content: center; font-weight: 700; color: var(--navy); font-size: .875rem;
}
.author-name { font-weight: 700; color: var(--navy); font-size: .9375rem; }
.author-company { font-size: .8125rem; color: var(--text-light); font-weight: 400; }

/* ── CTA Band ──────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #1a3d2e 50%, var(--accent-primary-hover) 100%);
  padding: clamp(4rem, 8vw, 5.5rem) 0; text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 18px; }
.cta-band p  {
  color: rgba(255, 255, 255, 0.88); font-size: 1.0625rem; margin-bottom: 40px;
  max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.cta-band .btn-white {
  background: var(--white); color: var(--accent-primary); border-color: var(--white);
  font-weight: 700;
}
.cta-band .btn-white:hover {
  background: var(--bg-light); color: var(--navy); border-color: var(--bg-light);
}

/* ── IT consulting: roadmap phases ─────────────────────────── */
.phases-grid,
.roadmap-phases,
[class*="phases"] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.phase-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.phase-card h3,
.phase-heading {
  color: var(--accent-primary);
  margin-top: 0;
}

@media (max-width: 768px) {
  .phases-grid,
  .roadmap-phases,
  [class*="phases"] {
    grid-template-columns: 1fr;
  }
}

/* ── Backup & disaster recovery page (body.backup-dr-page) ───── */
.backup-dr-page .hero-split .hero-eyebrow {
  color: #52b788;
  background: rgba(82, 183, 136, 0.12);
  border-color: rgba(82, 183, 136, 0.35);
}
.backup-dr-page .hero-split h1 {
  color: #ffffff;
}
.backup-dr-page .hero-split .hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
}
.backup-dr-page .hero-split {
  grid-template-columns: minmax(0, 1fr) minmax(140px, 420px);
}
@media (max-width: 768px) {
  .backup-dr-page .hero-split {
    grid-template-columns: 1fr;
  }
}

.backup-cta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.backup-cta-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
.backup-cta-card h2 {
  color: #111827;
  margin-top: 0;
  margin-bottom: 0.75rem;
}
.backup-cta-card p {
  color: #111827;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.backup-cta-card .hero-actions {
  margin-bottom: 0;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .backup-cta-section {
    grid-template-columns: 1fr;
  }
}

.backup-form-section {
  background: #f9fafb;
  padding: 5rem 2rem;
}

.backup-form-section .section-title,
.backup-form-section .section-sub {
  text-align: center;
}

.backup-form-section-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 2rem auto 0;
}

.backup-form,
.assessment-form {
  max-width: 640px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.5rem;
}

.backup-form-section-inner .backup-form,
.backup-form-section-inner .assessment-form {
  max-width: 640px;
  width: 100%;
  margin: 0;
}

.backup-form input,
.backup-form select,
.backup-form textarea,
.assessment-form input,
.assessment-form select,
.assessment-form textarea {
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .backup-form-section-inner {
    grid-template-columns: 1fr;
  }
  .backup-form-section-inner .illustration {
    display: none;
  }
  .backup-form-section-inner .backup-form,
  .backup-form-section-inner .assessment-form {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── Partner Marquee ─────────────────────────────────────── */
.partner-marquee {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.partner-marquee h2 {
  text-align: center;
  margin-bottom: 26px;
}
.marquee-wrapper { overflow: hidden; width: 100%; }
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  width: max-content;
  align-items: center;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-logo {
  height: 36px;
  width: auto;
  filter: grayscale(100%) brightness(0.35);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.marquee-logo:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* ── SEO Structural Sections ─────────────────────────────── */
/* Breadcrumb visual bar removed site-wide by request */

.related-services {
  padding: 56px 0;
  background: #f8fafc;
  border-top: 1px solid var(--border);
}
.related-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 20px;
}
.related-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}
.related-card a {
  font-weight: 600;
  color: var(--navy);
}

.timeline-vertical {
  position: relative;
  margin-top: 22px;
  padding-left: 28px;
  display: grid;
  gap: 16px;
}
.timeline-vertical::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(45, 106, 79, 0.3);
}
.timeline-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
}

.feature-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.feature-grid-two.operations-features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.operations-features .feature-tile {
  overflow: visible;
  word-break: normal;
  min-width: 0;
}
.operations-features .feature-tile:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 1rem);
}
.feature-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}
.managed-it-features,
.what-included-grid,
[class*="features-grid"] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.threat-scenarios,
.threat-cards,
.threat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 100%;
}
.threat-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
}
.threat-card h3 {
  color: var(--accent-primary);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.threat-card p {
  color: #374151;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .threat-scenarios,
  .threat-cards,
  .threat-grid {
    grid-template-columns: 1fr;
  }
}

.security-stack {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.security-layer {
  border: 1px solid var(--accent-soft-border);
  background: var(--accent-soft);
  color: var(--accent-primary);
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
}

.audit-danger {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 20px;
}

.m365-apps-grid,
.app-grid,
[class*="apps-grid"] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 18px;
}

.m365-app-card,
.app-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-align: center;
}

.m365-app-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #f4f6f8;
  border-radius: 10px;
  padding: 8px;
}

.m365-app-icon svg,
.m365-app-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.m365-app-card span,
.app-card span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #111827;
}

@media (max-width: 768px) {
  .m365-apps-grid,
  .app-grid,
  [class*="apps-grid"] {
    grid-template-columns: repeat(2, 1fr);
  }
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.comparison-col {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  background: #fff;
}
.comparison-col.bad { background: #fff7ed; border-color: #fdba74; }
.comparison-col.good { background: #ecfeff; border-color: #67e8f9; }

.timeline-horizontal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.timeline-step {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  background: #fff;
}

.executive-section {
  background: #f8fafc;
  padding: 60px 0;
}

.ai-dark-main {
  background: linear-gradient(160deg, #122019 0%, #1b4332 55%, #2d6a4f 100%);
  color: #e5e7eb;
}
.ai-dark-main h2,
.ai-dark-main h3 { color: #fff; }
.ai-dark-main .service-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.ai-dark-main .timeline-step {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.20);
  color: #f3f4f6;
}
.ai-dark-main .timeline-step strong {
  color: #fff;
}

@media (max-width: 900px) {
  .feature-grid-two:not(.operations-features),
  .comparison-grid { grid-template-columns: 1fr; }
  .managed-it-features,
  .what-included-grid,
  [class*="features-grid"] {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid-two.operations-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .managed-it-features,
  .what-included-grid,
  [class*="features-grid"],
  .feature-grid-two.operations-features {
    grid-template-columns: 1fr;
  }
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { background: var(--bg-light); }
.faq-grid { max-width: 820px; margin: 56px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border); padding: 28px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-size: 1.0625rem; font-weight: 600; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
button.faq-q,
h3.faq-q {
  width: 100%;
  margin: 0;
  font: inherit;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  color: var(--navy);
}
.faq-q::after {
  content: '+'; font-size: 1.5rem; font-weight: 300;
  color: var(--blue); flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-q.faq-question::after {
  content: none !important;
}
.faq-item.open .faq-q.faq-question::after {
  content: none !important;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--accent-primary);
}
button.faq-q.faq-question {
  color: var(--accent-primary);
  padding: 1.25rem 1.5rem;
}
.faq-q.faq-question span {
  flex: 1;
  text-align: left;
  min-width: 0;
}
.faq-chevron {
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.25s ease;
  color: var(--accent-primary);
}
.faq-q.faq-question[aria-expanded="true"] .faq-chevron,
.faq-item.open .faq-q.faq-question .faq-chevron {
  transform: rotate(180deg);
}
.faq-a {
  font-size: .9375rem; color: var(--text-mid); line-height: 1.75;
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 2000px; padding-top: 14px; padding-bottom: 4px; }

/* ── Footer ────────────────────────────────────────────────── */
.footer { background: var(--navy); padding: 72px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px;
}
.footer-brand p {
  font-size: .9375rem; color: rgba(255, 255, 255, 0.52);
  margin: 14px 0 22px; line-height: 1.75; max-width: 300px;
}
.footer-logo { font-size: 1.125rem; font-weight: 700; color: var(--white); }
.footer-logo span { color: var(--accent-bright); }
.footer-contact a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255, 255, 255, 0.65); font-size: .875rem; margin-bottom: 10px;
  transition: color .15s;
}
.footer-contact a:hover { color: var(--white); }
.footer-col h3, .footer-col h4 { color: var(--white); font-size: .875rem; margin-bottom: 18px; letter-spacing: .03em; font-weight: 700; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255, 255, 255, 0.65); font-size: .875rem; transition: color .15s; }
.footer-links a:hover { color: rgba(255, 255, 255, 0.92); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { color: rgba(255, 255, 255, 0.50); font-size: .8125rem; }

/* ── Location Pages ────────────────────────────────────────── */
.location-hero {
  background: linear-gradient(145deg, #15221c 0%, var(--navy) 100%);
  padding: clamp(4.5rem, 10vw, 6rem) 0 clamp(4rem, 8vw, 5rem);
}
.location-hero-inner {
  max-width: 760px; margin: 0 auto; padding: 0 var(--container-pad); text-align: center;
}
.location-hero-split {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}
.location-hero-copy { text-align: left; min-width: 0; }
.location-hero-copy .hero-eyebrow { display: inline-flex; }
.location-hero-split h1 { color: var(--white); margin-bottom: 22px; }
.location-hero-copy p {
  color: rgba(255, 255, 255, 0.78); font-size: 1.125rem; margin-bottom: 40px;
  max-width: 560px; margin-left: 0; margin-right: 0; line-height: 1.75;
}
.location-hero-split .hero-actions { justify-content: flex-start; }
.location-hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
@media (max-width: 900px) {
  .location-hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .location-hero-copy { text-align: center; }
  .location-hero-copy p { margin-left: auto; margin-right: auto; }
  .location-hero-split .hero-actions { justify-content: center; }
  .location-hero-copy > div:last-of-type { justify-content: center !important; }
}
.location-hero h1 { color: var(--white); margin-bottom: 22px; }
.location-hero p  {
  color: rgba(255, 255, 255, 0.78); font-size: 1.125rem; margin-bottom: 40px;
  max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.75;
}
.location-hero .hero-actions { justify-content: center; }

.checklist { list-style: none; margin-top: 24px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: .9375rem; color: var(--text-mid);
}
.checklist li::before {
  content: '\2713'; color: var(--blue); font-weight: 700; font-size: 1rem;
  flex-shrink: 0; margin-top: 1px;
}

/* ── Contact Page ──────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr minmax(280px, 500px); gap: clamp(48px, 8vw, 80px); align-items: start;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info p  { font-size: 1rem; margin-bottom: 36px; max-width: 480px; line-height: 1.75; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px;
}
.contact-detail-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--accent-soft); display: flex; align-items: center;
  justify-content: center; font-size: 1.25rem; flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: .875rem; color: var(--navy); margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text span { font-size: .9375rem; color: var(--text-mid); }
.contact-form-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 44px;
  border: 1.5px solid var(--border); box-shadow: var(--shadow-lg);
}
.contact-form-card h3 { color: var(--navy); margin-bottom: 10px; }
.contact-form-card > p { font-size: .9375rem; color: var(--text-mid); margin-bottom: 32px; }

/* Page hero (contact, etc.) */
.page-hero-dark {
  background: linear-gradient(145deg, #15221c 0%, var(--navy) 100%);
  padding: clamp(4rem, 9vw, 5.5rem) 0 clamp(3.5rem, 7vw, 4.5rem);
  text-align: center;
}
.page-hero-dark h1 { color: var(--white); margin-bottom: 18px; }
.page-hero-dark .hero-lead {
  color: rgba(255, 255, 255, 0.78); font-size: 1.125rem;
  max-width: 560px; margin: 0 auto; line-height: 1.75;
}
.page-hero-dark .hero-eyebrow { margin: 0 auto 22px; }

/* Inner-page hero (e.g. AI services) */
.page-hero-gradient {
  background: linear-gradient(145deg, #15221c 0%, var(--navy) 50%, #1a3328 100%);
  color: var(--white);
  padding: clamp(4.5rem, 10vw, 6.5rem) 0;
}
.page-hero-gradient h1, .page-hero-gradient h2, .page-hero-gradient h3 { color: var(--white); }
.page-hero-gradient .section-sub { color: rgba(255, 255, 255, 0.78); }
.page-hero-gradient .hero-eyebrow-ai {
  margin-bottom: 14px;
  font-size: .8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  color: rgba(143, 212, 179, 0.95);
}

/* AI / accent callouts */
.callout-accent {
  background: #F0F7F4;
  border-left: 4px solid var(--accent-primary);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}
.icon-num-a { background: rgba(45, 106, 79, 0.12) !important; color: var(--accent-primary) !important; }
.icon-num-b { background: rgba(82, 183, 136, 0.18) !important; color: var(--blue) !important; }

/* ── Utility ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-orange { color: var(--accent-primary); }
.text-blue   { color: var(--blue); }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mt-8  { margin-top: 32px; }
.pill {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  font-size: .8125rem; font-weight: 600; background: var(--accent-soft); color: var(--blue);
}

/* ── Buttons: white (on dark / CTA) ────────────────────────── */
.btn-white {
  background: var(--white);
  color: var(--accent-primary);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--bg-light);
  color: var(--navy);
  border-color: var(--bg-light);
}

/* ── Inner heroes (match home: gradient + optional art) ───── */
.hero > .container {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  text-align: center;
}
.hero > .container > p,
.hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}
.hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 400px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  max-width: 1040px !important;
  text-align: left !important;
}
.hero-split > .illustration {
  justify-self: center;
  width: auto;
  max-width: 100%;
}
.hero-split .hero-split-copy h1 {
  text-align: left;
}
.hero-split .hero-subtitle,
.hero-split > p {
  margin-left: 0 !important;
  text-align: left;
}
.hero-split .hero-cta {
  justify-content: flex-start;
}
.hero-art {
  min-height: 180px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: heroArtPop 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}
.hero-art[data-art="msp"] { background-image: url('assets/hero-msp.svg'); }
.hero-art[data-art="security"] { background-image: url('assets/hero-security.svg'); }
.hero-art[data-art="cloud"] { background-image: url('assets/hero-cloud.svg'); }
.hero-art[data-art="about"] { background-image: url('assets/hero-about.svg'); }

.hero-inner .hero-art {
  align-self: center;
  min-height: 240px;
}

.hero-dark,
.hero-dark .hero-content {
  background: transparent;
}
.hero-dark {
  background: linear-gradient(145deg, #15221c 0%, var(--navy) 45%, #1a3328 100%);
  padding: clamp(5rem, 12vw, 7rem) 0 clamp(4rem, 10vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
.hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 70% 40%, rgba(82, 183, 136, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-dark .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  text-align: center;
}
.hero-dark h1 { color: var(--white); margin-bottom: 20px; }
.hero-dark .hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.125rem;
  line-height: 1.75;
}

/* Section alias */
.section.bg-light,
.bg-light {
  background: var(--bg-light) !important;
}

/* ── Inner page components (service / about / etc.) ─────────── */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.philosophy-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.philosophy-card:hover {
  border-color: rgba(45, 106, 79, 0.35);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.philosophy-card h3 { margin-bottom: 12px; }

.card-grid {
  display: grid;
  gap: 28px;
  margin-top: 40px;
}
.card-grid.three-col {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card.service-card,
.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.card h3, .card h4 { color: #111827; font-weight: 700; margin-bottom: 10px; }
.card p { color: #111827; margin-top: 0; }
.card:hover {
  border-color: rgba(45, 106, 79, 0.35);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card-icon { margin-bottom: 18px; }
.card-icon img {
  width: 30px;
  height: 30px;
  filter: hue-rotate(95deg) saturate(120%);
}
.card-link {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 600;
  color: var(--blue);
  font-size: 0.9375rem;
}
.card-link:hover { color: var(--accent-primary-hover); }

.integration-visual {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.integration-box {
  flex: 1 1 200px;
  max-width: 280px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  text-align: center;
}
.integration-box.highlight {
  border-color: var(--blue);
  background: linear-gradient(180deg, rgba(45, 106, 79, 0.06) 0%, var(--white) 100%);
}
.integration-box h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.integration-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  min-width: 36px;
}

.baseline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.baseline-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-align: center;
}
.baseline-icon { font-size: 2rem; margin-bottom: 12px; }
.baseline-icon img {
  width: 32px;
  height: 32px;
  margin: 0 auto;
  filter: hue-rotate(95deg) saturate(120%);
}
.baseline-item h4 { margin-bottom: 8px; }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 36px;
  align-items: stretch;
}
.tier-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier-card h3 { margin-bottom: 6px; }
.tier-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.tier-popular {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.tier-features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  flex: 1;
}
.tier-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-mid);
}
.tier-price {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: auto;
}

.industry-grid.compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.industry-grid.compact .industry-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  margin: 0;
  width: auto;
  height: auto;
  font-size: 2rem;
}
.industry-grid.compact .industry-icon span { font-size: 2rem; margin-bottom: 8px; display: inline-flex; }
.industry-grid.compact .industry-icon span img {
  width: 28px;
  height: 28px;
  filter: hue-rotate(95deg) saturate(120%);
}
.industry-grid.compact .industry-icon p {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

/* FAQ alternate (button + open class) — div.faq only, not section.faq */
div.faq:not(.faq-grid) .faq-item {
  border-bottom: 1px solid var(--border);
}
div.faq:not(.faq-grid) .faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
div.faq:not(.faq-grid) .faq-a {
  display: none;
  padding-bottom: 20px;
  color: var(--text-mid);
  line-height: 1.75;
}
div.faq:not(.faq-grid) .faq-item.open .faq-a { display: block; }
div.faq:not(.faq-grid) .faq-q.faq-question {
  padding: 1.25rem 1.5rem;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.service-area-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-area-card h3 { margin-bottom: 10px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.benefit-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
}
.benefit-icon { font-size: 2rem; margin-bottom: 12px; }
.benefit-card h3 { margin-bottom: 10px; }

.testimonials:not(.testimonials-grid) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.testimonial {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.testimonial p {
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.75;
}
.testimonial strong { color: var(--navy); font-style: normal; }

/* Blog */
.blog-grid-section { padding: var(--space-section) 0; background: var(--bg-light); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.blog-card:hover {
  border-color: rgba(45, 106, 79, 0.35);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.blog-card h2 { font-size: 1.25rem; margin-bottom: 12px; }
.blog-card h2 a { color: var(--navy); }
.blog-card h2 a:hover { color: var(--blue); }
.card-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  width: fit-content;
}
.card-category.cybersecurity { background: var(--accent-soft); color: var(--blue); }
.card-category.backup { background: rgba(45, 106, 79, 0.1); color: var(--accent-primary); }
.card-category.ai { background: rgba(82, 183, 136, 0.2); color: var(--accent-primary-hover); }
.card-excerpt { flex: 1; margin-bottom: 20px; line-height: 1.65; }
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
}
.card-date { color: var(--text-light); }
.card-read-more { font-weight: 600; color: var(--blue); }
.card-read-more:hover { color: var(--accent-primary-hover); }

/* Long-form content (cybersecurity, etc.) */
.content-section {
  padding: var(--space-section) 0;
}
.content-section .container {
  max-width: 760px;
}
.content-section .container.wide,
.content-section.wide .container {
  max-width: 1140px;
}
.content-section h2 { margin-bottom: 20px; margin-top: 8px; }
.content-section h3 { margin: 24px 0 12px; }
.content-section p,
.content-section li {
  line-height: 1.75;
  color: var(--text-mid);
}
.content-section ul:not(.checklist) {
  margin: 1rem 0 1.25rem 1.25rem;
}
.content-section details {
  margin-bottom: 16px;
  padding: 22px 24px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.content-section summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
}
.content-section summary::-webkit-details-marker { display: none; }
.content-section details[open] summary { color: var(--blue); margin-bottom: 8px; }
.content-section details p { margin-top: 12px; }

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.faq-category h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}

.stats-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-bar .stat-value {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
}
.stats-bar .stat-label {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ── Motion: scroll reveal & hero entrance ───────────────── */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroArtPop {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

body > section:first-of-type:not(.nav) .hero-inner,
body > section:first-of-type:not(.nav) > .container,
body > section:first-of-type:not(.nav) .location-hero-inner,
body > section:first-of-type:not(.nav) .location-hero-split,
body > section:first-of-type:not(.nav) .hero-content,
body > section:first-of-type:not(.nav).page-hero-dark .container,
body > section:first-of-type:not(.nav).page-hero-gradient .container {
  animation: heroFadeIn 0.85s ease forwards;
}
body > main:first-of-type > .container {
  animation: heroFadeIn 0.85s ease forwards;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-child {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-on-scroll.is-visible .reveal-child {
  opacity: 1;
  transform: translateY(0);
}
.reveal-on-scroll.is-visible .reveal-child:nth-child(1) { transition-delay: 0.04s; }
.reveal-on-scroll.is-visible .reveal-child:nth-child(2) { transition-delay: 0.1s; }
.reveal-on-scroll.is-visible .reveal-child:nth-child(3) { transition-delay: 0.16s; }
.reveal-on-scroll.is-visible .reveal-child:nth-child(4) { transition-delay: 0.22s; }
.reveal-on-scroll.is-visible .reveal-child:nth-child(5) { transition-delay: 0.28s; }
.reveal-on-scroll.is-visible .reveal-child:nth-child(6) { transition-delay: 0.34s; }
.reveal-on-scroll.is-visible .reveal-child:nth-child(7) { transition-delay: 0.4s; }
.reveal-on-scroll.is-visible .reveal-child:nth-child(8) { transition-delay: 0.46s; }

.reveal-pop {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.reveal-on-scroll.is-visible .reveal-pop {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  body > section:first-of-type:not(.nav) .hero-inner,
  body > section:first-of-type:not(.nav) > .container,
  body > section:first-of-type:not(.nav) .location-hero-inner,
  body > section:first-of-type:not(.nav) .location-hero-split,
  body > section:first-of-type:not(.nav) .hero-content,
  body > section:first-of-type:not(.nav).page-hero-dark .container,
  body > section:first-of-type:not(.nav).page-hero-gradient .container,
  body > main:first-of-type > .container {
    animation: none;
  }
  .reveal-on-scroll,
  .reveal-child,
  .reveal-pop,
  .hero-art {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section, .section-lg { padding: var(--space-section-sm) 0; }
  .backup-form-section {
    padding: 3.5rem 1.25rem;
  }
  .services-grid   { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .industry-grid   { grid-template-columns: repeat(2, 1fr); }
  .contact-grid    { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; gap: 40px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-visual img { margin: 0 auto; }
  .location-hero .hero-actions { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 24px; }
  .trust-divider { display: none; }
  .contact-form-card { padding: 32px 24px; }
  .hero-inner,
  .hero-inner.hero-inner--triple {
    display: flex;
    flex-direction: column;
  }
  .hero-card {
    width: 100%;
    max-width: 100%;
  }
  .cta-band h2 { font-size: clamp(1.375rem, 5vw, 1.75rem); }
  .faq-grid { grid-template-columns: 1fr; }
  .location-hero { padding: 56px 0 48px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-section { padding: var(--space-section-sm) 0; }
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center !important;
  }
  .hero-split .hero-split-copy h1,
  .hero-split .hero-subtitle { text-align: center !important; }
  .hero-split .hero-cta { justify-content: center; }
  .hero-art { min-height: 160px; max-width: 280px; margin: 0 auto; }
  .nav-logo-icon {
    height: 30px;
  }
  .nav-wordmark {
    font-size: 1rem;
  }
  .hero-illustration { display: none !important; }
  .hero-split > .illustration { display: none !important; }
}
@media (max-width: 480px) {
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .btn-lg { padding: 16px 28px; font-size: .9375rem; }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.45rem; }
  .hero-actions { gap: 14px; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .location-hero .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ── CDN illustrations (decorative) ────────────────────────── */
.illustration {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.illustration.illustration-on-dark {
  opacity: 0.9;
}
.why-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) {
  .why-intro { grid-template-columns: 1fr; }
}
.why-intro .section-sub { margin-left: 0; margin-right: 0; }
.section-split-right {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  gap: 2rem;
  align-items: start;
}
.section-split-right .section-split-aside {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
@media (max-width: 900px) {
  .section-split-right { grid-template-columns: 1fr; }
}
.page-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  max-width: 1140px;
}
.page-hero-split .page-hero-copy { min-width: 0; }
@media (max-width: 900px) {
  .page-hero-split { grid-template-columns: 1fr; text-align: center; }
  .page-hero-split .page-hero-copy { text-align: center; }
  .page-hero-split > div:last-child { justify-self: center; }
}
.included-split .feature-grid-two {
  margin-top: 0;
}
