/* ─────────────────────────────────────────────────────
   RESET
───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; }

:focus-visible { outline: 2px solid #0066FF; outline-offset: 3px; }

.skip-link {
  position: absolute;
  top: -100%; left: 16px;
  background: var(--blue); color: var(--white);
  padding: 8px 16px;
  font-family: var(--fm); font-size: 12px; letter-spacing: .1em;
  text-decoration: none; z-index: 999;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ─────────────────────────────────────────────────────
   TOKENS — Dark A palette
───────────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:    #050D12;
  --bg2:   #071420;
  --bg3:   #0B1828;
  /* Borders */
  --bd:    #131D30;
  --bd2:   #1A2D4A;
  /* Text */
  --white: #FFFFFF;
  --body:  #C4CFDF;
  --muted: #7A8BA8;
  --dim:   #4A5A7A;
  /* Brand */
  --blue:  #0066FF;
  --steel: #4A6FA5;
  --green: #00875A;
  /* Fonts */
  --fh: 'Barlow Condensed', sans-serif;
  --fb: 'Barlow', sans-serif;
  --fm: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--body);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle grid texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(0,102,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,102,255,.028) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}
.page { position: relative; z-index: 1; }

/* ─────────────────────────────────────────────────────
   LAYOUT UTILITIES
───────────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 48px; }

.label {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  transition: padding .3s, background .3s, border-color .3s;
}
.nav.stuck {
  padding: 13px 0;
  background: rgba(15,22,36,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--bd);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img {
  height: 80px; width: auto;
}

.nav-menu { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-menu a {
  font-family: var(--fh);
  font-size: 13px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color .2s;
}
.nav-menu a:hover { color: var(--white); }

.btn-nav {
  font-family: var(--fh);
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  padding: 10px 22px;
  text-decoration: none;
  border: 1px solid rgba(0,102,255,.4);
  transition: opacity .2s;
  white-space: nowrap;
}
.btn-nav:hover { opacity: .82; }

/* ─────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────── */
.btn {
  font-family: var(--fh);
  font-size: 15px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .2s;
}
.btn-primary {
  background: var(--blue); color: var(--white);
  padding: 14px 32px;
  border: 1px solid rgba(0,102,255,.45);
}
.btn-primary:hover { opacity: .84; }
.btn-ghost {
  background: transparent; color: var(--muted);
  padding: 13px 28px;
  border: 1px solid var(--bd2);
}
.btn-ghost:hover { color: var(--white); border-color: var(--muted); }

/* ─────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Radial glow top-right */
.hero::before {
  content: '';
  position: absolute;
  top: -160px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,102,255,.11) 0%, transparent 68%);
  pointer-events: none;
}
/* Radial glow bottom-left */
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,135,90,.06) 0%, transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
}

/* Hero left: text */
.hero-left {}

.hero-kicker {
  font-family: var(--fm);
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--steel);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  padding: 8px 14px;
  border: 1px solid var(--bd2);
  background: rgba(30,45,72,.4);
}
.hero-kicker span { color: var(--blue); }

.hero-h1 {
  font-family: var(--fh);
  font-size: clamp(46px, 5.8vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -.01em;
}
.hero-h1 strong {
  color: var(--blue);
  font-weight: 800;
}

.hero-lead {
  font-family: var(--fb);
  font-size: 18px; font-weight: 300;
  color: var(--muted); line-height: 1.78;
  max-width: 520px;
  margin-bottom: 44px;
}
.hero-lead em {
  font-style: normal;
  color: var(--body);
  font-weight: 400;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-microcopy {
  font-family: var(--fm);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-top: 16px;
}

/* Hero right: process diagram */
.hero-diagram {
  position: relative;
}

.hero-mobile-trust { display: none; }

/* ─────────────────────────────────────────────────────
   PROCESS DIAGRAM (pure CSS/SVG — no JS)
   Three steps stacked vertically, connected by animated
   dashed lines. Clean, readable, relevant to the service.
───────────────────────────────────────────────────── */
.diagram-wrap {
  position: relative;
  padding: 8px 0;
}

.d-step {
  background: var(--bg2);
  border: 1px solid var(--bd);
  padding: 20px 22px;
  position: relative;
  transition: border-color .25s;
}
.d-step:hover { border-color: var(--bd2); }

.d-step-num {
  font-family: var(--fm);
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 8px;
}
.d-step-title {
  font-family: var(--fh);
  font-size: 17px; font-weight: 700; color: var(--white);
  margin-bottom: 4px;
}
.d-step-sub {
  font-family: var(--fb);
  font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.5;
}
.d-step-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
}

/* Connector between steps */
.d-connector {
  display: flex;
  align-items: center;
  padding: 0 22px;
  height: 44px;
  position: relative;
}
.d-connector-line {
  width: 1px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    var(--bd2) 0, var(--bd2) 5px,
    transparent 5px, transparent 10px
  );
  margin-left: 18px;
  position: relative;
  overflow: hidden;
}
.d-connector-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--blue) 50%, transparent 100%);
  animation: connflow 2.2s linear infinite;
}
@keyframes connflow {
  from { top: -100%; }
  to   { top: 100%; }
}

.d-connector-label {
  font-family: var(--fm);
  font-size: 9px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
  margin-left: 14px;
}

/* Secure badge */
.d-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-family: var(--fm);
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(0,135,90,.3);
  background: rgba(0,135,90,.07);
  padding: 3px 9px;
}
.d-badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ─────────────────────────────────────────────────────
   TECHNOLOGY STRIP
───────────────────────────────────────────────────── */
.tech-strip {
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  padding: 22px 0;
}
.tech-row { display: flex; align-items: center; }
.tech-cap {
  font-family: var(--fm);
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--dim); white-space: nowrap;
  padding-right: 32px; margin-right: 32px;
  border-right: 1px solid var(--bd);
  flex-shrink: 0;
}
.tech-items {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.tech-item {
  font-family: var(--fh);
  font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
  transition: color .2s;
}
.tech-item:hover { color: var(--body); }

/* ─────────────────────────────────────────────────────
   SECTION BASE
───────────────────────────────────────────────────── */
.section { padding: 88px 0; }
.section-alt { background: var(--bg2); }

.sec-title {
  font-family: var(--fh);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700; line-height: 1.1; letter-spacing: -.01em;
  color: var(--white);
  margin-top: 12px; max-width: 600px;
}
.sec-sub {
  font-family: var(--fb);
  font-size: 16px; font-weight: 300;
  color: var(--muted);
  max-width: 520px; margin-top: 14px; line-height: 1.8;
}
.sec-hd { margin-bottom: 56px; }

/* ─────────────────────────────────────────────────────
   PROBLEMS — two-column editorial layout
───────────────────────────────────────────────────── */
.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--bd);
  border: 1px solid var(--bd);
  margin-top: 0;
}
.prob {
  background: var(--bg2);
  padding: 36px 32px;
  position: relative;
  transition: background .25s;
}
.prob::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--bd);
  transition: background .3s;
}
.prob:hover { background: var(--bg3); }
.prob:hover::after { background: var(--blue); }
.prob-n {
  font-family: var(--fm);
  font-size: 9px; letter-spacing: .2em; color: var(--muted);
  display: block; margin-bottom: 16px;
  transition: color .25s;
}
.prob:hover .prob-n { color: var(--blue); }
.prob-title {
  font-family: var(--fh);
  font-size: 21px; font-weight: 700;
  color: var(--white); margin-bottom: 10px; line-height: 1.2;
}
.prob-body {
  font-family: var(--fb);
  font-size: 14px; font-weight: 300;
  color: var(--muted); line-height: 1.75;
}

/* ─────────────────────────────────────────────────────
   SERVICES — three pillars with clear descriptions
───────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc {
  border: 1px solid var(--bd);
  background: var(--bg2);
  padding: 36px 28px 32px;
  position: relative;
  transition: border-color .25s, transform .25s, opacity .55s ease;
}
.svc:hover { border-color: var(--steel); transform: translateY(-3px); }
.svc-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--bd2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: border-color .25s;
}
.svc:hover .svc-icon { border-color: var(--blue); }
.svc-icon svg { width: 20px; height: 20px; }
.svc-title {
  font-family: var(--fh);
  font-size: 26px; font-weight: 800;
  color: var(--white); margin-bottom: 14px;
}
.svc-body {
  font-family: var(--fb);
  font-size: 14px; font-weight: 300;
  color: var(--muted); line-height: 1.78;
  margin-bottom: 24px;
}
.svc-tools { display: flex; flex-wrap: wrap; gap: 6px; }
.tool {
  font-family: var(--fm);
  font-size: 9px; letter-spacing: .07em;
  color: var(--dim); background: var(--bg);
  border: 1px solid var(--bd);
  padding: 3px 8px;
  transition: color .2s;
}
.svc:hover .tool { color: var(--muted); }

/* Services stagger reveal — delay only until visible, then hover responds instantly */
.services-grid .svc:not(.visible):nth-child(2) { transition-delay: 100ms; }
.services-grid .svc:not(.visible):nth-child(3) { transition-delay: 200ms; }

/* ─────────────────────────────────────────────────────
   APPROACH — how we engage
───────────────────────────────────────────────────── */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
/* Horizontal connector line */
.approach-grid::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(100%/6);
  right: calc(100%/6);
  height: 1px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
}
.ap-step { padding: 0 32px 0 0; }
.ap-step + .ap-step { padding: 0 32px; }
.ap-step:last-child { padding: 0 0 0 32px; }
.ap-dot {
  width: 48px; height: 48px;
  border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  background: var(--bg);
  position: relative; z-index: 1;
}
.ap-n {
  font-family: var(--fh);
  font-size: 20px; font-weight: 800; color: var(--blue);
}
.ap-title {
  font-family: var(--fh);
  font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.ap-body {
  font-family: var(--fb);
  font-size: 14px; font-weight: 300;
  color: var(--muted); line-height: 1.75;
}
.ap-note {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--fm);
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(0,135,90,.3);
  padding: 3px 8px;
}

/* Approach stagger reveal — delay only until visible */
.approach-grid .ap-step:not(.visible):nth-child(2) { transition-delay: 120ms; }
.approach-grid .ap-step:not(.visible):nth-child(3) { transition-delay: 240ms; }

/* ─────────────────────────────────────────────────────
   WHO WE SERVE
───────────────────────────────────────────────────── */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.who-list { list-style: none; margin-top: 24px; }
.who-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--bd);
}
.who-item:first-child { border-top: 1px solid var(--bd); }
.who-check {
  width: 20px; height: 20px;
  border: 1px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.who-check svg { width: 10px; height: 10px; stroke: var(--green); fill: none; }
.who-copy { }
.who-title {
  font-family: var(--fh);
  font-size: 16px; font-weight: 600;
  color: var(--white); display: block; margin-bottom: 3px;
}
.who-desc {
  font-family: var(--fb);
  font-size: 14px; font-weight: 300;
  color: var(--muted); line-height: 1.65;
}

/* Audit CTA box */
.audit {
  background: var(--bg2);
  border: 1px solid var(--bd);
  padding: 40px 36px;
  position: relative;
}
.audit::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
}
.audit-tag {
  font-family: var(--fm);
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--green); display: block; margin-bottom: 14px;
}
.audit-title {
  font-family: var(--fh);
  font-size: 24px; font-weight: 700;
  color: var(--white); margin-bottom: 12px; line-height: 1.2;
}
.audit-body {
  font-family: var(--fb);
  font-size: 14px; font-weight: 300;
  color: var(--muted); line-height: 1.75; margin-bottom: 22px;
}
.audit-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 30px;
}
.audit-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-family: var(--fb);
  font-size: 13px; font-weight: 300; color: var(--muted);
}
.audit-list li::before {
  content: '→';
  color: var(--blue);
  font-family: var(--fm); font-size: 10px;
  flex-shrink: 0; margin-top: 2px;
}

/* ─────────────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────────────── */
.contact-section { padding: 88px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }

.contact-copy { }
.contact-h2 {
  font-family: var(--fh);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700; color: var(--white);
  line-height: 1.1; margin-top: 12px; margin-bottom: 16px;
}
.contact-sub {
  font-family: var(--fb);
  font-size: 16px; font-weight: 300;
  color: var(--muted); line-height: 1.8; margin-bottom: 20px;
}
.contact-bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 32px;
}
.contact-bullets li {
  display: flex; gap: 10px; align-items: flex-start;
  font-family: var(--fb);
  font-size: 14px; font-weight: 300; color: var(--muted);
}
.contact-bullets li::before {
  content: '→';
  color: var(--blue);
  font-family: var(--fm); font-size: 10px;
  flex-shrink: 0; margin-top: 3px;
}
.contact-detail {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--bd);
}
.contact-detail-item {
  display: flex; gap: 12px; align-items: flex-start;
}
.cd-label {
  font-family: var(--fm);
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); width: 72px; flex-shrink: 0; margin-top: 1px;
}
.cd-value {
  font-family: var(--fb);
  font-size: 14px; color: var(--body); font-weight: 300;
}
.cd-value a { color: var(--blue); text-decoration: none; }
.cd-value a:hover { text-decoration: underline; }

.hs-form-title {
  font-family: var(--fh);
  font-size: 20px; font-weight: 700; color: var(--white);
  margin-bottom: 24px;
}

.form-gdpr-note {
  font-family: var(--fb);
  font-size: 12px; color: var(--dim); line-height: 1.7;
  margin-top: 12px;
}
.form-gdpr-note a { color: var(--muted); text-decoration: none; }
.form-gdpr-note a:hover { color: var(--white); }

/*
  ╔══════════════════════════════════════════════════╗
  ║  HUBSPOT FORM PLACEHOLDER                       ║
  ║                                                 ║
  ║  To embed your HubSpot form:                   ║
  ║  1. In HubSpot → Marketing → Forms → your form ║
  ║  2. Click "Embed" → copy the script snippet    ║
  ║  3. Paste it inside the .hs-form-zone div below║
  ║  4. Remove the placeholder content (.hs-ph)    ║
  ║                                                 ║
  ║  The .hs-form-zone div handles all sizing.     ║
  ╚══════════════════════════════════════════════════╝
*/
.hs-form-zone {
  background: var(--bg2);
  border: 1px solid var(--bd);
  padding: 40px 36px;
  position: relative;
  min-height: 440px;
  align-items: stretch;
}
.hs-form-zone::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--blue);
}

/* Placeholder shown ONLY until HubSpot embed is dropped in */
.hs-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 16px;
  border: 1px dashed var(--bd2);
  padding: 40px;
}
.hs-ph-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--bd2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hs-ph-icon svg { width: 22px; height: 22px; stroke: var(--dim); fill: none; }
.hs-ph-title {
  font-family: var(--fh);
  font-size: 16px; font-weight: 600; color: var(--muted);
  text-align: center;
}
.hs-ph-code {
  font-family: var(--fm);
  font-size: 11px; color: var(--dim);
  text-align: center; line-height: 1.7;
  max-width: 280px;
}
.hs-ph-code strong { color: var(--steel); display: block; margin-bottom: 4px; }

/* ─────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--bd); padding: 44px 0; }
.footer-row {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-brand { }
.footer-name {
  font-family: var(--fh);
  font-size: 18px; font-weight: 700; letter-spacing: .08em; color: var(--white);
}
.footer-tagline {
  font-family: var(--fm);
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--steel); margin-top: 4px;
}
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a {
  font-family: var(--fh);
  font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-legal {
  font-family: var(--fm);
  font-size: 10px; color: var(--dim); text-align: right; line-height: 1.7;
}

/* Mobile sticky CTA bar */
.mobile-cta-bar { display: none; }

/* ─────────────────────────────────────────────────────
   SCROLL REVEAL — opacity + subtle translate
───────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { transform: none; transition: opacity .55s ease; }
}

/* Hero items fade in on load — pure CSS, no JS needed */
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
.hero-kicker    { animation: heroFade .5s ease  .05s both; }
.hero-h1        { animation: heroFade .5s ease  .08s both; }
.hero-lead      { animation: heroFade .5s ease  .18s both; }
.hero-actions   { animation: heroFade .5s ease  .28s both; }
.hero-microcopy { animation: heroFade .5s ease  .38s both; }
.hero-diagram   { animation: heroFade .5s ease  .22s both; }

/* ─────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .section { padding: 56px 0; }
  .contact-section { padding: 56px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-diagram { display: none; }
  .hero-mobile-trust {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    margin-top: 28px;
  }
  .hmt-chip {
    font-family: var(--fm);
    font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--body); padding: 6px 14px;
    border: 1px solid var(--bd2);
    background: var(--bg2);
  }
  .hmt-arrow { color: var(--blue); font-size: 14px; font-family: var(--fm); }
  .problems-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; gap: 32px; }
  .approach-grid::before { display: none; }
  .ap-step, .ap-step + .ap-step, .ap-step:last-child { padding: 0; }
  .who-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .nav-menu li:not(:last-child) { display: none; }
  .footer-links { flex-direction: column; gap: 12px; }
  .footer { padding-bottom: 90px; }
  .mobile-cta-bar {
    display: block;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(5,13,18,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 24px;
    border-top: 1px solid var(--bd);
    z-index: 199;
  }
  .mobile-cta-bar .btn { width: 100%; justify-content: center; font-size: 14px; }
}

/* HubSpot form styles */

/* Force HubSpot form and its frame to fill the zone width */
.hs-form-zone hs-form-frame,
.hs-form-zone form.hs-form {
  display: block;
  width: 100% !important;
  max-width: none !important;
}

/* First Name + Last Name side by side */
.hs-form-zone .hs_firstname,
.hs-form-zone .hs_lastname {
  display: inline-block !important;
  width: calc(50% - 8px) !important;
  vertical-align: top;
  box-sizing: border-box;
}
.hs-form-zone .hs_firstname { margin-right: 16px; }

.hs-form-zone .hs-form input[type="text"],
.hs-form-zone .hs-form input[type="email"],
.hs-form-zone .hs-form textarea {
  background: #111D32;
  border: 1px solid #1E2D48;
  color: #C4CFDF;
  font-family: 'Barlow', sans-serif;
}
.hs-form-zone .hs-form input[type="text"]::placeholder,
.hs-form-zone .hs-form input[type="email"]::placeholder,
.hs-form-zone .hs-form textarea::placeholder {
  color: #4A5A7A;
}
.hs-form-zone .hs-form select {
  background: #111D32;
  border: 1px solid #1E2D48;
  color: #C4CFDF;
  font-family: 'Barlow', sans-serif;
}
.hs-form-zone .hs-form .hs-form-field label {
  color: #7A8BA8;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
}
.hs-form-zone .hs-error-msgs {
  color: #FF6B6B;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
}
.hs-form-zone .submitted-message {
  color: #00875A;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 40px 0;
}
.hs-form-zone .hs-button {
  background: #0066FF;
  font-family: 'Barlow Condensed', sans-serif;
}
