/* Self-hosted fonts. No third-party connection, so text renders sooner on mobile.
   SIL Open Font License. Inter is a variable font covering weights 400 to 800. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-400-800.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/ibm-plex-mono-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/ibm-plex-mono-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/ibm-plex-mono-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================================
   ACP WATERJET — DESIGN SYSTEM
   Single source of truth for the whole site.
   Change a token here once → it updates every page.
   ----------------------------------------------------------------------------
   SECTIONS
   01 Tokens            06 Header / Nav        11 Steps / Timeline
   02 Base / Reset      07 Hero                12 FAQ
   03 Utilities         08 Instant Quote       13 CTA band
   04 Buttons           09 Sections            14 Interior page hero
   05 Utility bar       10 Cards / Tables      15 Footer / Motion / Responsive
   ============================================================================ */

/* 01 · TOKENS ============================================================== */
:root {
  /* Brand colors — verified against master logo files */
  --navy:        #00527D;   /* primary brand */
  --navy-dark:   #003A5C;   /* headings, deep surfaces */
  --navy-700:    #013B5C;
  --navy-tint:   #EAF2F6;   /* soft fills */
  --navy-tint-2: #DCEAF1;
  --accent:      #FE0707;   /* URGENCY ONLY — use in tiny doses */

  /* Neutrals */
  --ink:      #0C1A24;      /* body text (softer than pure black) */
  --ink-2:    #46565F;      /* secondary text */
  --ink-3:    #65747B;      /* muted / captions. Same hue as the old #6B7A82,
                               2.4% darker so it clears WCAG AA (4.5:1) on both
                               white (4.84) and --surface (4.54). The old value
                               measured 4.44 and 4.17, marginally under. */
  --gray:     #9D9D9C;      /* brand gray (logo dot) */
  --line:     #E3E8EB;      /* hairline borders */
  --line-2:   #EDF1F3;
  --surface:  #F6F8F9;      /* alt section background */
  --white:    #FFFFFF;

  /* Type */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  /* Fluid type scale */
  --fs-display: clamp(2.6rem, 1.4rem + 4.6vw, 4.3rem);
  --fs-h1:      clamp(2.05rem, 1.4rem + 2.6vw, 3.1rem);
  --fs-h2:      clamp(1.65rem, 1.2rem + 1.8vw, 2.35rem);
  --fs-h3:      1.28rem;
  --fs-body:    1.0625rem;   /* 17px */
  --fs-sm:      0.9375rem;
  --fs-xs:      0.8125rem;

  /* Spacing scale (4 · 8 base) */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px; --s10: 128px;

  /* Layout */
  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 40px);
  --radius: 10px;
  --radius-sm: 7px;
  --radius-lg: 18px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(12,26,36,.06), 0 2px 6px rgba(12,26,36,.05);
  --shadow-md: 0 8px 24px rgba(12,26,36,.09);
  --shadow-lg: 0 20px 50px rgba(12,26,36,.14);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-in: cubic-bezier(.55,.06,.68,.19);
  --t-fast: .16s;
  --t: .28s;

  --nav-h: 84px;
}

/* 02 · BASE ================================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.62;
  color: var(--ink);
  /* White page with a faint dot texture across every page. Cards, tables and
     the hero/footer paint their own solid backgrounds on top, so the dots read
     only in the open white space between them. No coloured section bands. */
  background-color: var(--white);
  background-image: radial-gradient(circle, rgba(0,82,125,.10) 1px, transparent 1px);
  background-size: 16px 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* NOTE: never set overflow-x here. It creates a scroll container and stops
     the sticky nav from pinning. Horizontal overflow is handled on .nav-menu. */
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--navy-dark); }
h1,h2,h3,h4 { margin: 0; color: var(--navy-dark); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.01em; line-height: 1.25; }
p  { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
strong { font-weight: 700; }

::selection { background: var(--navy); color: #fff; }
:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; border-radius: 3px; }

/* 03 · UTILITIES =========================================================== */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 860px; margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--navy); display: inline-block; }
.eyebrow.on-dark { color: #9FD0E8; }
.eyebrow.on-dark::before { background: #9FD0E8; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.center { text-align: center; }
.lede { font-size: 1.16rem; line-height: 1.6; color: var(--ink-2); }

/* 04 · BUTTONS ============================================================= */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  font-weight: 700; font-size: var(--fs-sm); letter-spacing: .01em;
  color: var(--btn-fg); background: var(--btn-bg);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--btn-bg);
  min-height: 48px;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease), background var(--t-fast) var(--ease);
  will-change: transform;
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform var(--t) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary { --btn-bg: var(--navy); --btn-fg:#fff; }
.btn-primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); }
.btn-ghost {
  --btn-bg: transparent; --btn-fg: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover { --btn-fg: var(--navy-dark); background: var(--navy-tint); border-color: var(--navy-tint-2); box-shadow: none; }
.btn-white { --btn-bg:#fff; --btn-fg: var(--navy-dark); border-color:#fff; }
.btn-outline-white { --btn-bg: transparent; --btn-fg:#fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.08); border-color:#fff; }
.btn-sm { padding: 9px 16px; min-height: 40px; font-size: var(--fs-xs); }
.btn-block { width: 100%; }

/* Pills / tags */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--navy-tint); color: var(--navy-dark);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .02em;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--navy); }
.pill.urgent .dot { background: var(--accent); box-shadow: 0 0 0 0 rgba(254,7,7,.5); animation: pulse 2.4s var(--ease) infinite; }
.tag {
  display: inline-block; font-family: var(--font-mono);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy);
}

/* 05 · UTILITY BAR ========================================================= */
.utility-bar { background: var(--navy-dark); color: #fff; font-size: 12.5px; }
.utility-bar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-block: 8px; }
.utility-bar a { color: #fff; opacity: .9; }
.utility-bar a:hover { color:#fff; opacity: 1; }
.utility-left { display: flex; gap: 22px; font-weight: 500; }
.utility-left .mono { letter-spacing: .02em; }
.utility-right { display: flex; gap: 20px; font-weight: 600; }
@media (max-width: 760px) { .utility-left span:not(:first-child), .utility-right { display: none; } }

/* 05b · SKIP LINK ============================================================ */
.skip-link {
  position: absolute; top: -48px; left: 12px; z-index: 1000;
  background: var(--navy); color: #fff; padding: 12px 18px;
  border-radius: var(--radius-lg); font-weight: 600; text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* 06 · HEADER / NAV ======================================================== */
/* Sticky bar that compacts with a frosted glass effect on scroll (77 Media style) */
.site-header { position: sticky; top: 0; z-index: 100; display: flow-root; background: rgba(255,255,255,.95); border-bottom: 1px solid transparent; transition: border-color var(--t), box-shadow var(--t), background var(--t); }
.site-header.scrolled {
  /* Scrolled: the bar itself disappears and the nav becomes a floating pill
     (matches the treatment on nitinyadav.in / 77 Media). The inset that makes
     the pill "float" comes from the nav's own margin, NOT header padding, so
     the header's in-flow height stays identical to the top state and the page
     never jumps at the scroll threshold. */
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
.site-header.scrolled .nav {
  max-width: 1150px;
  min-height: 68px;
  margin-block: 8px;              /* 68 + 16 margin = 84 = top-state nav height */
  padding-inline: 24px;
  border-radius: 999px;
  /* Near-opaque white instead of a backdrop blur: a live blur re-samples the
     hero on every scroll frame, which is what made the background lag/trail
     behind the pill while scrolling. A solid fill composites for free. */
  background: rgba(255,255,255,.94);
  border: 1.5px solid var(--line);
  box-shadow: 0 6px 28px rgba(12,26,36,.10);
}
.nav {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: var(--nav-h); margin-block: 0;
  border: 1.5px solid transparent; border-radius: 0;
  transition: min-height var(--t) var(--ease), max-width var(--t) var(--ease),
              margin var(--t) var(--ease),
              border-radius var(--t) var(--ease), background var(--t) var(--ease),
              box-shadow var(--t) var(--ease), padding var(--t) var(--ease);
}

/* Animated gradient border on the scrolled pill (21st.dev gradient-borders
   style): a conic gradient ring rotates around the pill via the registered
   --nav-ga angle. Desktop only; phones keep the plain solid bar. */
@property --nav-ga {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes nav-border-spin { to { --nav-ga: 360deg; } }
@media (min-width: 1001px) {
  .site-header.scrolled .nav { border-color: transparent; }
  .site-header.scrolled .nav::before {
    content: ""; position: absolute; inset: -2px; z-index: -1;
    border-radius: 999px; padding: 2px; pointer-events: none;
    /* Blue-only ring: no orange stop, so nothing warm arcs past the logo. */
    background: conic-gradient(from var(--nav-ga),
      #00527D 0%, #2E7FB0 25%, #9FD0E8 50%, #2E7FB0 75%, #00527D 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask-composite: exclude;
    animation: nav-border-spin 5s linear infinite;
  }
  /* soft glow hugging the ring: same conic, masked to a band, then blurred so
     it halos outward instead of washing the frosted pill interior */
  .site-header.scrolled .nav::after {
    content: ""; position: absolute; inset: -4px; z-index: -2;
    border-radius: 999px; padding: 5px; pointer-events: none;
    background: conic-gradient(from var(--nav-ga),
      rgba(0,82,125,.42), rgba(159,208,232,.4), rgba(46,127,176,.4), rgba(0,82,125,.42));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask-composite: exclude;
    filter: blur(7px); opacity: .5;
    animation: nav-border-spin 5s linear infinite;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-header.scrolled .nav::before,
  .site-header.scrolled .nav::after { animation: none; }
}
/* Heights are tuned for the TIGHT-CROPPED logo.png (mark fills the box, no
   baked white padding). The old logo.jpg carried ~53% white margin, so its
   72px/52px boxes only showed ~34px/24px of actual mark — these values match
   that prior on-screen size. */
.nav-brand img { height: 36px; width: auto; transition: height var(--t) var(--ease); }
.site-header.scrolled .nav-brand img { height: 26px; }
/* In the scrolled pill the CTA shrinks and goes fully round so it sits inside
   the pill rather than fighting it with a big square block. */
.nav-cta-desktop { transition: padding var(--t) var(--ease), min-height var(--t) var(--ease), border-radius var(--t) var(--ease), font-size var(--t) var(--ease); }
.site-header.scrolled .nav-cta-desktop {
  padding: 9px 20px; min-height: 42px; border-radius: 999px; font-size: 14px; gap: 7px;
}
.site-header.scrolled .nav-cta-desktop .arrow { width: 14px; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li > a,
.nav-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 15px; color: var(--ink);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-menu > li > a:hover, .nav-trigger:hover,
.nav-item.open .nav-trigger { background: var(--navy-tint); color: var(--navy-dark); }
.nav-menu a[aria-current="page"] { color: var(--navy); }
.nav-trigger .chev { width: 12px; transition: transform var(--t) var(--ease); }
.nav-item.open .nav-trigger .chev { transform: rotate(180deg); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Dropdown panels: grouped columns with icon, label and description */
.nav-item { position: relative; }
.nav-panel {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(10px) scale(.98);
  transform-origin: top center;
  display: grid; grid-template-columns: repeat(2, minmax(230px, 1fr)); gap: 4px 18px;
  padding: 18px; min-width: 520px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px) saturate(1.6); -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 18px 50px rgba(12,26,36,.16);
  opacity: 0; visibility: hidden; z-index: 200;
  transition: opacity .22s var(--ease), transform .28s var(--ease), visibility .28s;
}
.nav-panel-wide { grid-template-columns: repeat(3, minmax(215px, 1fr)); min-width: 720px; }
.nav-panel-single { grid-template-columns: minmax(300px, 1fr); min-width: 340px; }
.nav-item.open .nav-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) scale(1); }

.np-group-title {
  line-height: 1.12;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3);
  margin: 6px 0 6px 12px;
}
.nav-panel a {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 9px 12px; border-radius: 11px; color: var(--ink);
  transition: background .16s var(--ease), transform .16s var(--ease);
}
.nav-panel a:hover { background: var(--navy-tint); transform: translateX(2px); }
.nav-panel a:hover .np-ico { background: var(--navy); color: #fff; }
.np-ico {
  flex: none; width: 32px; height: 32px; border-radius: 9px;
  background: var(--navy-tint); color: var(--navy);
  display: grid; place-items: center;
  transition: background .16s var(--ease), color .16s var(--ease);
}
.np-ico svg { width: 17px; height: 17px; }
.np-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.nav-panel a .np-title { font-weight: 700; font-size: 14.5px; color: var(--navy-dark); line-height: 1.3; }
.nav-panel a .np-sub { font-size: 12.5px; color: var(--ink-3); line-height: 1.35; }
.nav-panel a[aria-current="page"] { background: var(--navy-tint); }
.nav-panel a[aria-current="page"] .np-ico { background: var(--navy); color: #fff; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: var(--radius-sm); align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--navy-dark); border-radius: 2px; transition: transform var(--t) var(--ease), opacity var(--t-fast);
}
.nav-toggle span::before { transform: translateY(-7px); } .nav-toggle span::after { transform: translateY(5px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg) translateY(-1.5px); }

@media (max-width: 1000px) {
  .nav-cta-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed; inset: var(--nav-h) 0 0 auto; width: min(360px, 86vw);
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-left: 1px solid var(--line);
    padding: 18px; overflow-y: auto;
    transform: translateX(100%); transition: transform var(--t) var(--ease), visibility var(--t);
    box-shadow: var(--shadow-lg);
    visibility: hidden; /* keeps the closed drawer out of layout and tab order */
  }
  .nav-menu.open { transform: translateX(0); visibility: visible; }
  .nav-menu > li > a, .nav-trigger { width: 100%; font-size: 16px; padding: 13px 14px; }
  .nav-panel, .nav-panel-wide, .nav-panel-single {
    position: static; min-width: 0; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0; padding: 2px 0 8px 8px;
    grid-template-columns: 1fr; display: none;
    background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  .nav-item.open .nav-panel { display: grid; transform: none; }
  .np-group-title { margin-left: 12px; }
  .nav-item.open .nav-panel { display: grid; }
  .nav-mobile-cta { display: block; margin-top: 12px; }
}
@media (min-width: 1001px) { .nav-mobile-cta { display: none; } }
/* Phones: swap the live blur for a solid bar so scrolling stays smooth on mid-range devices */
@media (max-width: 1000px) {
  /* phones: solid bar, no live blur (GPU cost), and no pill inset */
  .site-header.scrolled { background: rgba(255,255,255,.97); backdrop-filter: none; -webkit-backdrop-filter: none; padding-block: 0; }
  .site-header.scrolled .nav {
    max-width: var(--wrap); border-radius: 0; border-color: transparent;
    background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
    box-shadow: none; padding-inline: var(--gutter);
  }
}

/* 07 · HERO ================================================================ */
/* Small bottom padding: the logo marquee ends the hero, and the next section
   brings its own top padding, so a full clamp here doubled up into a big gap. */
.hero { position: relative; padding-block: clamp(48px, 7vw, 96px) clamp(14px, 1.6vw, 22px); overflow: hidden; }
.hero::before {
  /* Clean background, no grid: a BLUE hue washing down from the top like the
     hero-with-mockup reference, fading into the surface tone. */
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 540px at 50% -12%, rgba(0,110,175,.28) 0%, rgba(0,110,175,.10) 55%, transparent 78%),
    linear-gradient(180deg, #fff 0%, #fff 100%);
}
/* ACP badge watermark: the round icon, tucked into the top right corner so it
   bleeds off the edge (deliberately not fully visible, per Nitin). */
.hero-mark {
  position: absolute; top: -80px; right: -85px;
  width: 330px; height: 330px; z-index: -1; pointer-events: none;
  background: url('../img/acp-icon.svg') no-repeat center / contain;
  opacity: .09;
}
@media (max-width: 700px) {
  .hero-mark { width: 180px; height: 180px; top: -48px; right: -52px; opacity: .08; }
}

.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent-underline { position: relative; white-space: nowrap; }
.hero h1 .accent-underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 10px;
  background: var(--accent); opacity: .16; border-radius: 4px; z-index: -1;
}
/* Brand sans (Inter), un-bolded. max-width is set so the sentence breaks onto
   TWO lines at desktop width, not three. */
.hero-sub {
  font-family: var(--font-sans);
  font-size: 1.16rem; font-weight: 400; line-height: 1.6; letter-spacing: -.01em;
  color: var(--ink-2); max-width: 68ch;
  margin-top: 112px; margin-bottom: 8px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } .hero-sub { max-width: 46ch; } }

/* Centered hero — upload-first, Fabworks-style emphasis */
.hero-center { text-align: center; max-width: 900px; margin-inline: auto; }
.hero-center .hero-badges { justify-content: center; }
.hero-center h1 { font-size: var(--fs-display); }
.hero-center .hero-sub { margin-inline: auto; max-width: 54ch; }
/* Headline stays page-centered; the bolt sits beside it on the left.
   The bolt is absolutely positioned so it can't push the headline off-center
   (a flex row would shift the text right by half the bolt's width). */
.hero-lockup {
  position: relative;
  margin-block: 34px 42px; text-align: center;
}
.hero-lockup-text h1 { text-align: center; }
.hero-lockup-text .eyebrow { margin-bottom: 10px; }
.hero-lockup-text h1 { font-size: var(--fs-display); }
.days-accent { color: #F4571C; } /* "Days" emphasis */

/* ---- Animated instant-quote demo (Fabworks-style browser mockup) ---------
   Pure CSS loop, ~11s: file drags into the dropzone, part row appears,
   options fill in, price + lead time land, cursor clicks Checkout. All
   transform/opacity animation on small elements; reduced-motion shows the
   finished quote statically. */
.quote-demo { max-width: 560px; margin-inline: auto; }
.qd-window {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 14px 44px rgba(12,26,36,.10);
}
.qd-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-bottom: 1px solid var(--line-2);
  background: var(--surface);
}
.qd-dot { width: 10px; height: 10px; border-radius: 50%; }
.qd-dot.r { background: #F26D60; } .qd-dot.y { background: #F5BE4F; } .qd-dot.g { background: #61C455; }
.qd-url {
  margin-left: 10px; font-family: var(--font-mono); font-size: 10.5px;
  color: var(--ink-3); background: #fff; border: 1px solid var(--line-2);
  border-radius: 6px; padding: 3px 10px;
}
.qd-body { position: relative; padding: 18px 18px 20px; min-height: 252px; }
.qd-head { font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 12px; }
.qd-drop {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  border: 1.5px dashed #B9C6CE; border-radius: 10px;
  padding: 18px 12px; font-size: 12.5px; color: var(--ink-2);
  animation: qd-drop-hl 11s infinite;
}
.qd-drop svg { width: 17px; flex: none; color: var(--navy); }
.qd-drop b { color: var(--navy); }
/* the dragged file chip + cursor */
.qd-chip {
  position: absolute; top: 66px; left: 50%; z-index: 2;
  font-family: var(--font-mono); font-size: 10.5px; white-space: nowrap;
  background: var(--navy); color: #fff; border-radius: 6px; padding: 4px 9px;
  transform: translate(150px, 130px);
  animation: qd-chip 11s infinite;
}
.qd-cursor {
  position: absolute; top: 72px; left: 50%; z-index: 3; width: 15px;
  transform: translate(196px, 148px);
  animation: qd-cursor 11s infinite;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.35));
}
/* part row that appears after the drop */
.qd-part {
  display: flex; align-items: center; gap: 12px;
  margin-top: 14px; padding: 12px; border: 1px solid var(--line-2);
  border-radius: 10px; background: var(--surface);
  opacity: 0; animation: qd-part 11s infinite;
}
.qd-thumb {
  width: 44px; height: 44px; flex: none; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line-2); border-radius: 8px;
  color: var(--navy);
}
.qd-thumb svg { width: 26px; }
.qd-meta { flex: 1; min-width: 0; }
.qd-name { font-family: var(--font-mono); font-size: 11px; color: var(--ink); margin-bottom: 7px; }
.qd-fields { display: flex; gap: 6px; flex-wrap: wrap; }
.qd-field {
  font-size: 10.5px; border: 1px solid var(--line); background: #fff;
  border-radius: 6px; padding: 3px 8px; color: var(--ink-2);
  opacity: 0;
}
.qd-field b { color: var(--ink); font-weight: 600; }
.qd-field.f1 { animation: qd-fade 11s infinite; animation-delay: 0s; }
.qd-field.f2 { animation: qd-fade2 11s infinite; }
.qd-field.f3 { animation: qd-fade3 11s infinite; }
.qd-price { text-align: right; flex: none; }
.qd-amt {
  display: block; font-weight: 800; font-size: 17px; color: var(--navy);
  opacity: 0; animation: qd-price 11s infinite;
}
.qd-lead {
  display: block; font-size: 10.5px; color: var(--ink-3); margin-top: 2px;
  opacity: 0; animation: qd-price 11s infinite;
}
.qd-checkout {
  margin-top: 12px; text-align: center;
  background: var(--navy); color: #fff; font-weight: 700; font-size: 13px;
  border-radius: 8px; padding: 9px;
  opacity: 0; animation: qd-checkout 11s infinite;
}
.qd-cap {
  margin-top: 14px; text-align: center; font-size: 13px; color: var(--ink-2);
}
.qd-cap a { color: var(--navy); font-weight: 700; }

@keyframes qd-drop-hl {
  0%, 4%  { border-color: #B9C6CE; background: transparent; }
  8%, 15% { border-color: var(--navy); background: var(--navy-tint); }
  19%, 100% { border-color: #B9C6CE; background: transparent; }
}
@keyframes qd-chip {
  0%       { transform: translate(150px, 130px); opacity: 1; }
  8%       { transform: translate(-56px, 8px); opacity: 1; }
  15%      { transform: translate(-56px, 8px); opacity: 1; }
  18%, 96% { transform: translate(-56px, 8px); opacity: 0; }
  100%     { transform: translate(150px, 130px); opacity: 1; }
}
@keyframes qd-cursor {
  0%       { transform: translate(196px, 148px); }
  8%, 15%  { transform: translate(10px, 18px); }
  30%      { transform: translate(-92px, 78px); }
  40%      { transform: translate(-30px, 78px); }
  50%      { transform: translate(28px, 78px); }
  62%, 68% { transform: translate(150px, 92px); }
  76%      { transform: translate(0, 152px); }
  80%      { transform: translate(0, 152px) scale(.86); }
  84%, 100%{ transform: translate(0, 152px) scale(1); }
}
@keyframes qd-part {
  0%, 17%  { opacity: 0; transform: translateY(8px); }
  22%, 96% { opacity: 1; transform: translateY(0); }
  100%     { opacity: 0; transform: translateY(8px); }
}
@keyframes qd-fade {
  0%, 30%  { opacity: 0; }
  35%, 96% { opacity: 1; }
  100%     { opacity: 0; }
}
@keyframes qd-fade2 {
  0%, 40%  { opacity: 0; }
  45%, 96% { opacity: 1; }
  100%     { opacity: 0; }
}
@keyframes qd-fade3 {
  0%, 50%  { opacity: 0; }
  55%, 96% { opacity: 1; }
  100%     { opacity: 0; }
}
@keyframes qd-price {
  0%, 58%  { opacity: 0; transform: translateY(4px); }
  64%, 96% { opacity: 1; transform: translateY(0); }
  100%     { opacity: 0; }
}
@keyframes qd-checkout {
  0%, 66%  { opacity: 0; }
  72%, 78% { opacity: 1; transform: scale(1); }
  80%      { opacity: 1; transform: scale(.97); }
  82%, 96% { opacity: 1; transform: scale(1); }
  100%     { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .qd-chip, .qd-cursor { display: none; }
  .qd-drop, .qd-part, .qd-field, .qd-amt, .qd-lead, .qd-checkout {
    animation: none; opacity: 1; transform: none;
  }
}

/* Docs layout — Guidelines section (Fabworks-style sidebar) */
.docs-shell { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: clamp(28px,4vw,56px); align-items: start; padding-block: clamp(28px,4vw,48px) clamp(56px,7vw,88px); }
.docs-nav { position: sticky; top: calc(var(--nav-h) + 16px); max-height: calc(100vh - var(--nav-h) - 32px); overflow-y: auto; padding-right: 6px; }
/* Fabworks-style tree: collapsible top sections, sub-groups, per-page tool icons */
.docs-sec { margin-bottom: 16px; }
.docs-sec-head {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  width: 100%; padding: 4px 6px 4px 0; background: none; border: 0; cursor: pointer;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
}
.docs-sec-head .chev { width: 11px; flex: none; color: var(--ink-3); transition: transform var(--t) var(--ease); }
.docs-sec.closed .docs-sec-head .chev { transform: rotate(-90deg); }
.docs-sec.closed .docs-sec-body { display: none; }
.docs-sec-body { margin-top: 4px; }
.docs-sub { margin-top: 10px; }
.docs-sub .docs-sub-title {
  margin: 0 0 3px; padding-left: 12px;
  font-size: 12.5px; font-weight: 700; color: var(--ink-3);
}
.docs-sub a { margin-left: 10px; }
.docs-nav a {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 10px; border-left: 2px solid var(--line-2);
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  border-radius: 0 7px 7px 0;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.docs-nav .dn-ico { width: 15px; height: 15px; flex: none; color: var(--ink-3); transition: color var(--t-fast); }
.docs-nav a:hover { background: var(--navy-tint); color: var(--navy-dark); }
.docs-nav a.active { border-left-color: var(--navy); background: var(--navy-tint); color: var(--navy-dark); font-weight: 700; }
.docs-nav a:hover .dn-ico, .docs-nav a.active .dn-ico { color: inherit; }
.docs-body { min-width: 0; max-width: 780px; }
.docs-body h1 { font-size: clamp(1.9rem, 1.3rem + 2vw, 2.6rem); margin-bottom: 12px; }
.docs-body .lede { margin-bottom: 26px; }
.docs-body h2 { font-size: 1.45rem; margin: 38px 0 12px; padding-top: 8px; }
.docs-body h3 { font-size: 1.12rem; margin: 26px 0 8px; }
.docs-body p { color: var(--ink-2); margin-bottom: 12px; }
.docs-body ul.docs-list { list-style: none; margin: 0 0 14px; }
.docs-body ul.docs-list li { position: relative; padding: 5px 0 5px 22px; color: var(--ink-2); font-size: var(--fs-sm); }
.docs-body ul.docs-list li::before { content: ""; position: absolute; left: 4px; top: 13px; width: 7px; height: 7px; border-radius: 2px; background: var(--navy-tint-2); border: 1.5px solid var(--navy); }
.docs-body .spec-table { margin: 14px 0 20px; }
.docs-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 26px 0 6px; padding: 18px; background: var(--navy-tint); border-radius: var(--radius); }
.docs-cta p { margin: 0; font-size: var(--fs-sm); color: var(--navy-dark); flex: 1 1 260px; }
.docs-prevnext { display: flex; justify-content: space-between; gap: 14px; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); }
.docs-prevnext a { font-weight: 700; font-size: var(--fs-sm); }
.docs-mobile-toggle { display: none; }
@media (max-width: 900px) {
  .docs-shell { grid-template-columns: 1fr; }
  .docs-nav { position: static; max-height: none; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; background: #fff; }
  .docs-mobile-toggle { display: flex; width: 100%; align-items: center; justify-content: space-between; font-weight: 700; color: var(--navy-dark); padding: 4px 2px; }
  .docs-mobile-toggle .chev { width: 14px; transition: transform var(--t); }
  .docs-nav.open .docs-mobile-toggle .chev { transform: rotate(180deg); }
  .docs-nav-groups { display: none; margin-top: 12px; }
  .docs-nav.open .docs-nav-groups { display: block; }
}
@media (min-width: 901px) { .docs-nav-groups { display: block; } }
@media (max-width: 560px) {
  .hero-lockup { flex-direction: column; text-align: center; gap: 14px; }
  .hero-lockup-text .eyebrow { justify-content: center; }
}

/* Animated pastel-blue gradient ring + glow around the upload box (adapted
   from the rainbow-borders-button pattern: a 400%-wide gradient whose
   background-position animates, plus a blurred copy behind for the halo).
   Both live on the WRAPPER's pseudo-elements, which paint beneath the child
   box, so no negative z-index is needed. */
/* Must match the box's own width, or the ring spans the whole container */
.qe-glowwrap {
  position: relative; isolation: isolate;
  max-width: 760px; margin: 26px auto 44px;
}
/* isolate + explicit z-index is required: a parent's ::after otherwise paints
   ON TOP of its children, which would cover the box with the glow. */
.qe-glowwrap > .quote-embed { position: relative; z-index: 1; }
/* Thin gradient ring hugging the box. A CONIC gradient whose start angle is
   animated, so the colours travel around the perimeter instead of sliding
   across it. The angle is a registered custom property, which is what makes it
   animatable at all; browsers without @property fall back to the plain
   linear-gradient declared first (static, but still on-brand). */
@property --qe-angle {
  syntax: "<angle>"; initial-value: 0deg; inherits: false;
}
.qe-glowwrap::before {
  content: ""; position: absolute; inset: -2px; z-index: 0;
  border-radius: 14px; pointer-events: none;
  /* Near-monochrome blue ring: only close blue/periwinkle tones, so the
     rotation reads as a single blue shimmer travelling around the box rather
     than distinct colours. The warm (orange/pink) lives in the soft ambient
     wash below, where it blends into the blue instead of banding here. */
  background: linear-gradient(45deg,
    #7FA9E4, #9FC0EE, #B7C4E8, #9FC0EE, #7FA9E4);
  background: conic-gradient(from var(--qe-angle),
    #6E9CDE, #86AEE6, #9CBBEC, #AFC3E9, #B7C4E8, #AFC3E9, #9CBBEC, #86AEE6, #6E9CDE);
  animation: qe-ring 9s linear infinite;
}
/* The wide ambient hue behind the box: soft blobs orbiting the box on a
   flattened ellipse. Blue-dominant, with a faint orange and a faint pink blob
   at low alpha, so a subtle warm glow sweeps around in step with the ring
   without overpowering the blue. Spun with transform only (scaleY squashes the
   orbit into a wide, short path), so this is composited, with no per-frame
   repaint or blur cost. The base transform is repeated here so reduced-motion,
   which kills the animation, still gets the flattened shape. */
.qe-glowwrap::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  top: 50%; left: 50%; width: 1000px; height: 1000px; margin: -500px 0 0 -500px;
  transform: scaleY(.3);
  background:
    radial-gradient(closest-side at 50% 30%, rgba(88,140,222,.20), transparent 74%),
    radial-gradient(closest-side at 58% 56%, rgba(116,166,234,.15), transparent 74%),
    radial-gradient(closest-side at 42% 56%, rgba(116,166,234,.13), transparent 74%),
    radial-gradient(closest-side at 66% 52%, rgba(240,150,116,.06), transparent 70%),
    radial-gradient(closest-side at 36% 52%, rgba(240,140,190,.06), transparent 70%);
  animation: qe-hue 18s linear infinite;
}
@keyframes qe-ring {
  to { --qe-angle: 360deg; }
}
@keyframes qe-hue {
  from { transform: scaleY(.3) rotate(0deg); }
  to   { transform: scaleY(.3) rotate(360deg); }
}
@media (max-width: 700px) {
  .qe-glowwrap::after { width: 620px; height: 620px; margin: -310px 0 0 -310px; }
}
@media (prefers-reduced-motion: reduce) {
  .qe-glowwrap::before, .qe-glowwrap::after { animation: none; }
}

/* Oroox quote widget embed — Fabworks-style compact upload row: one dashed
   rectangle, folder icon + Browse Files + drag-and-drop hint on a single line. */
.quote-embed {
  /* Fabworks-style: one dashed rectangle, our own two-line layout inside.
     Only the Browse Files button is the live Oroox iframe (see .qe-btnwin). */
  max-width: 760px; margin: 0 auto;   /* spacing now lives on .qe-glowwrap */
  background: #fff;
  border: 1.5px dashed #B9C6CE; border-radius: 12px;
  padding: 18px 16px 13px; position: relative;
  transition: border-color var(--t), box-shadow var(--t);
}
.quote-embed:hover { border-color: var(--navy); box-shadow: 0 8px 30px rgba(0,82,125,.10); }
/* One flex row: [folder icon | live Browse Files button | drag-drop hint].
   .qe-btnwin is a small rounded window clipped to EXACTLY the widget's Browse
   Files button, which is how the cross-origin button gets rounded corners.
   The iframe inside is fixed-width so the crop offsets never shift with the
   viewport. Re-tune the offsets if Oroox changes the widget layout. */
.qe-row { display: flex; align-items: center; justify-content: center; gap: 14px; }
.qe-ico { color: var(--navy); flex: none; }
.qe-ico svg { width: 26px; height: 26px; display: block; }
.qe-btnwin {
  position: relative; overflow: hidden; flex: none;
  width: 124px; height: 42px; border-radius: 999px;
}
.qe-btnwin iframe {
  position: absolute; border: 0; background: transparent;
  width: 760px; height: 420px;
  left: -318px; top: -192px;
}
/* Our own pill drawn OVER the live button: guarantees the rounded corners and
   typography while every click and file drop passes through to the real
   Oroox control underneath. */
.qe-btnwin::after {
  content: "Browse Files";
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: #fff; border-radius: 999px;
  font-family: var(--font-sans); font-weight: 700; font-size: 15px;
  transition: background var(--t-fast);
}
.qe-btnwin:hover::after { background: var(--navy-dark); }
.qe-hint {
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  font-size: 12px; color: var(--ink-2);
}
.qe-chip {
  font-family: var(--font-mono); font-size: 10px; line-height: 1;
  padding: 3px 5px; border: 1px solid var(--line); border-radius: 5px;
  background: #fff; color: var(--ink-2);
}
.qe-safe {
  margin: 10px 0 0; text-align: center;
  font-size: 12.5px; color: var(--ink-3);
}
.qe-safe svg { width: 13px; height: 13px; display: inline-block; vertical-align: -2px; margin-right: 5px; }
@media (max-width: 700px) {
  /* Phones: drag and drop is moot, icon + button + safety line only */
  .qe-hint { display: none; }
}

/* Real photo inside media slots */
.imgslot.has-photo { background: var(--navy-tint); }
.imgslot.has-photo::before { display: none; }
/* Proof strip */
/* No border-top: the rule line read as a hard "chop" against the seamless
   gradient below (Nitin flagged it twice). Spacing alone separates the strip. */
/* Proof strip: now a standalone band sitting between Why ACP and What We Do,
   so it carries its own vertical spacing rather than the hero's. */
.proof-section { padding-bottom: clamp(40px, 5.5vw, 72px); }
.proof-section .proof { margin-top: 0; }
.proof { margin-top: clamp(36px, 5vw, 60px); padding-top: 28px; }
.proof-label { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; text-align: center; }

/* Logo marquee (21st.dev grootstudio): one infinite row of full-colour logos,
   edges masked to fade, and hover SLOWS the scroll rather than stopping it.
   The track holds two identical sets and travels exactly -50%, so the loop is
   seamless. Transform-only, so this is a compositor animation. */
.lm-heading {
  margin: 88px 0 22px; padding-top: 46px; border-top: 1px solid var(--line);
  text-align: center;
  font-family: var(--font-mono); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3);
}
.logo-marquee {
  position: relative; overflow: hidden; margin-bottom: 8px;
  /* Full-bleed row (direct child of the hero), so a slim end-fade keeps it
     edge to edge like the testimonials row. */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
}
.lm-track {
  display: flex; width: max-content;
  animation: lm-scroll 42s linear infinite;
  will-change: transform;
}
/* Hover slows it down. Changing only the duration keeps the progress fraction,
   so the row eases off rather than jumping. */
.logo-marquee:hover .lm-track { animation-duration: 120s; }
.lm-set { display: flex; align-items: center; margin: 0; padding: 0; list-style: none; }
.lm-set li {
  list-style: none; flex: none;
  margin-right: clamp(40px, 5.5vw, 84px);
  display: flex; align-items: center;
}
.lm-set img {
  height: 30px; width: auto; display: block;
  opacity: .95;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.lm-set li:hover img { opacity: 1; transform: scale(1.06); }
@keyframes lm-scroll { to { transform: translateX(-50%); } }
@media (max-width: 700px) {
  .lm-heading { margin-top: 40px; }
  .lm-set li { margin-right: 34px; }
  .lm-set img { height: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .lm-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .lm-set { flex-wrap: wrap; justify-content: center; }
  .lm-set + .lm-set { display: none; }
  .lm-set li { margin: 8px 22px; }
}
.proof-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.proof-item { text-align: center; }
.proof-item .n { font-size: 1.9rem; font-weight: 800; color: var(--navy); font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.proof-item .l { font-size: var(--fs-xs); color: var(--ink-2); line-height: 1.4; }
/* A proof item that links out (e.g. the BBB profile). Reads as a stat, not a link,
   until you hover, so the row keeps one visual rhythm. */
a.proof-link { display: block; text-decoration: none; border-radius: 10px; padding: 6px 4px; margin: -6px -4px; transition: background .18s ease; }
a.proof-link:hover { background: rgba(0, 82, 125, .06); }
a.proof-link:hover .n { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 620px) { .proof-row { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; } }
/* 09 · SECTIONS ============================================================ */
.section { padding-block: clamp(56px, 8vw, 104px); }
/* First section after the hero: tighter top so it sits close to the logo row */
.section#why { padding-top: clamp(26px, 3.2vw, 44px); }
/* No coloured section bands. Sections are transparent so the page's dotted
   white shows through uniformly; cards and tables supply their own white. */
.section.alt { background: transparent; }

/* ---- Service landing pages ---------------------------------------------
   These pages run a long stack of sections, so the site-wide rhythm adds up
   to too much dead space. Tighter block padding, scoped to <main class="svc-lp">
   so the rest of the site keeps its original spacing. The closing CTA band
   keeps a full gap beneath it so it never sits flush against the footer. */
.svc-lp .section { padding-block: clamp(38px, 4.6vw, 62px); }
.svc-lp .section:last-child { padding-bottom: clamp(56px, 6.4vw, 88px); }
/* Hero: triple the space beneath the CTA button row before the next section. */
.svc-lp .lp-hero { padding-bottom: clamp(90px, 12vw, 162px); }
/* Bigger headline, and more air after the title, after the lede, and above the
   button row. The buttons use padding-top rather than margin-top so it stacks
   with the lede's margin instead of collapsing into it. */
.svc-lp .lp-hero h1 { font-size: clamp(2.8rem, 1.3rem + 5vw, 4.75rem); margin: 12px 0 28px; }
.svc-lp .lp-hero .lede { margin-bottom: 32px; }
.svc-lp .lp-hero .lp-hero-actions { margin-top: 0; padding-top: 30px; }
/* Photo top-aligns with the text column instead of floating centred against it.
   The 30px nudge starts it level with the headline rather than the breadcrumb. */
.svc-lp .lp-hero-grid { align-items: start; }
.svc-lp .lp-hero-media { margin-top: 30px; }
@media (max-width: 900px) { .svc-lp .lp-hero-media { margin-top: 0; } }

/* ---- Post-hero zone -----------------------------------------------------
   A plain wrapper now: no background of its own, so the body's dotted white
   runs unbroken from the hero to the footer. It only exists to host the
   cursor-follow dot highlight below (desktop, homepage). */
.page-glow-zone { position: relative; }
/* The base dot grid is global (on <body>); this layer just clips the
   cursor-follow highlight patch to the zone. */
.zone-dots {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  overflow: hidden;
}
.zone-dots-spot {
  position: absolute; top: 0; left: 0;
  width: 416px; height: 416px; margin: -208px 0 0 -208px;  /* multiples of 16 keep dots aligned; 208px ≈ the reference's 200px reveal */
  background-image: radial-gradient(circle, rgba(0,132,255,.5) 1px, transparent 1px);
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(closest-side, #000 0%, transparent 100%);
          mask-image: radial-gradient(closest-side, #000 0%, transparent 100%);
  opacity: 0; transition: opacity .3s var(--ease);
  will-change: transform;
}
.page-glow-zone:hover .zone-dots-spot { opacity: 1; }
@media (max-width: 1000px) {
  .zone-dots-spot { display: none; }   /* no cursor to follow */
}
@media (prefers-reduced-motion: reduce) {
  .zone-dots-spot { display: none; }
}

.section.navy { background: var(--navy-dark); color: #fff; }
.section.navy h2, .section.navy h3 { color: #fff; }
.section.navy p { color: #C6D8E2; }
.section-head { max-width: 640px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { margin: 14px 0 12px; }
.section-head p { color: var(--ink-2); font-size: 1.1rem; }

/* 10 · CARDS / TABLES ====================================================== */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--navy-tint-2); }
.card .card-ico { width: 46px; height: 46px; border-radius: 11px; background: var(--navy-tint); color: var(--navy); display: grid; place-items: center; margin-bottom: 18px; }
.card .card-ico svg { width: 24px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-2); font-size: var(--fs-sm); }
.card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; font-size: var(--fs-sm); color: var(--navy); }
.card .card-link .arrow { transition: transform var(--t) var(--ease); }
.card:hover .card-link .arrow { transform: translateX(4px); }
.card.num::before { content: attr(data-num); position: absolute; top: 18px; right: 22px; font-family: var(--font-mono); font-size: 13px; color: var(--gray); font-weight: 600; }
/* ---- Feature cards (Why ACP) --------------------------------------------
   iOS-app-style emoji tile + a large ghost index number, lift-and-glow on
   hover. Emojis render in the platform's colour emoji font (Apple Color Emoji
   on Apple devices), so no image assets are shipped. */
.feature-grid { gap: 26px; }
.fcard {
  position: relative; display: flex; flex-direction: column;
  min-height: 328px; padding: 22px 24px 22px; overflow: hidden;
  border: 1px solid var(--line); border-radius: 22px;
  background: linear-gradient(165deg, #F4F7FB 0%, #FFFFFF 62%);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
}
.fcard:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(0,82,125,.16); border-color: var(--navy-tint-2); }
/* Soft, distinct per-card tint like the reference (kept light and calm) */
.feature-grid .fcard:nth-child(1) { background: linear-gradient(165deg, #FFF3E6 0%, #FFFFFF 60%); }
.feature-grid .fcard:nth-child(2) { background: linear-gradient(165deg, #EFEAFB 0%, #FFFFFF 60%); }
.feature-grid .fcard:nth-child(3) { background: linear-gradient(165deg, #E6F1FB 0%, #FFFFFF 60%); }
.feature-grid .fcard:nth-child(4) { background: linear-gradient(165deg, #E5F6F1 0%, #FFFFFF 60%); }
.feature-grid .fcard:nth-child(5) { background: linear-gradient(165deg, #FCEBF1 0%, #FFFFFF 60%); }
.feature-grid .fcard:nth-child(6) { background: linear-gradient(165deg, #E9F0F8 0%, #FFFFFF 60%); }
/* Big 3-digit index number, top-left, faint mono, as in the reference */
.fcard::before {
  content: attr(data-num); position: absolute; top: 22px; left: 26px;
  font-family: var(--font-mono); font-weight: 700; font-size: 26px; line-height: 1;
  letter-spacing: .04em; color: var(--ink); opacity: .28;
}
/* The star of the card: a large emoji floating in the upper area */
.fcard-emoji {
  flex: 1 1 auto; display: grid; place-items: center;
  font-family: "Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",sans-serif;
  font-size: clamp(72px, 7vw, 96px); line-height: 1;
  padding: 18px 0 22px; margin-top: 12px;
  will-change: transform;
  transition: transform var(--t) var(--ease);
}
/* Hover: the emoji springs up with a little bounce, then rests enlarged */
.fcard:hover .fcard-emoji { animation: fcard-pop .55s cubic-bezier(.34,1.56,.64,1) forwards; }
@keyframes fcard-pop {
  0%   { transform: scale(1) translateY(0) rotate(0); }
  45%  { transform: scale(1.22) translateY(-12px) rotate(-5deg); }
  72%  { transform: scale(1.08) translateY(-3px) rotate(3deg); }
  100% { transform: scale(1.16) translateY(-6px) rotate(0); }
}
@media (prefers-reduced-motion: reduce) {
  .fcard:hover .fcard-emoji { animation: none; transform: scale(1.1); }
}
/* Inset panel at the bottom holding the tag + title, like the reference */
.fcard-panel {
  border: 1px solid rgba(0,82,125,.12); border-radius: 14px;
  background: rgba(255,255,255,.62); backdrop-filter: blur(2px);
  padding: 16px 18px 18px;
}
.fcard-tag {
  display: inline-block; margin-bottom: 9px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; color: var(--navy);
}
.fcard h3 { font-size: 1.12rem; margin-bottom: 6px; }
.fcard p { color: var(--ink-2); font-size: var(--fs-sm); }
/* CTA card: same light treatment as the others, with a navy quote link */
.fcard-cta .card-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 4px;
  font-weight: 700; color: var(--navy);
}
.fcard-cta .card-link .arrow { transition: transform var(--t) var(--ease); }
.fcard-cta:hover .card-link .arrow { transform: translateX(4px); }

/* Link-style service card with corner tick (precision motif) */
.card.linked { display: block; }
.card.linked::after {
  content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--navy);
  transition: width var(--t) var(--ease);
}
.card.linked:hover::after { width: 100%; }

/* Image slot (placeholder for real/stock photos) */
.imgslot {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background:
    repeating-linear-gradient(45deg, var(--navy-tint) 0 2px, transparent 2px 22px),
    linear-gradient(135deg, var(--navy-tint) 0%, var(--navy-tint-2) 100%);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3; display: grid; place-items: center; color: var(--navy);
}
.imgslot::before { content: ""; position: absolute; inset: 14px; border: 1.5px solid rgba(0,82,125,.18); border-radius: 8px; }
.imgslot .imgslot-tag {
  position: relative; font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em;
  color: var(--navy); background: rgba(255,255,255,.85); padding: 8px 14px; border-radius: 999px;
  display: inline-flex; gap: 8px; align-items: center; box-shadow: var(--shadow-sm);
}
.imgslot .imgslot-tag svg { width: 15px; }
.imgslot.wide { aspect-ratio: 16 / 9; }
.imgslot.tall { aspect-ratio: 3 / 4; }
.imgslot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Spec table */
/* Solid white base so the table always reads as its own card and never lets
   the page tone show through the odd rows. */
.spec-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; font-size: var(--fs-sm); }
.spec-table th, .spec-table td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line); }
.spec-table thead th { background: var(--navy-dark); color: #fff; font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .06em; text-transform: uppercase; }
.spec-table tbody tr:nth-child(even) { background: var(--surface); }
.spec-table tbody tr:last-child td { border-bottom: none; }
.spec-table td:first-child { font-weight: 600; color: var(--navy-dark); }
.spec-table td .mono, .spec-table td.num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }
.spec-table { min-width: 460px; }  /* keeps columns legible; container scrolls on small screens */
/* .two-col / .is-scrollable are set by initTables() in main.js */
@media (max-width: 640px) {
  .spec-table th, .spec-table td { padding: 11px 12px; }
  .spec-table.two-col { min-width: 0; }
}
.table-scroll.is-scrollable::after {
  content: "Swipe to see the full table \2192";
  display: block; position: sticky; left: 0;
  padding: 8px 2px 0;
  font-family: var(--font-mono); font-size: var(--fs-xs);
  letter-spacing: .04em; color: var(--ink-3);
}

/* Callout — used for honest "confirm with shop" notes */
.callout { border-left: 3px solid var(--navy); background: var(--navy-tint); padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: var(--fs-sm); color: var(--ink-2); }
.callout strong { color: var(--navy-dark); }
.callout.flag { border-left-color: var(--accent); background: #FEF2F2; }
.callout.flag strong { color: #B91C1C; }
.source-tag { font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--gray); border: 1px solid var(--line); padding: 2px 7px; border-radius: 5px; vertical-align: middle; }

/* Split / feature rows */
/* min-width:0 stops grid children from expanding past their track (fixes scroll-container overflow) */
.hero-grid > *, .page-hero-grid > *, .split > * { min-width: 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
/* Live Google reviews widget (Featurable) container. min-height reserves space
   so the page doesn't jump while the widget loads. */
.reviews-widget { margin-top: clamp(24px, 3vw, 40px); min-height: 300px; }
.reviews-fallback { text-align: center; color: var(--ink-2); font-size: var(--fs-sm); padding: 44px 0; }
.reviews-fallback a { font-weight: 700; }
/* Once the Featurable widget mounts (it injects a .shadow-wrapper), hide our
   fallback link so only the live reviews show. Offline, the wrapper never
   appears and the fallback stays. */
.reviews-widget > div:has(.shadow-wrapper) .reviews-fallback { display: none; }
@media (max-width: 700px) {}
@media (prefers-reduced-motion: reduce) {}
/* Checklist */
.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; color: var(--ink); }
.check-list li svg { width: 20px; flex: none; color: var(--navy); margin-top: 2px; }

/* 11 · STEPS / TIMELINE ==================================================== */
.steps { display: grid; gap: 6px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 18px 0; position: relative; }
.step:not(:last-child)::before { content: ""; position: absolute; left: 21px; top: 52px; bottom: -6px; width: 2px; background: var(--line); }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color:#fff; font-weight: 800; display: grid; place-items: center; font-family: var(--font-mono); z-index: 1; }
.step h3 { margin-bottom: 3px; }
.step p { color: var(--ink-2); font-size: var(--fs-sm); }

/* 12 · FAQ ================================================================= */
.faq-search { position: relative; max-width: 520px; margin: 0 auto 28px; }
.faq-search input {
  width: 100%; padding: 14px 18px 14px 46px; font-size: var(--fs-body); font-family: inherit;
  border: 1.5px solid var(--line); border-radius: var(--radius); background:#fff; color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq-search input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px var(--navy-tint); }
.faq-search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 18px; color: var(--ink-3); }
.faq-group-title { line-height: 1.25; font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .08em; text-transform: uppercase; color: var(--navy); margin: 28px 0 6px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 40px 18px 0; font-weight: 600; color: var(--navy-dark); position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 22px; font-weight: 400; color: var(--navy); transition: transform var(--t); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 0 20px; color: var(--ink-2); font-size: var(--fs-sm); }
.faq-item.hidden { display: none; }
.faq-empty { display: none; text-align: center; color: var(--ink-3); padding: 24px; }
.faq-empty.show { display: block; }

/* 13 · CTA BAND ============================================================ */
.cta-band { position: relative; background: var(--navy-dark); color: #fff; border-radius: var(--radius-lg); padding: clamp(36px, 5vw, 64px); overflow: hidden; text-align: center; }
.cta-band::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 40px 40px; -webkit-mask-image: radial-gradient(600px 300px at 50% 0%, #000, transparent 75%); mask-image: radial-gradient(600px 300px at 50% 0%, #000, transparent 75%); }
.cta-band > * { position: relative; }
.cta-band h2 { color:#fff; margin-bottom: 12px; }
.cta-band p { color:#C6D8E2; max-width: 52ch; margin: 0 auto 26px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* 14 · INTERIOR PAGE HERO ================================================== */
.page-hero { position: relative; padding-block: clamp(40px, 6vw, 72px) clamp(32px, 4vw, 48px); background: linear-gradient(180deg, var(--navy-tint) 0%, #fff 100%); border-bottom: 1px solid var(--line); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13px; color: var(--ink-3); margin-bottom: 18px; font-family: var(--font-mono); }
.breadcrumb a { color: var(--ink-3); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb .sep { opacity: .5; }
.page-hero h1 { max-width: 20ch; margin-bottom: 14px; }
.page-hero .lede { max-width: 60ch; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px,4vw,56px); align-items: center; }
@media (max-width: 860px){ .page-hero-grid { grid-template-columns: 1fr; } }
/* Industry heroes: the technical illustration carries fine callout type, so it gets
   the full column width instead of the 443px hero side slot where labels rendered ~4px. */
.page-hero-grid.stacked { grid-template-columns: 1fr; gap: clamp(22px,3vw,34px); }
.page-hero-grid.stacked .illus-panel { width: 100%; max-width: 980px; margin-inline: auto; }

/* Anchor offset for sticky nav */
[id] { scroll-margin-top: calc(var(--nav-h) + 20px); }

/* 14b · SERVICE / INDUSTRY LANDING PAGES ==================================
   Conversion-first layout in the Fabworks idiom: an oversized two-tone
   headline, a lede, an upload box + guideline link on the left, and a product
   photo on the right. Everything below is scoped to .lp- so the standard
   interior pages are untouched. */
.lp-hero {
  position: relative; overflow: hidden;
  padding-block: clamp(34px, 4.5vw, 62px) clamp(30px, 4vw, 54px);
  background:
    radial-gradient(900px 460px at 12% -10%, rgba(0,110,175,.13), transparent 72%),
    linear-gradient(180deg, #fff 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.lp-hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 60px); align-items: center;
}
@media (max-width: 900px) { .lp-hero-grid { grid-template-columns: 1fr; } }
/* The oversized headline. The service name sits on its own line in navy, the
   rest in near-black, mirroring the reference's two-tone treatment. */
.lp-hero h1 {
  font-size: clamp(2.5rem, 1.2rem + 4.4vw, 4.05rem);
  line-height: 1.03; letter-spacing: -0.025em;
  max-width: 15ch; margin: 12px 0 18px; color: #12212C;
}
.lp-hero h1 .lp-accent { color: var(--navy); display: block; }
.lp-hero h1 .lp-dot { color: var(--navy); }
.lp-hero .lede { max-width: 52ch; font-size: 1.09rem; color: var(--ink-2); margin-bottom: 24px; }
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
/* Hero photo */
.lp-hero-media { position: relative; }
.lp-hero-media img {
  width: 100%; height: auto; display: block;
  border-radius: 18px; box-shadow: 0 24px 60px rgba(12,26,36,.16);
}
.lp-hero-media .lp-media-note {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(255,255,255,.94); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 13px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--navy-dark);
}
@media (max-width: 860px) {}
/* Section heading with the reference's trailing accent dot */
.lp-h2 .lp-dot { color: var(--navy); }
/* "Explore more services" tiles */
.lp-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .lp-svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .lp-svc-grid { grid-template-columns: 1fr; } }
.lp-svc {
  display: block; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 20px 20px 18px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
}
.lp-svc:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,82,125,.12); border-color: var(--navy-tint-2); }
.lp-svc .lp-svc-ico {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--navy-tint); color: var(--navy); margin-bottom: 13px;
}
.lp-svc .lp-svc-ico svg { width: 21px; height: 21px; }
.lp-svc h3 { font-size: 1.05rem; margin-bottom: 5px; }
.lp-svc p { font-size: var(--fs-sm); color: var(--ink-2); }
/* Sticky mobile CTA */
.lp-sticky-cta { display: none; }
@media (max-width: 760px) {
  .lp-sticky-cta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.96); border-top: 1px solid var(--line);
    box-shadow: 0 -6px 24px rgba(12,26,36,.10);
  }
  .lp-sticky-cta .btn { width: 100%; justify-content: center; }
  body.has-sticky-cta { padding-bottom: 76px; }
}

/* 15 · FOOTER ============================================================== */
.site-footer { background: #0A1720; color: #AEC2CE; padding-block: clamp(48px, 6vw, 72px) 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.site-footer h2 { color:#fff; font-size: 13px; font-family: var(--font-mono); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color:#AEC2CE; font-size: var(--fs-sm); }
.site-footer a:hover { color:#fff; }
.footer-brand img { height: 28px; width: auto; box-sizing: content-box; background:#fff; padding: 8px 12px; border-radius: 8px; margin-bottom: 16px; }
.footer-brand p { font-size: var(--fs-sm); color:#8FA6B4; max-width: 34ch; }
.footer-brand .addr { margin-top: 14px; color:#AEC2CE; }
/* BBB trust badge, site wide. Grade chip + wordmark, sized to sit under the
   address without competing with it. */
.footer-bbb {
  display: inline-flex; align-items: center; gap: 11px; margin-top: 18px;
  padding: 9px 14px 9px 10px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
  text-decoration: none; transition: background .18s ease, border-color .18s ease;
}
.footer-bbb:hover { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.22); }
.bbb-grade {
  flex: none; display: grid; place-items: center; min-width: 38px; height: 38px;
  border-radius: 8px; background:#fff; color: var(--navy);
  font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em;
}
.footer-bbb .bbb-text { font-size: var(--fs-sm); font-weight: 600; color:#EAF3F8; line-height: 1.35; }
.footer-bbb .bbb-sub { font-weight: 400; font-size: var(--fs-xs); color:#8FA6B4; }
.footer-social { margin-top: 22px; }
.footer-social-label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color:#6E8494; margin-bottom: 11px; }
.footer-social-row { display: flex; gap: 10px; }
.social-tile {
  position: relative; width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center; color:#AEC2CE;
  background: rgba(255,255,255,.06);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.social-tile svg { width: 18px; height: 18px; }
/* hovering the group wakes the tiles in sequence — the reference's staggered "fan" feel */
.footer-social-row:hover .social-tile { transform: translateY(-3px); }
.footer-social-row:hover .social-tile:nth-child(2) { transition-delay: .06s; }
.footer-social-row:hover .social-tile:nth-child(3) { transition-delay: .12s; }
/* the individually hovered tile pops to its brand colour (later rule + equal specificity wins) */
.footer-social-row .social-tile:hover { transform: translateY(-6px) scale(1.06); color:#fff; transition-delay: 0s; }
.social-tile[data-net="facebook"]:hover  { background:#1877F2; box-shadow: 0 12px 22px -10px rgba(24,119,242,.75); }
.social-tile[data-net="instagram"]:hover { background: linear-gradient(45deg,#F58529,#DD2A7B,#8134AF,#515BD4); box-shadow: 0 12px 22px -10px rgba(221,42,123,.75); }
.social-tile[data-net="linkedin"]:hover  { background:#0A66C2; box-shadow: 0 12px 22px -10px rgba(10,102,194,.75); }
@media (prefers-reduced-motion: reduce) { .social-tile, .footer-social-row:hover .social-tile { transform: none; } }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); font-size: 13px; color:#7B93A2; }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }

/* MOTION — scroll reveal ==================================================== */
/* Gated on .js so content is visible by default if JS never runs (progressive enhancement) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .06s; }
.reveal[data-delay="2"] { transition-delay: .12s; }
.reveal[data-delay="3"] { transition-delay: .18s; }
.reveal[data-delay="4"] { transition-delay: .24s; }
.reveal[data-delay="5"] { transition-delay: .30s; }

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(254,7,7,.5); } 70% { box-shadow: 0 0 0 8px rgba(254,7,7,0); } 100% { box-shadow: 0 0 0 0 rgba(254,7,7,0);} }

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

/* Print */
@media print { .site-header, .utility-bar, .cta-band, .site-footer { display: none; } }

/* Brand illustrations (2026-08-10) */
.illus-panel { background: var(--navy-tint); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 16px 18px; display: grid; place-items: center; }
.illus-panel img { width: 100%; height: auto; display: block; }
/* Industry illustrations ship in three frames. The wide artwork is a landscape
   composition with long leader lines: on a phone its callouts render at ~4px and
   on a tablet at ~9px, because rendered type = font-size x (panel width / viewBox
   width). Narrower screens get a taller frame where the drawing sits above a
   legend, so the type is sized for the screen instead of shrunk with the art. */
.illus-panel picture { display: block; width: 100%; }
.cat-hero { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); margin: 0 0 26px; box-shadow: var(--shadow-sm); }


/* ---- PHONE HERO: fit headline + quote box + logo strip above the fold ------
   Nitin, 1 Sep 2026: on a phone the hero pushed the Oroox upload box below the
   fold and "Trusted by these companies" was off-screen entirely. Everything
   here is phone-only; desktop and tablet are untouched. Three moves: cut the
   dead space under the headline, drop the second sentence of the sub-line, and
   pull the logo strip up. */
@media (max-width: 700px) {
  /* the hero's own top padding is the single biggest thief of vertical space */
  .hero { padding-block: 22px 10px; }
  .hero-badges { margin-bottom: 12px; gap: 8px; }
  /* this was the "extra padding under Custom Parts" — 18px of it */
  .hero h1 { margin-bottom: 8px; }
  .hero-center .hero-sub { margin-top: 0; margin-bottom: 14px; }
  /* keep only the first line on a phone; the rest is repeated further down the
     page anyway, so nothing is lost */
  .hero-sub-more { display: none; }
  /* bring the logo strip up so it is visible without scrolling */
  .lm-heading { margin-top: 18px; }
}
