/* ===================================================================
   Binary Safety — Design Tokens
   Palette is extracted from the brand mark: an orange shield holding
   a cyan-to-violet fingerprint on a deep indigo wordmark. Orange is
   kept as the single functional accent (buttons, links, focus);
   cyan and violet stay decorative (icons, gradients, tags) so the
   interface never competes with itself.
   =================================================================== */

:root {
  /* Brand */
  --ink: #150f2e;
  /* body text, 4.9:1+ on orange, 16.8:1 on white */
  --indigo: #1e1856;
  /* primary brand, dark surfaces */
  --indigo-700: #140f3d;
  --indigo-500: #2d2680;
  --violet: #6c2bd9;
  /* decorative accent — tags, icon fills */
  --cyan: #00b8e6;
  /* decorative only — gradients, icon strokes */
  --blue: #155fc4;
  /* mid-blue from the fingerprint — icons, secondary headings, 6:1 on white */
  --orange: #e8521a;
  /* the one functional accent */
  --orange-700: #c43f10;
  /* orange used as text — 5.2:1 on white */
  --muted: #5c5a80;
  /* secondary text — 6.5:1 on white */

  /* Surfaces */
  --bg: #f3f4fb;
  --bg-alt: #e9ecf6;
  --surface: #ffffff;
  --border: rgba(30, 24, 86, 0.13);
  --border-strong: rgba(30, 24, 86, 0.26);

  /* Elevation */
  --shadow-sm: 0 2px 10px rgba(23, 18, 63, 0.06);
  --shadow-md: 0 10px 32px rgba(23, 18, 63, 0.10);
  --shadow-lg: 0 20px 60px rgba(23, 18, 63, 0.16);

  /* Shape — one radius scale for the whole site */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Type — Montserrat throughout, matching the logo wordmark; weight carries the hierarchy */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  /* Layout */
  --container: 1360px;
  --header-h: 76px;
}

/* ===================== RESET ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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

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

a {
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--indigo);
}

p {
  color: var(--muted);
}

/* Focus visibility — every interactive element gets a real ring */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2.5px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===================== UTILITIES ===================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 1000;
  background: var(--indigo);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon--sm {
  width: 16px;
  height: 16px;
}

.icon--lg {
  width: 30px;
  height: 30px;
  stroke-width: 1.4;
}

.icon--xl {
  width: 40px;
  height: 40px;
  stroke-width: 1.3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
}

.section {
  padding: 96px 0;
}

.section--tight {
  padding: 72px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--indigo {
  background: var(--indigo);
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head--wide {
  max-width: 760px;
}

.section-title {
  font-size: clamp(30px, 3.6vw, 46px);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  line-height: 1.7;
}

/* Opening paragraph of a section, set slightly larger than body copy. */
.lede {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.8;
}

/* A section heading that sits inside a column rather than above the page. */
.section-head--sub {
  margin-bottom: 36px;
}

.section-title--sm {
  font-size: clamp(26px, 3vw, 34px);
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--orange);
  color: #FFFFFF;
}

.btn--primary:hover {
  background: var(--orange-700);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--indigo);
  border-color: var(--border-strong);
}

.btn--outline:hover {
  border-color: var(--indigo);
  background: var(--surface);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--block {
  width: 100%;
}

.btn--pill {
  border-radius: var(--r-pill);
}

.btn--light {
  background: #fff;
  color: var(--indigo);
}

.btn--light:hover {
  background: #fff;
  color: var(--orange-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  width: 200px;
  height: auto;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Plain text links, not buttons — the only pill in the bar is the CTA.
   The underline is drawn as a pseudo-element so it can animate and so the
   link's own height never shifts between states. */
.nav__links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color .18s ease;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.nav__links a:hover {
  color: var(--orange-700);
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

/* Active page: indigo, bolder, and the underline stays drawn. */
.nav__links a[aria-current="page"] {
  color: var(--indigo);
  font-weight: 700;
}

.nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger:hover {
  background: var(--bg-alt);
}

.hamburger span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--indigo);
  transition: all .25s ease;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(243, 244, 251, 0.99);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a:not(.btn) {
  position: relative;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--indigo);
  text-decoration: none;
  padding: 14px 30px;
  border-radius: var(--r-md);
  min-height: 56px;
  display: flex;
  align-items: center;
}

/* Text links here too — the active page is marked by colour and a short
   rule under the word, matching the desktop bar. */
.mobile-nav a:not(.btn):hover {
  color: var(--orange-700);
}

.mobile-nav a:not(.btn)[aria-current="page"] {
  color: var(--orange-700);
}

.mobile-nav a:not(.btn)[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 8px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
}

.mobile-nav .btn {
  margin-top: 18px;
}

.mobile-nav__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: none;
  border: none;
  color: var(--indigo);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__close:hover {
  background: var(--bg-alt);
}

/* ===================== HERO (home) ===================== */
.hero {
  position: relative;
  margin-top: var(--header-h);
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 72px 0;
  background-color: var(--indigo-700);
  /* WebP is 85 KB against the PNG's 1.6 MB; the plain url() above it stays
     as the fallback for browsers without image-set() support. */
  background-image: url('../images/hero/hero-bg.png');
  background-image: image-set(url('../images/hero/hero-bg.webp') type('image/webp'),
      url('../images/hero/hero-bg.png') type('image/png'));
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 12, 34, 0.92) 0%, rgba(7, 12, 34, 0.76) 36%, rgba(7, 12, 34, 0.24) 66%, rgba(7, 12, 34, 0.04) 100%);
}

.hero>.container {
  position: relative;
  z-index: 1;
}
.hero__section{
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
}
.hero__content {
  max-width: 740px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 18px 8px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 26px;
}

.hero__badge .icon {
  width: 15px;
  height: 15px;
  color: var(--orange);
}

.hero h1 {
  font-size: clamp(36px, 4.6vw, 56px);
  color: #fff;
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--orange);
}

.hero__sub {
  font-size: 16.5px;
  line-height: 1.75;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.80);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.hero__actions .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.hero__actions .btn--outline:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: #fff;
  color: #fff;
}

.hero__trust {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__trust-item .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.hero__trust-item .icon-circle .icon {
  width: 18px;
  height: 18px;
}

.hero__trust-text {
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
}

.hero__card {
  background: rgba(12, 18, 46, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  box-shadow: 0 20px 50px rgba(4, 8, 24, 0.45);
  max-width: 300px;
  margin-left: auto;
}

.hero__card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  margin-bottom: 20px;
  background: rgba(232, 82, 26, 0.16);
  border: 1px solid rgba(232, 82, 26, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.hero__card h2 {
  font-size: 23px;
  color: #fff;
  line-height: 1.28;
  margin-bottom: 14px;
}

.hero__card p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

/* ===================== TRUST STRIP ===================== */
.trust {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust__row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: thin;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--indigo);
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  padding: 20px 26px;
  border-right: 1px solid var(--border);
}

.trust__item:last-child {
  border-right: none;
}

/* Boxed variant: the same strip framed as a card, used mid-page rather
   than as an edge-to-edge band under the hero. */
.trust--boxed {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.trust--boxed .trust__row {
  justify-content: center;
  flex-wrap: wrap;
  overflow-x: visible;
}

.trust--boxed .trust__item {
  border-right: 1px solid var(--border);
}

.trust--boxed .trust__item:last-child {
  border-right: none;
}

.trust__item .icon {
  color: var(--orange);
  width: 19px;
  height: 19px;
}

/* ===================== PAGE HERO (inner pages) =====================
   A compact banner: breadcrumb and page title only. It reuses the home
   hero's photo and scrim so the pages still feel like one site, at about
   a third of the height. */
.page-hero {
  position: relative;
  margin-top: var(--header-h);
  padding: 54px 0 58px;
  background-color: var(--indigo-700);
  background-image: url('../images/hero/hero-bg.png');
  background-image: image-set(url('../images/hero/hero-bg.webp') type('image/webp'),
      url('../images/hero/hero-bg.png') type('image/png'));
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 12, 34, 0.94) 0%, rgba(7, 12, 34, 0.84) 44%, rgba(7, 12, 34, 0.42) 74%, rgba(7, 12, 34, 0.16) 100%);
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(30px, 3.6vw, 44px);
  margin: 0;
}

.page-hero__crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
}

.page-hero__crumbs a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.page-hero__crumbs a:hover {
  color: #fff;
  text-decoration: underline;
}

.page-hero__crumbs .icon {
  width: 13px;
  height: 13px;
  color: rgba(255, 255, 255, 0.38);
}

/* ===================== CARDS ===================== */
.icon-tile {
  width: 54px;
  height: 54px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, rgba(0, 184, 230, 0.14), rgba(108, 43, 217, 0.14));
  border: 1px solid rgba(30, 24, 86, 0.10);
  color: var(--indigo);
  flex-shrink: 0;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 34px;
  position: relative;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 24, 86, 0.24);
}

.service-card h3 {
  font-size: 21px;
  margin: 20px 0 10px;
}

.service-card p {
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-card__tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(232, 82, 26, 0.09);
  color: var(--orange-700);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(232, 82, 26, 0.22);
  margin-top: auto;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 18px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
}

.feature-list .icon {
  color: var(--orange);
  width: 17px;
  height: 17px;
  margin-top: 2px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px 20px;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(30, 24, 86, 0.24);
}

.product-card .icon-tile {
  margin: 0 auto 16px;
}

.product-card__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--indigo);
  margin-bottom: 5px;
}

.product-card__sub {
  color: var(--muted);
  font-size: 13px;
}

.category-block {
  margin-bottom: 64px;
}

.category-block:last-child {
  margin-bottom: 0;
}

.category-block__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.category-block__head h3 {
  font-size: 22px;
  color: var(--indigo);
}

.category-block__head span {
  color: var(--muted);
  font-size: 14px;
}

/* ===================== GRIDS ===================== */
.grid {
  display: grid;
  gap: 22px;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--auto-md {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--auto-sm {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}

/* ===================== STATS ===================== */
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
}

.stat {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: none;
}

.stat__val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--orange-700);
  display: block;
  margin-bottom: 6px;
}

.stat__label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ===================== SERVICE PANELS (services.html) ===================== */
.service-panel__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.service-panel__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--orange-700);
  display: block;
  margin-bottom: 18px;
}

.icon-tile--lg {
  width: 66px;
  height: 66px;
  border-radius: var(--r-md);
  margin-bottom: 22px;
}

.icon-tile--lg .icon {
  width: 30px;
  height: 30px;
}

.service-panel__intro h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 14px;
}

.service-panel__intro>p {
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-panel__features {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 34px;
}

/* ===================== WHY US LIST ===================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-item {
  display: flex;
  gap: 20px;
}

.why-item__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--indigo);
  min-width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.why-item p {
  font-size: 14.5px;
  line-height: 1.7;
}

.stat-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 6px 32px;
}

.stat-panel__head {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--indigo);
  padding: 26px 0 6px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-row__label {
  color: var(--muted);
  font-size: 14px;
}

.stat-row__val {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  color: var(--orange-700);
}

/* ===================== CTA BAND ===================== */
.cta-band {
  background: var(--indigo);
  background-image:
    radial-gradient(560px 280px at 15% 0%, rgba(0, 184, 230, 0.20), transparent 60%),
    radial-gradient(480px 300px at 100% 100%, rgba(108, 43, 217, 0.26), transparent 60%);
  border-radius: var(--r-lg);
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  max-width: 480px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 10px;
  max-width: 460px;
}

.cta-band__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===================== CONTACT ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item .icon-tile {
  width: 46px;
  height: 46px;
}

.contact-item__label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-item__val {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}

.contact-item__val a {
  text-decoration: none;
  color: var(--ink);
}

.contact-item__val a:hover {
  color: var(--orange-700);
}

.map-wrap {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Plain link under the map, for anyone whose browser blocks the embed. */
.map-link {
  margin-top: 12px;
  font-size: 14px;
}

.map-link a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--orange-700);
  font-weight: 600;
  text-decoration: none;
}

.map-link a:hover {
  text-decoration: underline;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: none;
  filter: grayscale(15%);
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 38px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--indigo);
}

.field .hint {
  font-size: 13px;
  color: var(--muted);
}

.field .error {
  font-size: 13px;
  color: #b3261e;
  font-weight: 600;
  display: none;
}

.field.has-error .error {
  display: block;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #b3261e;
}

input,
textarea,
select {
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--ink);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  font-size: 14.5px;
  font-family: inherit;
  width: 100%;
  transition: border-color .18s ease, background .18s ease;
}

input::placeholder,
textarea::placeholder {
  color: #8583a8;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--indigo);
  background: var(--surface);
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%235c5a80' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-status {
  margin-top: 6px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  display: none;
}

.form-status.is-visible {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-status.is-success {
  background: rgba(20, 150, 90, 0.10);
  color: #0f7a4d;
  border: 1px solid rgba(20, 150, 90, 0.25);
}

/* Honeypot. Positioned off-screen rather than display:none, because many
   bots skip hidden inputs but happily fill an off-screen one — which is
   exactly the signal we want. Never announce it to screen readers. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--indigo-700);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 52px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-brand__mark {
  width: 200px;
  height: auto;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 14px;
  transition: color .18s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* ===================== WHATSAPP FLOAT ===================== */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

.wa-float svg {
  width: 27px;
  height: 27px;
  fill: #fff;
}

.wa-float__tip {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--indigo-700);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.wa-float:hover .wa-float__tip,
.wa-float:focus-visible .wa-float__tip {
  opacity: 1;
}

/* ===================== SCROLL REVEAL (motion, respects reduced-motion) ===================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================== BRAND STRIP (home) ===================== */
.brands {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 30px 0 34px;
}

.brands__label {
  text-align: center;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* Marquee: the track holds two identical sets, so translating it by -50%
   lands exactly on the start of the second set and the loop is seamless. */
.brands__row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.brands__track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: brands-scroll 126s linear infinite;
}

.brands__row:hover .brands__track,
.brands__track:focus-within {
  animation-play-state: paused;
}

@keyframes brands-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.brand-logo {
  flex: 0 0 auto;
  min-width: 132px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: var(--r-sm);
  color: var(--indigo);
  font-weight: 800;
  font-size: 16px;
}

/* Logos run in their own colours — several (Acer, Cisco, TP-Link) lose
   too much contrast when desaturated. The marquee pausing on hover is the
   interaction here, so the images themselves need no hover state. */
.brand-logo img {
  max-height: 32px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Square marks (Dell, HP, Huawei, Ubiquiti) read smaller than a wordmark at
   the same height, so they get a taller cap to even out the optical size. */
.brand-logo--tall img {
  max-height: 46px;
  max-width: 92px;
}

/* ===================== SECTION HEAD WITH SIDE ACTION ===================== */
.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  max-width: none;
  margin-bottom: 44px;
}

.section-head--split .section-title {
  margin-bottom: 14px;
}

.section-head--split .section-desc {
  font-size: 15.5px;
  max-width: 560px;
}

.section-title .alt {
  color: var(--blue);
  display: block;
}

/* ===================== SERVICE CARDS (home) ===================== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Services page lists six practices, so it takes a 3-up variant of the
   same card grid the home page uses at 4-up. */
.svc-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 95, 196, 0.32);
}

.svc-card__icon {
  color: var(--blue);
  margin-bottom: 20px;
}

.svc-card__icon .icon {
  width: 30px;
  height: 30px;
  stroke-width: 1.5;
}

.svc-card h3 {
  font-size: 16.5px;
  margin-bottom: 10px;
}

.svc-card p {
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.svc-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--orange-700);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
}

.svc-card__link .icon {
  width: 15px;
  height: 15px;
  transition: transform .2s ease;
}

.svc-card__link:hover {
  color: var(--orange);
}

.svc-card__link:hover .icon {
  transform: translateX(3px);
}

/* ===================== STATS BAND (home) ===================== */
.stats-band {
  background: var(--bg-alt);
  border-radius: var(--r-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
}

.stats-band__item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(30, 24, 86, 0.10);
}

.stats-band__item:last-child {
  border-right: none;
}

.stats-band__item .icon {
  width: 26px;
  height: 26px;
  color: var(--indigo);
  margin: 0 auto 14px;
  display: block;
}

.stats-band__val {
  font-size: 30px;
  font-weight: 800;
  color: var(--indigo);
  display: block;
  margin-bottom: 4px;
}

.stats-band__label {
  font-size: 13px;
  color: var(--muted);
}

/* ===================== PRODUCT CARDS WITH PHOTO (home) ===================== */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.prod-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 18px 22px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 24, 86, 0.24);
}

.prod-card__name {
  display: block;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--indigo);
  margin-bottom: 5px;
}

.prod-card__sub {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

/* Image placeholder — swap the inner markup for a real <img> when photos arrive */
.img-ph {
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: var(--r-sm);
  margin-bottom: 16px;
  background: repeating-linear-gradient(135deg, #eef1f8 0 10px, #e7ebf5 10px 20px);
  border: 1px dashed rgba(30, 24, 86, 0.20);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #8d8bab;
  overflow: hidden;
}

.img-ph .icon {
  width: 24px;
  height: 24px;
}

.img-ph span {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
}

.img-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Real product photography. The supplied shots are cut-outs on white,
   so they are contained rather than cropped and sit on a tinted plate
   that keeps every card the same height regardless of aspect ratio. */
.prod-media {
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: var(--r-sm);
  margin-bottom: 16px;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  display: block;
}

.prod-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform .35s ease;
}

.prod-card:hover .prod-media img {
  transform: scale(1.06);
}

/* Product card as a link — the whole card is clickable on the
   catalogue, so the name must not pick up default link styling. */
a.prod-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ===================== DARK CTA (home) ===================== */
.cta-dark {
  background: var(--indigo-700);
  background-image:
    radial-gradient(620px 300px at 82% 20%, rgba(21, 95, 196, 0.34), transparent 62%),
    radial-gradient(420px 280px at 8% 100%, rgba(108, 43, 217, 0.24), transparent 60%);
  border-radius: var(--r-md);
  padding: 46px 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}

.cta-dark .eyebrow {
  color: var(--orange);
  margin-bottom: 12px;
}

.cta-dark h2 {
  color: #fff;
  font-size: clamp(22px, 2.6vw, 30px);
  margin-bottom: 12px;
}

.cta-dark p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 460px;
}

.cta-dark__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.cta-dark__expert {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.cta-dark__expert .icon {
  width: 26px;
  height: 26px;
  color: rgba(255, 255, 255, 0.65);
}

.cta-dark__expert-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  display: block;
}

.cta-dark__expert a {
  font-size: 15.5px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
}

.cta-dark__expert a:hover {
  color: var(--orange);
}

/* ===================== LEGAL PAGES ===================== */
/* Long-form legal copy. One readable measure, clear heading hierarchy and
   generous spacing — these pages are read in full when they are read. */
.legal-prose {
  max-width: 760px;
}

.legal-prose__updated {
  display: inline-block;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 34px;
}

.legal-prose h2 {
  font-size: 21px;
  color: var(--indigo);
  margin: 40px 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.legal-prose h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-prose h3 {
  font-size: 16px;
  color: var(--indigo);
  margin: 26px 0 10px;
}

.legal-prose p,
.legal-prose li {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--ink);
}

.legal-prose p {
  margin-bottom: 16px;
}

.legal-prose ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 18px;
}

.legal-prose li {
  margin-bottom: 9px;
}

.legal-prose li::marker {
  color: var(--orange);
}

.legal-prose a {
  color: var(--orange-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-prose a:hover {
  color: var(--indigo);
}

.legal-prose strong {
  font-weight: 700;
  color: var(--indigo);
}

/* Set-off block for the "get this reviewed" and summary notes. */
.legal-callout {
  background: var(--bg-alt);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 20px 24px;
  margin: 0 0 34px;
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

.legal-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  max-width: 720px;
}

.legal-note h2 {
  font-size: 22px;
  margin-bottom: 14px;
}

.legal-note p {
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.legal-note p:last-child {
  margin-bottom: 0;
}

/* ===================== FOOTER ADDITIONS ===================== */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.footer-social .icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13.5px;
  line-height: 1.5;
}

.footer-contact .icon {
  width: 17px;
  height: 17px;
  color: var(--orange);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-legal {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.25);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */

@media (max-width: 1200px) {

  .svc-grid,
  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1023px) {

  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    min-height: 0;
    padding: 56px 0;
    background-position: center;
  }

  .page-hero {
    padding: 40px 0 44px;
    background-position: center;
  }

  .hero::before,
  .page-hero::before {
    background: linear-gradient(100deg, rgba(9, 14, 40, 0.95) 0%, rgba(9, 14, 40, 0.88) 55%, rgba(9, 14, 40, 0.72) 100%);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero__card {
    max-width: none;
    margin-left: 0;
  }

  .hero__trust {
    gap: 24px 32px;
  }

  .section-head--split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-band__item:nth-child(2) {
    border-right: none;
  }

  .stats-band__item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(30, 24, 86, 0.10);
  }

  .cta-dark {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 32px;
  }

  .cta-dark__actions {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat:nth-child(3) {
    border-right: none;
  }

  .stat {
    border-bottom: 1px solid var(--border);
  }

  .stat:nth-child(4),
  .stat:nth-child(5) {
    border-bottom: none;
  }

  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-top .footer-col:last-child {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 28px;
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-grid,
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band {
    padding: 44px 34px;
  }

  .service-panel__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-panel__features {
    padding: 26px 24px;
  }
}

@media (max-width: 1023px) {
  .hamburger {
    display: flex;
  }

  .nav__links,
  .nav__actions .btn {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --header-h: 68px;
  }

  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 44px 0;
  }

  .hero h1 {
    max-width: none;
  }

  .hero__sub {
    font-size: 15.5px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 34px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__trust {
    flex-direction: column;
    gap: 16px;
  }

  .hero__card {
    padding: 24px 22px;
  }

  .svc-grid,
  .svc-grid--3 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Product cards are mostly photo, so they stay two-up on phones
     rather than turning into a very tall single column. */
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .prod-card {
    padding: 12px 12px 16px;
  }

  .stats-band {
    margin-top: 28px;
  }

  .cta-dark {
    padding: 30px 22px;
  }

  .cta-dark__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cta-dark__actions .btn {
    width: 100%;
  }

  .brand-logo {
    min-width: 116px;
    font-size: 15px;
  }

  .footer-legal {
    flex-wrap: wrap;
  }

  .page-hero {
    padding: 30px 0 34px;
  }

  .trust__row {
    justify-content: flex-start;
  }

  .trust__item {
    padding: 16px 18px;
    font-size: 13px;
  }

  .section {
    padding: 60px 0;
  }

  .section--tight {
    padding: 48px 0;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }

  .grid--auto-sm,
  .svc-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    gap: 32px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .stat:nth-child(2) {
    border-right: none;
  }

  .stat {
    border-bottom: 1px solid var(--border);
  }

  .stat:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .contact-grid {
    gap: 32px;
  }

  .contact-list {
    padding-right: 60px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 24px 20px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
  }

  .footer-top .footer-brand-col {
    grid-column: 1 / -1;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .category-block {
    margin-bottom: 44px;
  }
}

@media (max-width: 560px) {

  /* The wordmark shares the bar with the menu button */
  .brand__mark {
    width: 150px;
  }
}

@media (max-width: 479px) {
  .grid--auto-sm {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card {
    padding: 20px 14px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {

  .hamburger,
  .mobile-nav {
    display: none !important;
  }
}