/*
Theme Name: Callmasters
Theme URI: https://callmasters.us
Author: OctaCore Solutions
Author URI: https://octacoresolutions.com
Description: Custom premium corporate theme for Callmasters Inc., built by OctaCore Solutions (info@octacoresolutions.com). Elementor-compatible.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: callmasters
*/

/* =========================================================
   Callmasters Inc. — Premium Corporate Design System
   ========================================================= */

:root {
  --navy-950: #071527;
  --navy-900: #0b1f3a;
  --navy-800: #0f2a4d;
  --navy-700: #16355e;
  --blue: #2aa7e0;
  --blue-dark: #1273b8;
  --blue-soft: #e8f4fb;
  --ink: #0f2239;
  --muted: #55677f;
  --line: #e5eaf1;
  --line-dark: rgba(255, 255, 255, 0.09);
  --bg-tint: #f6f9fc;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(15, 34, 57, 0.05), 0 4px 16px rgba(15, 34, 57, 0.05);
  --shadow-md: 0 2px 4px rgba(15, 34, 57, 0.06), 0 16px 40px rgba(15, 34, 57, 0.10);
  --shadow-lg: 0 24px 64px rgba(7, 21, 39, 0.16);
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* modern browsers: clip instead of hidden (never creates a scroll container,
   so position:sticky and anchors stay reliable). MUST come after the
   overflow-x:hidden fallbacks above — `hidden` makes body a scroll container
   and silently kills every position:sticky descendant. */
@supports (overflow-x: clip) {
  html, body { overflow-x: clip; }
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { width: min(1200px, 92%); margin-inline: auto; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy-900); line-height: 1.15; }

h1 { font-size: clamp(2.3rem, 4vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 2.8vw, 2.5rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: 1.12rem; font-weight: 600; letter-spacing: -0.01em; }

.accent-grad {
  background: linear-gradient(92deg, #56c2f0 0%, var(--blue) 55%, #79d2f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Eyebrow kicker ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--blue), var(--blue-dark));
}
.eyebrow--light { color: var(--blue); }
.eyebrow--center { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
              color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn__arrow { transition: transform 0.25s ease; font-family: var(--font-body); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(18, 115, 184, 0.4), 0 8px 24px rgba(42, 167, 224, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(18, 115, 184, 0.4), 0 14px 32px rgba(42, 167, 224, 0.45);
}
.btn--light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}
.btn--light:hover { background: var(--white); color: var(--navy-900); border-color: var(--white); }
.btn--lg { padding: 1.02rem 2.1rem; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }
.btn--quiet {
  border-color: rgba(42, 167, 224, 0.45);
  color: var(--blue-dark);
  background: transparent;
  padding: 0.55rem 1.15rem;
  font-size: 0.84rem;
}
.btn--quiet:hover { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: var(--white); border-color: transparent; }
.sku--featured .btn--quiet { color: var(--blue); border-color: rgba(42, 167, 224, 0.5); }
.sku--featured .btn--quiet:hover { color: var(--white); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-950);
  color: #a9bdd6;
  font-size: 0.78rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line-dark);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar__contacts { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.topbar__contacts a, .topbar__loc { display: inline-flex; align-items: center; gap: 0.45rem; letter-spacing: 0.01em; }
.topbar__contacts a:hover { color: var(--blue); }
.topbar svg { width: 13px; height: 13px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.topbar__certs { display: flex; gap: 0.45rem; }
.topbar__certs span {
  background: rgba(42, 167, 224, 0.1);
  color: #79c8ee;
  border: 1px solid rgba(42, 167, 224, 0.28);
  padding: 0.08rem 0.65rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; gap: 2rem; }
.header__brand img { height: 40px; width: auto; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav > a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}
.nav > a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  border-radius: 1px;
  background: var(--blue);
  transition: width 0.25s ease;
}
.nav > a:not(.btn):hover { color: var(--blue-dark); }
.nav > a:not(.btn):hover::after { width: 100%; }
.nav__cta { padding: 0.62rem 1.35rem; font-size: 0.88rem; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy-900); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* ---------- Mega menu ---------- */
.nav__item--mega { display: flex; align-items: center; }
.nav__mega-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.35rem 0;
  transition: color 0.2s ease;
  position: relative;
}
.nav__mega-toggle::after {
  content: '';
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: -32px;
  height: 32px;
  z-index: 10;
}
.nav__chev { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.25s ease; }
.nav__item--mega:hover .nav__mega-toggle,
.nav__item--mega.is-open .nav__mega-toggle,
.nav__item--sub:hover .nav__mega-toggle,
.nav__item--sub.is-open .nav__mega-toggle { color: var(--blue-dark); }
.nav__item--mega:hover .nav__chev,
.nav__item--mega.is-open .nav__chev,
.nav__item--sub:hover .nav__chev,
.nav__item--sub.is-open .nav__chev { transform: rotate(180deg); }
/* Link-style toggles (About with submenu): remove default anchor underline */
.nav__mega-toggle--link { text-decoration: none; color: inherit; }

.mega {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 32px 60px rgba(7, 21, 39, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 90;
}
.nav__item--mega:hover .mega,
.nav__item--mega.is-open .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* keyboard focus only — a mouse click must not pin the menu open */
@media (min-width: 769px) {
  .nav__item--mega:has(:focus-visible) .mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Simple dropdown submenu (nav item with a short list of links) */
.nav__item--sub { position: relative; display: flex; align-items: center; }
.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 250px;
  padding: 0.55rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(7, 21, 39, 0.06), 0 24px 56px rgba(7, 21, 39, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 95;
}
/* caret pointing at the menu item */
.submenu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--white);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-top-left-radius: 3px;
}
/* invisible hover bridge across the gap to the nav item */
.submenu::after {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav__item--sub:hover .submenu,
.nav__item--sub.is-open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
/* keyboard focus only — a mouse click must not pin the menu open */
@media (min-width: 769px) {
  .nav__item--sub:has(:focus-visible) .submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}
.submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.62rem 0.9rem;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
}
.submenu a + a { margin-top: 2px; }
.submenu a::after {
  content: '→';
  font-size: 0.85rem;
  color: var(--blue-dark);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.submenu a:hover { background: var(--blue-soft); color: var(--blue-dark); }
.submenu a:hover::after { opacity: 1; transform: translateX(0); }
.mega__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 0.9fr;
  gap: 2.5rem;
  padding: 2.2rem 0 2.4rem;
}
.mega__grid--4col {
  grid-template-columns: 1.1fr 1.1fr 1.1fr 0.9fr !important;
  gap: 2rem !important;
}
.mega__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #93a4ba;
  margin-bottom: 1rem;
}
.mega__label--light { color: #7c93b3; }
.mega__col { display: flex; flex-direction: column; gap: 0.25rem; }
.mega__link {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}
.mega__link:hover { background: var(--bg-tint); }
.mega__ic {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--blue-soft);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.mega__ic svg { width: 16px; height: 16px; fill: none; stroke: var(--blue-dark); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.mega__link strong { display: block; font-family: var(--font-head); font-size: 0.88rem; font-weight: 600; color: var(--navy-900); line-height: 1.3; }
.mega__link:hover strong { color: var(--blue-dark); }
.mega__link small { font-size: 0.76rem; color: var(--muted); line-height: 1.4; }
.mega__promo {
  background: linear-gradient(165deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}
.mega__promo h4 { color: var(--white); font-size: 1.05rem; line-height: 1.35; }
.mega__promo > p { font-size: 0.85rem; color: #b3c6dd; line-height: 1.6; }
.mega__contacts { display: grid; gap: 0.45rem; margin: 0.3rem 0 0.6rem; }
.mega__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}
.mega__contacts a:hover { color: var(--blue); }
.mega__contacts svg { width: 14px; height: 14px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mega__promo .btn { padding: 0.65rem 1.3rem; font-size: 0.86rem; }
.mega__loc { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 500; color: #a9bdd6; }
.mega__loc svg { width: 14px; height: 14px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mega__note { font-size: 0.74rem; color: #7c93b3; margin-top: 0.2rem; }


/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(165deg, var(--navy-950) 0%, var(--navy-900) 52%, var(--navy-800) 100%);
  overflow: hidden;
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 85% at 55% 0%, rgba(0,0,0,0.9), transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 55% 0%, rgba(0,0,0,0.9), transparent 72%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 620px; height: 620px;
  top: -220px; right: -100px;
  background: radial-gradient(circle, rgba(42, 167, 224, 0.26) 0%, transparent 70%);
}
.hero__glow--2 {
  width: 480px; height: 480px;
  bottom: -220px; left: -160px;
  background: radial-gradient(circle, rgba(18, 115, 184, 0.2) 0%, transparent 70%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 4.5rem;
  padding: 5.5rem 0 1rem;
}
.hero h1 { color: var(--white); }
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ad4f3;
  background: rgba(42, 167, 224, 0.1);
  border: 1px solid rgba(42, 167, 224, 0.3);
  border-radius: 999px;
  padding: 0.45rem 1.15rem;
  margin-bottom: 1.6rem;
}
.hero__pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(42, 167, 224, 0.6);
  animation: pulse 2.4s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(42, 167, 224, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(42, 167, 224, 0); }
  100% { box-shadow: 0 0 0 0 rgba(42, 167, 224, 0); }
}
.hero__lead { font-size: 1.08rem; color: #b3c6dd; margin: 1.5rem 0 2.3rem; max-width: 33rem; line-height: 1.75; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__badges { list-style: none; display: flex; gap: 1.6rem; flex-wrap: wrap; margin-top: 2.4rem; }
.hero__badges li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.86rem; font-weight: 500; color: #d6e3f2; }
.hero__badges svg { width: 17px; height: 17px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.hero__visual { position: relative; max-width: 520px; width: 100%; margin-top: 1.2rem; justify-self: center; }
.hero__card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, #eef6fc 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  padding: clamp(1.4rem, 2.4vw, 2.3rem);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(42, 167, 224, 0.15),
    0 0 90px rgba(42, 167, 224, 0.1);
  animation: floaty 8s ease-in-out infinite;
}
.hero__card img { width: 100%; }
.hero__chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.68rem 1.05rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}
.hero__chip--tl { top: 4%; left: -6%; animation: floaty 6.5s ease-in-out infinite; }
.hero__chip--br { bottom: 5%; right: -5%; animation: floaty 8.5s ease-in-out 0.9s infinite; }
.hero__chip-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 9px;
  background: var(--blue-soft);
  display: grid;
  place-items: center;
}
.hero__chip-icon svg { width: 19px; height: 19px; fill: none; stroke: var(--blue-dark); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero__chip strong { display: block; font-family: var(--font-head); font-size: 0.84rem; font-weight: 700; color: var(--navy-900); line-height: 1.25; }
.hero__chip small { font-size: 0.71rem; color: var(--muted); }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}


/* Trusted-by strip */
.hero__trust {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2.2rem;
  flex-wrap: wrap;
  padding: 1.6rem 0 5.5rem;
  border-top: 1px solid var(--line-dark);
}
.hero__trust-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6d84a3;
  flex-shrink: 0;
}
.hero__trust-logos { list-style: none; display: flex; gap: 2.2rem; flex-wrap: wrap; align-items: center; }
.hero__trust-logos li {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  transition: color 0.25s ease;
}
.hero__trust-logos li:hover { color: rgba(255, 255, 255, 0.85); }

/* ---------- Stats ---------- */
.stats { background: var(--white); padding: 0 0 1rem; display: flow-root; } /* flow-root keeps the card's negative margin from collapsing out through Elementor's wrappers */
.stats__card {
  position: relative;
  z-index: 5;
  margin-top: -3.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.6rem 2rem;
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { text-align: center; position: relative; }
.stat + .stat::before {
  content: '';
  position: absolute;
  left: -1rem; top: 50%;
  transform: translateY(-50%);
  height: 58%;
  width: 1px;
  background: var(--line);
}
.stat__value {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--blue-dark);
  line-height: 1.1;
}
.stat__label { color: var(--muted); font-size: 0.9rem; margin-top: 0.4rem; display: block; }

/* ---------- Sections ---------- */
.section { padding: 6.5rem 0; }
.section--tint { background: var(--bg-tint); }
.section--dark { background: linear-gradient(165deg, var(--navy-950) 0%, var(--navy-900) 100%); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section__head { max-width: 640px; margin-bottom: 3.5rem; }
.section__head p:not(.eyebrow) { color: var(--muted); margin-top: 0.9rem; font-size: 1.02rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }
.about__text p { color: var(--muted); margin-top: 1.1rem; }
.about__text p strong { color: var(--navy-800); }
.about__mission {
  margin-top: 2rem;
  background: var(--navy-900);
  color: #d6e3f2;
  padding: 1.7rem 1.9rem;
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 0.97rem;
  line-height: 1.75;
}
.about__points { display: grid; gap: 1.1rem; }
.point {
  display: flex;
  gap: 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.point:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(42, 167, 224, 0.35); }
.point__icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 11px;
  background: var(--blue-soft);
  display: grid;
  place-items: center;
}
.point__icon svg { width: 21px; height: 21px; fill: none; stroke: var(--blue-dark); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.point h3 { margin-bottom: 0.3rem; font-size: 1rem; }
.point p { font-size: 0.89rem; color: var(--muted); line-height: 1.65; }

/* ---------- Industries ---------- */
.industries { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.3rem; }
.industry {
  grid-column: span 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem 1.7rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.industry:nth-child(4) { grid-column: 2 / span 2; }
.industry:nth-child(5) { grid-column: 4 / span 2; }
.industry:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(42, 167, 224, 0.4); }
/* Clickable variant */
.industry--link { text-decoration: none; color: inherit; cursor: pointer; position: relative; }
.industry--link .industry__head h3::after {
  content: '→';
  display: inline-block;
  margin-left: 0.45rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.industry--link:hover .industry__head h3::after { opacity: 1; transform: translateX(0); }
.industry__head { display: flex; align-items: center; gap: 0.95rem; margin-bottom: 0.95rem; }
.industry__icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--blue-soft);
  display: grid;
  place-items: center;
  transition: transform 0.3s ease;
}
.industry:hover .industry__icon { transform: scale(1.08) rotate(-4deg); }
.industry__icon svg { width: 22px; height: 22px; fill: none; stroke: var(--blue-dark); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.industry h3 { font-size: 1.02rem; line-height: 1.3; }
.industry > p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; flex-grow: 1; }
.industry__clients {
  margin-top: 1.25rem;
  padding-top: 1.05rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.industry__clients small {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93a4ba;
  margin-right: 0.3rem;
}
.industry__clients span {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border: 1px solid rgba(42, 167, 224, 0.25);
  padding: 0.24rem 0.7rem;
  border-radius: 999px;
}

/* ---------- Capability cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(42, 167, 224, 0.4); }
.card:hover::before { transform: scaleX(1); }
.card__num {
  position: absolute;
  top: 1.4rem; right: 1.6rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: rgba(42, 167, 224, 0.32);
  letter-spacing: 0.05em;
}
.card__icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--blue-soft);
  display: grid;
  place-items: center;
  margin-bottom: 1.35rem;
  transition: transform 0.3s ease;
}
.card:hover .card__icon { transform: scale(1.08) rotate(-4deg); }
.card__icon svg { width: 24px; height: 24px; fill: none; stroke: var(--blue-dark); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-bottom: 0.55rem; }
.card p { font-size: 0.91rem; color: var(--muted); line-height: 1.7; }

/* ---------- Steps / How we work ---------- */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.steps::before {
  content: '';
  position: absolute;
  top: 58px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 167, 224, 0.45), rgba(42, 167, 224, 0.45), transparent);
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 1.6rem 1.9rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(42, 167, 224, 0.4); }
.step__num {
  width: 58px; height: 58px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(42, 167, 224, 0.5);
  box-shadow: 0 0 0 5px var(--white), 0 6px 16px rgba(42, 167, 224, 0.2);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  background-image: linear-gradient(135deg, #56c2f0, var(--blue-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.step h3 { font-size: 1.02rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ---------- Solutions store ---------- */
.store { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.sku {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem 1.9rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.sku:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(42, 167, 224, 0.4); }
.sku--featured {
  background: linear-gradient(165deg, var(--navy-900), var(--navy-800));
  border-color: rgba(42, 167, 224, 0.35);
  box-shadow: 0 20px 48px rgba(11, 31, 58, 0.35), 0 0 44px rgba(42, 167, 224, 0.12);
}
.sku--featured h3 { color: var(--white); }
.sku--featured > p { color: #b3c6dd; }
.sku__badge {
  position: absolute;
  top: -12px; left: 1.9rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(42, 167, 224, 0.35);
}
.sku__icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--blue-soft);
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
  transition: transform 0.3s ease;
}
.sku:hover .sku__icon { transform: scale(1.08) rotate(-4deg); }
.sku--featured .sku__icon { background: rgba(42, 167, 224, 0.16); }
.sku__icon svg { width: 24px; height: 24px; fill: none; stroke: var(--blue-dark); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sku--featured .sku__icon svg { stroke: var(--blue); }
.sku h3 { margin-bottom: 0.5rem; }
.sku > p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.sku__features {
  list-style: none;
  margin: 1.2rem 0 1.4rem;
  display: grid;
  gap: 0.55rem;
  flex-grow: 1;
}
.sku__features li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.87rem;
  color: var(--muted);
}
.sku--featured .sku__features li { color: #b3c6dd; }
.sku__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.28em;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231273b8' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 9px no-repeat;
}
.sku--featured .sku__features li::before { background-color: rgba(42, 167, 224, 0.18); }
.sku__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}
.sku--featured .sku__foot { border-top-color: var(--line-dark); }
.sku__price small {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93a4ba;
}
.sku__price strong {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy-900);
}
.sku--featured .sku__price strong { color: var(--white); }


/* ---------- Store page extras ---------- */
.sku__brand {
  position: absolute;
  top: 1.15rem; right: 1.3rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #93a4ba;
}
.sku--featured .sku__brand { color: #7c93b3; }

.sku__photo {
  position: relative;
  height: 150px;
  border-radius: 9px;
  background:
    radial-gradient(ellipse 80% 120% at 70% -20%, rgba(42, 167, 224, 0.14), transparent 60%),
    linear-gradient(160deg, #f2f7fc, #e4eef8);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.sku__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.sku__photo svg { width: 42px; height: 42px; fill: none; stroke: #9dc4e4; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.sku__photo-brand {
  position: absolute;
  bottom: 0.7rem; left: 0.9rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7d9cbe;
}

.filter { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter__btn {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter__btn:hover { color: var(--blue-dark); border-color: var(--blue); }
.filter__btn.is-active {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(42, 167, 224, 0.3);
}
.sku.is-hidden { display: none; }
.store__note {
  margin-top: 2.2rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ---------- Track record ---------- */
.track__total {
  text-align: right;
  background: rgba(42, 167, 224, 0.08);
  border: 1px solid rgba(42, 167, 224, 0.3);
  border-radius: var(--radius);
  padding: 1rem 1.7rem;
}
.track__total span {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(92deg, #56c2f0, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.track__total small { color: #a9bdd6; font-size: 0.8rem; }
.track__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.track {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.9rem 1.8rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.track:hover { transform: translateY(-4px); border-color: rgba(42, 167, 224, 0.45); background: rgba(42, 167, 224, 0.06); }
.track__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.9rem; gap: 0.5rem; flex-wrap: wrap; }
.track__value {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: linear-gradient(92deg, #56c2f0, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.track__years { font-size: 0.78rem; color: #7c93b3; font-style: italic; }
.track h3 { font-size: 1.03rem; margin-bottom: 0.55rem; }
.track p { font-size: 0.87rem; color: #b3c6dd; line-height: 1.7; }
.track--cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(42, 167, 224, 0.12), rgba(42, 167, 224, 0.04));
  border: 1px dashed rgba(42, 167, 224, 0.45);
}
.track--cta .btn { margin-top: 0.7rem; }

/* ---------- Partners marquee ---------- */
.logo-marquee {
  overflow: hidden;
  padding: 1.1rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.logo-marquee--first { padding-top: 1.4rem; }
.logo-marquee--last { padding-bottom: 1.6rem; }
.logo-track--rev { animation-direction: reverse; }
.logo-track {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 6vw, 5.5rem);
  width: max-content;
  animation: marquee 45s linear infinite;
  padding-right: clamp(3rem, 6vw, 5.5rem);
}
.logo-track:hover { animation-play-state: paused; }
.logo-track img,
.logo-marquee .logo-track img { /* beats Elementor's `img { max-width:100%; height:auto }` */
  height: 42px;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.logo-track img:hover { filter: grayscale(0); opacity: 1; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}


/* ---------- Women-owned seal ---------- */
.wo-badge {
  position: absolute;
  top: -30px; right: -26px;
  width: 118px; height: 118px;
  z-index: 3;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  border: 1px solid rgba(42, 167, 224, 0.5);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.4), 0 0 34px rgba(42, 167, 224, 0.25);
  display: grid;
  place-items: center;
}
.wo-badge__ring {
  position: absolute;
  inset: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  animation: wospin 24s linear infinite;
}
.wo-badge__ring text {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  fill: #9ad4f3;
}
.wo-badge__center {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(42, 167, 224, 0.16);
  border: 1px solid rgba(42, 167, 224, 0.45);
  display: grid;
  place-items: center;
}
.wo-badge__center svg { width: 22px; height: 22px; fill: none; stroke: #5bc6f2; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
@keyframes wospin { to { transform: rotate(360deg); } }

/* ---------- Certifications ---------- */
.certs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.cert {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.cert:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(42, 167, 224, 0.4); }
.cert__logo {
  height: 96px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin: 0 auto 1.4rem;
}
.cert h3 { font-size: 1rem; margin-bottom: 0.55rem; }
.cert p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }
.gov-ids {
  margin-top: 2.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  background: var(--navy-900);
  color: #d6e3f2;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.15rem 2rem;
  font-size: 0.9rem;
}
.gov-ids strong { color: var(--blue); font-weight: 700; }
.gov-ids__sep { width: 1px; height: 16px; background: rgba(255, 255, 255, 0.18); }


/* ---------- Insights / posts ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.post {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(42, 167, 224, 0.4); }
.post__cover {
  position: relative;
  height: 148px;
  background:
    radial-gradient(ellipse 70% 120% at 85% -10%, rgba(42, 167, 224, 0.35), transparent 60%),
    linear-gradient(150deg, var(--navy-900), var(--navy-800));
  display: grid;
  place-items: center;
}
.post__cover--alt {
  background:
    radial-gradient(ellipse 70% 120% at 15% -10%, rgba(42, 167, 224, 0.32), transparent 60%),
    linear-gradient(210deg, var(--navy-900), var(--navy-700));
}
.post__cover--news {
  background:
    radial-gradient(ellipse 80% 130% at 50% 120%, rgba(42, 167, 224, 0.3), transparent 65%),
    linear-gradient(165deg, var(--navy-950), var(--navy-800));
}
.post__cover svg {
  width: 44px; height: 44px;
  fill: none; stroke: rgba(91, 198, 242, 0.65);
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.post:hover .post__cover svg { transform: scale(1.12); }
.post__tag {
  position: absolute;
  top: 1rem; left: 1.1rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ad4f3;
  background: rgba(42, 167, 224, 0.14);
  border: 1px solid rgba(42, 167, 224, 0.4);
  padding: 0.26rem 0.75rem;
  border-radius: 999px;
}
.post__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex-grow: 1; }
.post__date {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #93a4ba;
  margin-bottom: 0.6rem;
}
.post h3 { font-size: 1.04rem; line-height: 1.4; margin-bottom: 0.6rem; transition: color 0.2s ease; }
.post:hover h3 { color: var(--blue-dark); }
.post__body > p { font-size: 0.89rem; color: var(--muted); line-height: 1.65; flex-grow: 1; }
.post__link {
  margin-top: 1.2rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--blue-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.post__link span { transition: transform 0.2s ease; }
.post__link:hover span { transform: translateX(4px); }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4.5rem; align-items: start; }
.faq__intro p:not(.eyebrow) { color: var(--muted); margin-top: 0.9rem; }
.faq__link { color: var(--blue-dark); font-weight: 600; }
.faq__link:hover { color: var(--blue); }
.faq__list { display: grid; gap: 0.9rem; }
.faq {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq[open] { border-color: rgba(42, 167, 224, 0.45); box-shadow: var(--shadow-md); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy-900);
  padding: 1.25rem 1.5rem;
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blue-dark); }
.faq__chevron {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.faq__chevron::before, .faq__chevron::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--blue-dark);
  border-radius: 1px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq__chevron::before { width: 10px; height: 2px; transform: translate(-50%, -50%); }
.faq__chevron::after { width: 2px; height: 10px; transform: translate(-50%, -50%); }
.faq[open] .faq__chevron { transform: rotate(45deg); background: var(--blue-soft); border-color: rgba(42, 167, 224, 0.45); }
.faq > p { padding: 0 1.5rem 1.35rem; font-size: 0.92rem; color: var(--muted); line-height: 1.75; }

/* ---------- CTA / Contact band ---------- */
.cta {
  position: relative;
  background:
    radial-gradient(ellipse 45% 90% at 88% 15%, rgba(42, 167, 224, 0.22), transparent 62%),
    radial-gradient(ellipse 40% 80% at 8% 110%, rgba(18, 115, 184, 0.2), transparent 60%),
    linear-gradient(118deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 75% 120% at 80% 50%, rgba(0,0,0,0.9), transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 75% 120% at 80% 50%, rgba(0,0,0,0.9), transparent 70%);
  pointer-events: none;
}
.cta::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  right: 3%;
  top: 50%;
  transform: translateY(-50%) rotate(8deg);
  background-image: radial-gradient(rgba(42, 167, 224, 0.4) 4px, transparent 4.5px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at 60% 40%, rgba(0,0,0,0.55), transparent 68%);
  -webkit-mask-image: radial-gradient(circle at 60% 40%, rgba(0,0,0,0.55), transparent 68%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 4.6rem 0;
}
.cta h2 { color: var(--white); max-width: 26ch; }
.cta p { color: #b3c6dd; margin-top: 0.7rem; }
.cta__actions { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }
.cta__channels { display: grid; gap: 0.55rem; }
.cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--white);
  font-size: 0.98rem;
  transition: color 0.2s ease;
}
.cta__phone:hover { color: var(--blue); }
.cta__phone svg { width: 18px; height: 18px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: #8ba1bd; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 4.5rem 0 3.2rem;
}
.footer__logo-link { display: inline-block; margin-bottom: 1.2rem; }
.footer__logo { height: 42px; width: auto; }
.footer__brand p { font-size: 0.9rem; max-width: 32ch; line-height: 1.75; }
.footer__col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__col h4 { color: var(--white); font-size: 0.92rem; margin-bottom: 0.45rem; letter-spacing: 0.02em; }
.footer__col a, .footer__col span { font-size: 0.89rem; transition: color 0.2s ease; }
.footer__col a:hover { color: var(--blue); }
.footer__bottom { border-top: 1px solid var(--line-dark); padding: 1.4rem 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative;
  background: linear-gradient(165deg, var(--navy-950) 0%, var(--navy-900) 60%, var(--navy-800) 100%);
  overflow: hidden;
  padding: 4.5rem 0 4.8rem;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 100% at 70% 0%, rgba(0,0,0,0.9), transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 70% 0%, rgba(0,0,0,0.9), transparent 72%);
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  top: -200px; right: -60px;
  border-radius: 50%;
  filter: blur(100px);
  background: radial-gradient(circle, rgba(42, 167, 224, 0.24) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__facts { display: grid; gap: 0.9rem; }
.ph-fact {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.05rem 1.3rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.ph-fact__ic {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(42, 167, 224, 0.14);
  border: 1px solid rgba(42, 167, 224, 0.3);
  display: grid;
  place-items: center;
}
.ph-fact__ic svg { width: 19px; height: 19px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ph-fact strong { display: block; font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--white); line-height: 1.3; }
.ph-fact small { font-size: 0.78rem; color: #a9bdd6; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #7c93b3;
  margin-bottom: 1.3rem;
}
.breadcrumb a { color: #a9bdd6; transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span[aria-hidden] { color: #4a5f7d; }
.breadcrumb strong { color: var(--blue); font-weight: 600; }
.page-hero h1 { color: var(--white); font-size: clamp(2.1rem, 3.6vw, 3rem); }
.page-hero__lead { color: #b3c6dd; font-size: 1.06rem; margin-top: 1.2rem; max-width: 36rem; line-height: 1.75; }

/* ---------- Service detail sections ---------- */
.svc { padding: 5.5rem 0; }
.svc--tint { background: var(--bg-tint); }
.svc__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}
.svc--flip .svc__grid > .svc__text { order: 2; }
.svc--flip .svc__grid > .svc__panel { order: 1; }
/* mirror the track widths too, so the panel keeps its size when flipped */
.svc--flip .svc__grid { grid-template-columns: 0.85fr 1.15fr; }
.svc__text h2 { margin-bottom: 1rem; }
.svc__text > p { color: var(--muted); }
.svc__features { list-style: none; margin-top: 1.6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.4rem; }
.svc__features li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}
.svc__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.24em;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231273b8' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 9px no-repeat;
}
.svc__text .btn { margin-top: 1.9rem; }
.svc__panel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 2.4rem 2.2rem;
  overflow: hidden;
}
.svc--tint .svc__panel { box-shadow: var(--shadow-sm); }
.svc__panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-dark));
}
.svc__panel-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-soft), #d3ebf9);
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
}
.svc__panel-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--blue-dark); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.svc__panel h3 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #93a4ba; margin-bottom: 0.9rem; }
.svc__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.svc__tags span {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border: 1px solid rgba(42, 167, 224, 0.25);
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
}
.svc__num {
  position: absolute;
  bottom: 0.6rem; right: 1.4rem;
  font-family: var(--font-head);
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(42, 167, 224, 0.09);
  pointer-events: none;
}

/* ---------- Reveal animations ----------
   Hidden state only applies once JS has run (html.js-on), so content stays
   visible even if scripts are deferred, delayed, or blocked. */
.js-on .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-on .reveal--delay { transition-delay: 0.15s; }
.js-on .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Elementor's global image reset (`.elementor img { height:auto; max-width:100% }`)
   must not override the design system's image sizing inside widget content. */
.elementor .cert__logo { height: 96px; width: auto; max-width: 200px; }
.elementor .header__brand img { height: 40px; width: auto; }
.elementor .footer__logo { height: 42px; width: auto; }
.elementor .sku__photo img { width: 100%; height: 100%; }
.elementor .post__cover img { width: 100%; height: 100%; }
.elementor .hero__card img { width: 100%; height: auto; }
.elementor .logo-track img { height: 42px; width: auto; max-width: none; }

/* Mega menus are edited in their own library template — inside the header
   editor the dropdown stays closed and a small note marks it instead. */
.elementor-editor-active .nav__item--mega .mega,
.elementor-editor-active .nav__item--sub .submenu { display: none !important; }
.nav__mega-note { display: none; }
.elementor-editor-active .nav__mega-note {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 0.2rem 0.5rem;
  margin-left: 0.35rem;
  border: 1px dashed var(--blue);
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  white-space: nowrap;
}

/* Inside the Elementor editor, widgets are injected after our reveal
   observer has run — keep everything visible there. */
.elementor-editor-active .reveal,
.elementor-edit-area .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__card, .hero__chip, .hero__pill-dot { animation: none; }
  .logo-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .wo-badge__ring { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .industries { grid-template-columns: repeat(2, 1fr); }
  .industry, .industry:nth-child(4), .industry:nth-child(5) { grid-column: auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding: 4rem 0 4rem; }
  .hero__lead { margin-inline: auto; }
  .hero__actions, .hero__badges { justify-content: center; }
  .hero__visual { max-width: 460px; margin-inline: auto; margin-top: 1.5rem; }
  .hero__chip--tl { left: -2%; }
  .hero__chip--br { right: -2%; }
  .hero__trust { justify-content: center; text-align: center; padding-bottom: 4.5rem; }
  .about__grid, .faq__grid { grid-template-columns: 1fr; gap: 2.8rem; }
  .page-hero__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .svc { padding: 4rem 0; }
  .svc__grid, .svc--flip .svc__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .svc--flip .svc__grid > .svc__text { order: 1; }
  .svc--flip .svc__grid > .svc__panel { order: 2; }
  .mega__grid { grid-template-columns: 1fr 1fr; }
  .mega__grid--4col { grid-template-columns: 1fr 1fr 1fr !important; }
  .mega__promo { display: none; }
  .cards, .store, .track__grid, .certs, .posts { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .topbar__inner { justify-content: center; }
  .topbar__certs { display: none; }

  /* backdrop-filter turns .header into the containing block for the fixed
     drawer, anchoring it to the header box instead of the viewport */
  .header { backdrop-filter: none; -webkit-backdrop-filter: none; }

  .nav {
    position: fixed;
    top: 0; right: 0;
    transform: translateX(100%);
    visibility: hidden;
    width: min(320px, 82vw);
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5.5rem 2rem 2rem;
    gap: 1.4rem;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s ease, visibility 0.35s;
    z-index: 200;
  }
  .nav.is-open { transform: translateX(0); visibility: visible; }

  /* Dark backdrop when nav drawer is open. Must stay BELOW .header
     (z-index 100): the drawer lives inside the header's stacking context,
     so an overlay above 100 would dim the drawer and swallow its clicks. */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 90;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  .nav-overlay.is-active { display: block; }
  .nav > a:not(.btn) { font-size: 1.05rem; }

  /* mega menu becomes an in-drawer accordion */
  .nav__item--mega { flex-direction: column; align-items: stretch; width: 100%; }
  /* chevron sits right next to the label, not on the far drawer edge */
  .nav__mega-toggle { font-size: 1.05rem; justify-content: flex-start; gap: 0.5rem; width: 100%; }
  .mega {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    display: none;
    max-height: 55vh;
    overflow-y: auto;
  }
  .nav__item--mega.is-open .mega { display: block; }

  /* simple submenus render inline (indented) inside the drawer */
  .nav__item--sub { flex-direction: column; align-items: stretch; width: 100%; }
  .submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    min-width: 0;
    padding: 0 0 0.4rem 1rem;
    display: none;
  }
  /* beat the desktop :hover/.is-open rules (higher specificity than the
     bare .submenu reset above) — translate(-50%) would shove the static
     submenu out of the drawer */
  .nav__item--sub:hover .submenu,
  .nav__item--sub.is-open .submenu { transform: none; }
  .nav__item--sub.is-open .submenu { display: block; }
  .submenu::before, .submenu::after { display: none; }
  .submenu a { white-space: normal; }
  .submenu a::after { display: none; }

  .mega__grid { grid-template-columns: 1fr; gap: 1.2rem; padding: 0.8rem 0 0.4rem; width: 100%; }
  .mega__promo { display: none; }
  .mega__link { padding: 0.45rem 0.3rem; }

  /* Chevron tap target enlarged on mobile for --link toggles */
  .nav__mega-toggle--link .nav__chev {
    padding: 8px;
    margin: -8px;
    width: 31px;
    height: 31px;
  }

  .nav-toggle { display: block; position: relative; z-index: 201; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__chip { padding: 0.55rem 0.85rem; }
  .hero__chip--tl { left: 0; top: -1.4rem; }
  .hero__chip--br { right: 0; bottom: -1.2rem; }
  .wo-badge { width: 92px; height: 92px; top: -38px; right: 2px; }
  .wo-badge__ring text { font-size: 11.5px; }
  .wo-badge__center { width: 36px; height: 36px; }
  .hero__trust-logos { gap: 1.3rem; justify-content: center; }

  .stats__card { margin-top: -3rem; padding: 1.9rem 1.2rem; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .stat + .stat::before { display: none; }

  .section { padding: 4.2rem 0; }
  .industries { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cards, .store, .track__grid, .certs, .posts { grid-template-columns: 1fr; }
  .sku--featured { order: -1; }
  .gov-ids { flex-direction: column; text-align: center; gap: 0.8rem; }
  .gov-ids__sep { display: none !important; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; padding: 3.2rem 0 2.2rem; }
  .footer__bottom-inner { justify-content: center; text-align: center; }
  .section__head--split { flex-direction: column; align-items: flex-start; }
  .track__total { text-align: left; }
}

@media (max-width: 520px) {
  .industries { grid-template-columns: 1fr; }
}


/* ===================== WordPress integration ===================== */
/* Elementor-rendered header: stickiness lives on the theme wrapper (the
   widget's own wrappers are too short for position:sticky to work inside).
   -42px keeps the topbar scrolling away while the nav bar sticks. The
   widget's "Sticky header" switch adds .header--static to turn this off. */
.cm-site-header { position: sticky; top: -42px; z-index: 200; }
.cm-site-header:has(.header--static) { position: static; }
body.admin-bar .cm-site-header { top: -10px; }
@media (max-width: 768px) {
  .cm-site-header { top: 0; }
}
/* Prevent Elementor section wrappers from breaking sticky */
.cm-site-header .elementor-section-wrap,
.cm-site-header .elementor-section,
.cm-site-header .elementor-widget-wrap,
.cm-site-header .elementor-widget-container { overflow: visible !important; }

body.admin-bar .header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .header { top: 46px; } }

.prose { max-width: 760px; margin-inline: auto; }
.prose h1, .prose h2, .prose h3 { margin: 1.6em 0 .6em; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.1em; color: var(--muted); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose img { border-radius: var(--radius); }
.prose a:not(.btn) { color: var(--blue-dark); font-weight: 600; }
.prose a.btn--primary { color: var(--white); }

.page-plain { padding: 4.5rem 0 6rem; }
.page-plain .entry-title { margin-bottom: 1.2rem; }
.post-meta-line { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: #93a4ba; font-weight: 600; margin-bottom: .9rem; }

/* Elementor compatibility: let Elementor sections span full width */
.elementor-page .site-content { width: 100%; }

/* Slim page hero for posts, whitepapers & plain pages */
.page-hero--slim { padding: 3.4rem 0 3.8rem; }
.page-hero--slim h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); max-width: 22ch; }
.page-hero__meta {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7c93b3;
}
.page-plain { padding: 3.8rem 0 5.5rem; }

/* Elementor shortcode-embed sections (store grid / insights on builder pages) */
.cm-embed { padding: 0 0 5.5rem; }
.cm-embed--tint { background: var(--bg-tint); }
.cm-embed .store__note { margin-top: 2rem; }


/* ---------- Topbar cart & account ---------- */
.topbar__inner { flex-wrap: nowrap; }
.topbar__icons { display: flex; align-items: center; gap: 1rem; margin-left: 1.1rem; padding-left: 1.1rem; border-left: 1px solid rgba(255,255,255,0.12); }
.topbar__icon { position: relative; display: inline-flex; align-items: center; }
.topbar__icon svg { width: 16px; height: 16px; stroke: #a9bdd6; transition: stroke .2s ease; }
.topbar__icon:hover svg { stroke: var(--blue); }
.topbar__icon-count {
  position: absolute; top: 1px; right: -7px;
  width: 15px; height: 15px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff; font-size: 9px; font-weight: 700;
  display: flex !important; align-items: center; justify-content: center;
  border-radius: 50%; box-sizing: border-box; line-height: 1 !important;
}
@media (max-width: 768px) {
  /* one clean line: email left, cart + account right */
  .topbar { padding: 0.5rem 1.2rem !important; overflow: visible; }
  .topbar__inner { width: 100% !important; max-width: none !important; margin: 0 !important; flex-wrap: nowrap; align-items: center; gap: 1rem; }
  .topbar__contacts { flex: 1; min-width: 0; }
  .topbar__contacts a[href^="tel:"],
  .topbar__loc,
  .topbar__certs { display: none; }
  .topbar__contacts a { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .topbar__right { flex-shrink: 0; }
  .topbar__icons { border-left: none; padding-left: 0; }
}
.sku .btn--buy { padding: 0.55rem 1.15rem; font-size: 0.84rem; }

/* ================= WooCommerce cart / checkout / account ================= */
/* Scope generic rules to WooCommerce's content wrapper (div.woocommerce), NOT the
   body.woocommerce class — otherwise they leak into the header/topbar/footer. */
div.woocommerce { font-family: var(--font-body); }
.woocommerce-cart .container > h1, .woocommerce-checkout .container > h1, .woocommerce-account .container > h1,
.page-plain .woocommerce h2, div.woocommerce h3 { font-family: var(--font-head); color: var(--navy-900); }
div.woocommerce a { color: var(--blue-dark); }
.woocommerce form .form-row label { font-size: .82rem; font-weight: 600; color: var(--navy-800); }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce form .form-row .select2-selection {
  background: var(--bg-tint); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .72rem .95rem; font-size: .92rem; color: var(--ink); height: auto;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42,167,224,.16); background: var(--white);
}
.woocommerce .select2-container--default .select2-selection--single { border: 1px solid var(--line); border-radius: var(--radius-sm); height: 44px; }
.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 44px; padding-left: .95rem; }
.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow { height: 42px; }

.woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit, .woocommerce button.button.alt, .woocommerce a.button.alt {
  font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border: none; border-radius: var(--radius-sm); padding: .8rem 1.6rem;
  box-shadow: 0 1px 2px rgba(18,115,184,.4), 0 8px 24px rgba(42,167,224,.3);
  transition: transform .25s ease, box-shadow .25s ease;
}
.woocommerce a.button:hover, .woocommerce button.button:hover,
.woocommerce button.button.alt:hover, .woocommerce a.button.alt:hover {
  transform: translateY(-2px); color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  box-shadow: 0 2px 4px rgba(18,115,184,.4), 0 14px 32px rgba(42,167,224,.4);
}
.woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled] {
  background: var(--line); color: var(--muted); box-shadow: none; padding: .8rem 1.6rem;
}

.woocommerce table.shop_table {
  width: 100%;
  border: 1px solid var(--line) !important; border-radius: var(--radius); border-collapse: separate;
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.woocommerce table.shop_table th { font-family: var(--font-head); color: var(--navy-900); background: var(--bg-tint); }
.woocommerce table.shop_table td, .woocommerce table.shop_table th { border-color: var(--line) !important; padding: .9rem 1rem; }
.woocommerce table.shop_table td.product-name a { color: var(--navy-900); font-weight: 600; }
.woocommerce .quantity .qty { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .45rem; width: 4.2em; }
.woocommerce a.remove { color: var(--muted) !important; }
.woocommerce a.remove:hover { background: transparent !important; color: #d33 !important; }
.woocommerce .coupon .input-text { min-width: 180px; }

.woocommerce .cart_totals, .woocommerce-checkout #payment {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.woocommerce .cart_totals { padding: 1.4rem 1.6rem; }
.woocommerce .cart_totals h2 { font-size: 1.15rem; margin-bottom: .8rem; }
.woocommerce-checkout #payment { padding: 1.25rem 1.4rem 1.4rem; }
.woocommerce-checkout #payment div.payment_box {
  background: var(--bg-tint); border-radius: 10px; color: var(--muted);
  padding: 0.9rem 1.05rem; margin: 0.55rem 0 0; font-size: 0.87rem; line-height: 1.65;
}
.woocommerce-checkout #payment div.payment_box::before { border-bottom-color: var(--bg-tint); }
.woocommerce-checkout #payment ul.payment_methods { border-bottom: 1px solid var(--line); }
.woocommerce-checkout #payment ul.payment_methods label {
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  color: var(--navy-900); display: inline-block; margin-bottom: 0.15rem;
}
.woocommerce-checkout #payment .woocommerce-privacy-policy-text p {
  font-size: 0.82rem; color: var(--muted); line-height: 1.65; margin: 0 0 1.2rem;
}
.woocommerce #payment #place_order { width: 100%; font-size: 1rem; padding: 1rem; }

.woocommerce-checkout h3, .woocommerce-billing-fields h3 { font-size: 1.15rem; margin: 1.4rem 0 .9rem; }
.woocommerce-checkout-review-order-table { margin-top: .4rem; }

.woocommerce-message, .woocommerce-info, .woocommerce-error {
  border-top: 3px solid var(--blue); background: var(--bg-tint);
  border-radius: var(--radius-sm); color: var(--ink); font-size: .92rem;
}
.woocommerce-message::before, .woocommerce-info::before { color: var(--blue); }
.woocommerce-error { border-top-color: #d33; }
.woocommerce-message .button { padding: .45rem 1rem; font-size: .8rem; }

/* account */
.woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; display: grid; gap: .4rem; }
.woocommerce-MyAccount-navigation li a {
  display: block; padding: .65rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: var(--ink); font-weight: 500; font-size: .92rem; transition: all .2s ease;
}
.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover { border-color: var(--blue); color: var(--blue-dark); background: var(--blue-soft); }
.woocommerce-MyAccount-content { color: var(--muted); }


/* ---------- Cart & checkout layout: items left, totals right ---------- */
.woocommerce-cart .page-plain .woocommerce,
.woocommerce-page .page-plain .woocommerce { max-width: none; }
.woocommerce-cart .woocommerce {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 2rem;
  align-items: start;
}
.woocommerce-cart .woocommerce > .woocommerce-notices-wrapper,
.woocommerce-cart .woocommerce > .woocommerce-message,
.woocommerce-cart .woocommerce > .woocommerce-error,
.woocommerce-cart .woocommerce > .woocommerce-info { grid-column: 1 / -1; }
.woocommerce-cart form.woocommerce-cart-form { grid-column: 1; margin: 0; }
.woocommerce-cart .cart-collaterals { grid-column: 2; }
.woocommerce-cart .cart-collaterals .cart_totals { width: 100%; float: none; }
.woocommerce-cart .cart_totals table.shop_table { box-shadow: none; border: none !important; }
.woocommerce-cart .cart_totals .wc-proceed-to-checkout { padding: 1rem 0 0; }
.woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button { width: 100%; text-align: center; font-size: 1rem; padding: 1rem; }

form.woocommerce-checkout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto 1fr; /* row 1 hugs the heading so the order box sits at the top */
  gap: 0 2.6rem;
  align-items: start;
}
form.woocommerce-checkout #customer_details { grid-column: 1; grid-row: 1 / span 2; }
form.woocommerce-checkout #order_review_heading { grid-column: 2; grid-row: 1; margin-top: 0; }
form.woocommerce-checkout #order_review { grid-column: 2; grid-row: 2; }
form.woocommerce-checkout #customer_details .col-1,
form.woocommerce-checkout #customer_details .col-2 { width: 100%; float: none; }

@media (max-width: 900px) {
  .woocommerce-cart .woocommerce, form.woocommerce-checkout { grid-template-columns: 1fr; }
  .woocommerce-cart .cart-collaterals, form.woocommerce-checkout #order_review_heading,
  form.woocommerce-checkout #order_review { grid-column: 1; }
  form.woocommerce-checkout #customer_details { grid-row: auto; }
  form.woocommerce-checkout #order_review_heading { grid-row: auto; margin-top: 2rem; }
  form.woocommerce-checkout #order_review { grid-row: auto; }
}

/* ---------- Product thumbnails in cart ---------- */
.cm-thumb {
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--blue-soft), #d3ebf9);
  border: 1px solid rgba(42, 167, 224, 0.25);
}
.cm-thumb svg { width: 26px; height: 26px; fill: none; stroke: var(--blue-dark); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cm-thumb--lg { width: 96px; height: 96px; border-radius: 16px; }
.cm-thumb--lg svg { width: 38px; height: 38px; }
.woocommerce table.shop_table td.product-thumbnail img { width: 64px; height: 64px; object-fit: cover; border-radius: 12px; }
.woocommerce table.shop_table td.product-thumbnail { width: 84px; }
.woocommerce table.shop_table td { vertical-align: middle; }

.topbar__right { display: flex; align-items: center; }


/* ---------- Cart table polish ---------- */
.woocommerce table.shop_table th { text-align: left; }
.woocommerce table.shop_table td.product-remove { width: 34px; }
.woocommerce table.shop_table td.product-name { min-width: 200px; font-family: var(--font-head); }
.woocommerce table.shop_table td.product-name a { font-size: .95rem; }
.woocommerce-cart-form .actions { padding-top: 1.1rem !important; }
.woocommerce-cart-form .coupon { display: inline-flex; gap: .6rem; align-items: center; float: left; }
.woocommerce-cart-form .coupon .input-text {
  background: var(--bg-tint); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .68rem .95rem; font-size: .9rem; min-width: 190px; width: auto;
}
.woocommerce-cart-form .actions > .button { float: right; }
.woocommerce-cart .cart_totals h2 { font-size: 1.1rem; }
.woocommerce-cart .cart_totals table.shop_table th { background: transparent; }

/* topbar icon spacing hardened against stale rules */
.topbar__icons { flex-shrink: 0; }
.topbar__icons .topbar__icon + .topbar__icon { margin-left: 1rem; }
.topbar__icon svg { display: block; }

/* ---------- Empty cart state ---------- */
.woocommerce-cart .woocommerce > .cart-empty,
.woocommerce-cart .woocommerce > .wc-empty-cart-message,
.woocommerce-cart .woocommerce > .return-to-shop { grid-column: 1 / -1; }
.woocommerce .cart-empty.woocommerce-info,
.woocommerce .wc-empty-cart-message .cart-empty {
  display: block;
  background: none !important;
  border: none !important;
  text-align: center;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-900);
  padding: 3rem 0 0.4rem !important;
  margin: 0;
}
.woocommerce .cart-empty.woocommerce-info::before {
  content: '';
  display: block;
  position: static;
  width: 78px; height: 78px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231273b8' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") center / 34px no-repeat;
}
.woocommerce .return-to-shop {
  text-align: center;
  padding: 0.4rem 0 3.5rem;
  margin: 0;
}

/* hard separation for topbar icons */
.topbar .topbar__icons { display: inline-flex !important; gap: 1.3rem !important; align-items: center; }
.topbar .topbar__icons a.topbar__icon { display: inline-flex !important; width: 18px; height: 18px; align-items: center; justify-content: center; margin: 0 !important; }
.topbar .topbar__icons a.topbar__icon svg { width: 17px !important; height: 17px !important; }
.topbar__icon-count { right: -7px !important; top: 1px !important; }

/* ---------- Notices: message left, action right ---------- */
.woocommerce-message, .woocommerce-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.1rem 0.8rem 1.4rem !important;
  border: 1px solid rgba(42, 167, 224, 0.35);
  border-top: 1px solid rgba(42, 167, 224, 0.35);
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--navy-900);
  font-weight: 500;
  margin-bottom: 1.6rem;
}
.woocommerce-message::before, .woocommerce-info::before { display: none; }
.woocommerce-message .button, .woocommerce-info .button {
  flex-shrink: 0;
  order: 2;
  margin: 0 0 0 auto;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  box-shadow: none;
}

/* hero titles always white, even on body.woocommerce pages */
.page-hero h1 { color: var(--white) !important; }

/* ---------- My Account layout: nav left, content right ---------- */
.woocommerce-account .page-plain .woocommerce:has(.woocommerce-MyAccount-navigation) {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2.6rem;
  align-items: start;
}
.woocommerce-account .woocommerce-MyAccount-navigation { grid-column: 1; }
.woocommerce-account .woocommerce-MyAccount-content { grid-column: 2; color: var(--muted); }
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 { margin: 1.2rem 0 .7rem; font-size: 1.1rem; }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .col-1,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .col-2 { width: 48%; }
.woocommerce-account .woocommerce-MyAccount-content address {
  background: var(--bg-tint); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1rem 1.2rem; font-style: normal;
}
@media (max-width: 900px) {
  .woocommerce-account .page-plain .woocommerce:has(.woocommerce-MyAccount-navigation) { grid-template-columns: 1fr; }
  .woocommerce-account .woocommerce-MyAccount-content { grid-column: 1; }
}

/* login / register card (logged-out account page) */
.woocommerce form.login, .woocommerce form.register, .woocommerce-ResetPassword {
  max-width: 460px;
  margin: 0.5rem auto 1rem;
  background: var(--white);
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  padding: 2rem !important;
  box-shadow: var(--shadow-sm);
}
.woocommerce-account .woocommerce > h2,
.woocommerce-account #customer_login h2 { text-align: center; font-size: 1.3rem; }
.woocommerce-account .woocommerce-MyAccount-content h2 { text-align: left; }
.woocommerce form.login .woocommerce-form-login__rememberme { display: block; margin-bottom: .8rem; }
.woocommerce form.login .button { width: 100%; }
.woocommerce .lost_password { text-align: center; font-size: .85rem; }

/* ---------- Form layout (replaces the WooCommerce stylesheet we disable) ---------- */
.woocommerce form .form-row { display: block; float: none; padding: 0; margin: 0 0 1.15rem; }
.woocommerce form .form-row label { display: block; margin-bottom: .4rem; }
.woocommerce form .form-row label.checkbox,
.woocommerce form .form-row .woocommerce-form__label-for-checkbox { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 0; }
.woocommerce form .form-row .woocommerce-input-wrapper { display: block; width: 100%; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select { display: block; width: 100%; box-sizing: border-box; }
.woocommerce form .form-row textarea { min-height: 110px; resize: vertical; font-family: var(--font-body); }
.woocommerce form .select2-container { width: 100% !important; }

/* two-column rows (first / last name etc.) */
.woocommerce form .form-row-first { float: left; width: calc(50% - .7rem); }
.woocommerce form .form-row-last { float: right; width: calc(50% - .7rem); }
.woocommerce form .form-row-wide,
.woocommerce form fieldset,
.woocommerce form h3 { clear: both; }
.woocommerce form::after,
.woocommerce .woocommerce-billing-fields__field-wrapper::after,
.woocommerce .woocommerce-shipping-fields__field-wrapper::after,
.woocommerce .woocommerce-address-fields__field-wrapper::after { content: ""; display: block; clear: both; }
@media (max-width: 640px) {
  .woocommerce form .form-row-first, .woocommerce form .form-row-last { float: none; width: 100%; }
}

/* Grid children must be allowed to shrink below their content width,
   otherwise the cart/checkout tables blow the layout out on mobile. */
.woocommerce-cart .woocommerce > *,
form.woocommerce-checkout > * { min-width: 0; }

/* Mobile: WooCommerce tables scroll sideways inside their own container
   instead of stretching the page beyond the viewport. */
@media (max-width: 768px) {
  .woocommerce table.shop_table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .woocommerce-cart-form .coupon { float: none; display: flex; width: 100%; }
  .woocommerce-cart-form .coupon .input-text { min-width: 0; flex: 1; }
  .woocommerce-cart-form .actions > .button { float: none; width: 100%; margin-top: 0.8rem; }
}

/* password fields: full-width input with an eye toggle inside */
.woocommerce form .password-input { display: block; position: relative; width: 100%; }
.woocommerce form .password-input input.input-text { padding-right: 2.8rem; }
.woocommerce form .show-password-input {
  position: absolute; right: .9rem; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; cursor: pointer; opacity: .55;
  appearance: none; -webkit-appearance: none;
  border: 0 !important; padding: 0 !important; margin: 0;
  background-color: transparent !important; box-shadow: none !important;
  font-size: 0; line-height: 0; color: transparent;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f2a4d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center / 20px no-repeat;
}
.woocommerce form .show-password-input:hover { opacity: .9; }
.woocommerce form .show-password-input::after { display: none; }

/* fieldsets (e.g. "Password change" on Account details) */
.woocommerce form fieldset {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem .4rem; margin: 1.6rem 0;
}
.woocommerce form fieldset legend {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  color: var(--navy-900); padding: 0 .5rem;
}

/* helper text under inputs (e.g. display-name note on Account details) */
.woocommerce form .form-row span em {
  display: block; font-style: normal; font-size: .8rem;
  color: var(--muted); margin-top: .35rem; line-height: 1.5;
}

/* checkout payment box tidy-up */
.woocommerce-checkout #payment ul.payment_methods { list-style: none; margin: 0 0 1.1rem; padding: 0 0 1.1rem; }
.woocommerce-checkout #payment ul.payment_methods li { margin: 0 0 .6rem; }
.woocommerce-checkout #payment { margin-top: 1.2rem; }
.woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button {
  display: block; width: 100%; box-sizing: border-box;
}
.woocommerce-checkout #order_review .woocommerce-info { margin-bottom: .9rem; }

/* Sale pricing on product cards */
.sku__price strong del {
  font-weight: 500;
  font-size: 0.82em;
  color: var(--muted);
  opacity: 0.75;
  margin-right: 0.3rem;
}
.sku--featured .sku__price strong del { color: #9db8d4; }
.prose--wide { max-width: 900px; }

/* Tables inside prose content (e.g. NAICS / PSC code tables) */
.prose table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin: 1.2rem 0; }
.prose th, .prose td { border: 1px solid var(--line); padding: 0.6rem 0.9rem; text-align: left; vertical-align: top; }
.prose th { background: var(--bg-tint); font-family: var(--font-head); color: var(--navy-900); font-size: 0.85rem; }
.prose tr:nth-child(even) td { background: #fafcfe; }
@media (max-width: 640px) { .prose table { display: block; overflow-x: auto; } }

/* ---------- Contact Form 7 (brand skin) ---------- */
.wpcf7 form { margin-top: 0.5rem; }
.cm-form__row > p { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; margin: 0; }
/* CF7 injects an inner <p> inside each row div — that's the real grid */
@media (max-width: 640px) { .cm-form__row > p { grid-template-columns: 1fr; } }
.wpcf7 .wpcf7-form-control-wrap { display: block; margin-bottom: 1rem; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  display: block; width: 100%; box-sizing: border-box;
  padding: 0.78rem 1rem; font: inherit; font-size: 0.93rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
}
.wpcf7 input:focus, .wpcf7 textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42, 167, 224, 0.16);
}
.wpcf7 textarea { min-height: 150px; resize: vertical; }
.wpcf7 input[type="submit"] {
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border: none; border-radius: var(--radius-sm); padding: 0.9rem 2rem; cursor: pointer;
  box-shadow: 0 1px 2px rgba(18, 115, 184, 0.4), 0 8px 24px rgba(42, 167, 224, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wpcf7 input[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(18,115,184,.4), 0 14px 32px rgba(42,167,224,.4); }
.wpcf7 .wpcf7-spinner { margin-left: 0.8rem; }
.wpcf7 .wpcf7-not-valid-tip { font-size: 0.8rem; color: #a13030; margin-top: 0.3rem; }
.wpcf7 .wpcf7-response-output {
  margin: 1.2rem 0 0 !important; padding: 0.75rem 1.1rem !important;
  border: 1px solid rgba(42, 167, 224, 0.35) !important; border-radius: 10px;
  background: var(--blue-soft); color: var(--navy-900); font-size: 0.9rem;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output { background: #fdecec; border-color: #f5c6c6 !important; color: #a13030; }

/* Flat stats band for inner pages (no hero overlap, no white sliver) */
.stats--plain { background: transparent; padding: 4.5rem 0 5rem; }
.stats--plain .stats__card { margin-top: 0; }

/* Product card titles link to the product's detail page */
.sku h3 a { color: inherit; }
.sku h3 a:hover { color: var(--blue-dark); }
.sku--featured h3 a:hover { color: var(--blue); }

/* Sale price display in cart / checkout line items */
.woocommerce table.shop_table del { color: var(--muted); opacity: 0.7; font-weight: 500; margin-right: 0.3rem; }
.woocommerce table.shop_table ins { text-decoration: none; font-weight: 600; }

/* "You save" row in cart / checkout totals */
.cart-savings th, .cart-savings td { color: var(--blue-dark) !important; font-weight: 600; }

/* Standalone buy card on product detail pages */
.cm-buy-wrap { max-width: 420px; }
.cm-buy-wrap .store__note { margin-top: 1.4rem; }

/* Buy section: card + inclusions panel */
.cm-buy { display: grid; grid-template-columns: 420px 1fr; gap: 3.5rem; align-items: start; }
.cm-buy__aside h3 { font-size: 1.05rem; margin-bottom: 1.1rem; }
.cm-buy__list { list-style: none; padding: 0; display: grid; gap: 0.8rem; margin-bottom: 1.6rem; }
.cm-buy__list li { display: flex; align-items: flex-start; gap: 0.6rem; color: var(--muted); font-size: 0.95rem; }
.cm-buy__list svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cm-buy__actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.cm-buy__phone { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--navy-800); font-size: 0.95rem; }
.cm-buy__phone svg { width: 17px; height: 17px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 900px) { .cm-buy { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Single product page (pg) ---------- */
.pg { display: grid; grid-template-columns: 1.05fr 1fr; gap: 4rem; align-items: start; }
.pg__main {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden; display: grid; place-items: center;
  aspect-ratio: 4 / 3;
}
.pg__main img { width: 100%; height: 100%; object-fit: contain; padding: 1.4rem; }
.pg__main--icon { background: linear-gradient(160deg, var(--blue-soft), #d3ebf9); flex-direction: column; text-align: center; }
.pg__main--icon svg { width: 74px; height: 74px; fill: none; stroke: var(--blue-dark); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 1rem; }
.pg__main--icon span { display: block; font-size: 0.85rem; color: var(--blue-dark); font-weight: 600; }
.pg__thumbs { display: flex; gap: 0.7rem; margin-top: 0.9rem; flex-wrap: wrap; }
.pg__thumb {
  width: 74px; height: 74px; padding: 0; border: 2px solid var(--line); border-radius: 10px;
  background: var(--white); cursor: pointer; overflow: hidden; transition: border-color 0.2s ease;
}
.pg__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pg__thumb:hover { border-color: var(--blue); }
.pg__thumb.is-active { border-color: var(--blue-dark); }
.pg__brand {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue-dark); background: var(--blue-soft);
  border-radius: 999px; padding: 0.3rem 0.85rem; margin: 1.1rem 0 0.8rem;
}
.pg__info h1 { font-size: clamp(1.9rem, 3vw, 2.5rem); color: var(--navy-900); margin-bottom: 0.9rem; }
.pg__price { display: flex; align-items: baseline; gap: 0.7rem; margin-bottom: 1.1rem; }
.pg__price strong { font-family: var(--font-head); font-size: 1.7rem; color: var(--navy-900); }
.pg__price del { color: var(--muted); opacity: 0.7; font-size: 1.05rem; }
.pg__sale-badge {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 999px; padding: 0.28rem 0.7rem; align-self: center;
}
.pg__excerpt { color: var(--muted); line-height: 1.75; margin-bottom: 1.3rem; }
.pg__features { list-style: none; padding: 0; display: grid; gap: 0.65rem; margin: 0 0 1.6rem; }
.pg__features li { display: flex; align-items: flex-start; gap: 0.6rem; color: var(--ink); font-size: 0.95rem; }
.pg__features svg, .pg__assurance svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pg__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.pg__assurance { list-style: none; padding: 1.1rem 0 0; margin: 0; border-top: 1px solid var(--line); display: grid; gap: 0.55rem; }
.pg__assurance li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.86rem; color: var(--muted); }
@media (max-width: 900px) { .pg { grid-template-columns: 1fr; gap: 2.2rem; } }

/* Hero catalog strip: software + hardware entry cards */
.hero__catalog { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-top: 2rem; max-width: 600px; }
.hero__cat {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.95rem 1.05rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}
.hero__cat:hover { border-color: rgba(42, 167, 224, 0.6); background: rgba(42, 167, 224, 0.09); transform: translateY(-2px); }
.hero__cat-icon {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px;
  background: rgba(42, 167, 224, 0.16); display: grid; place-items: center;
}
.hero__cat-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--blue); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.hero__cat strong { display: block; font-family: var(--font-head); font-size: 0.93rem; color: #fff; }
.hero__cat strong .btn__arrow { color: var(--blue); }
.hero__cat small { display: block; margin-top: 0.2rem; font-size: 0.78rem; line-height: 1.55; color: #b3c6dd; }
@media (max-width: 640px) { .hero__catalog { grid-template-columns: 1fr; } }
@media (max-width: 1024px) { .hero__catalog { margin-inline: auto; } }

/* ---------- Hero slider (software / hardware) ---------- */
.hero__slides { display: grid; }
.hero__slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease, visibility 0.65s;
  pointer-events: none;
}
.hero__slide.is-active { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.hero__headline { /* slide-2 title: identical look to the hero h1, but an h2 for SEO */
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.hero__dots { display: flex; justify-content: center; gap: 0.5rem; position: relative; z-index: 3; padding: 0.6rem 0 0; }
.hero__dot {
  width: 28px; height: 5px; padding: 0; border: 0; border-radius: 999px;
  background: rgba(255, 255, 255, 0.22); cursor: pointer; transition: background 0.25s ease;
}
.hero__dot:hover { background: rgba(255, 255, 255, 0.45); }
.hero__dot.is-active { background: var(--blue); }

/* hardware slide visual: category tile grid on the white card */
.hero__card--hw { padding: clamp(1.5rem, 2.6vw, 2.4rem); }
.hw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
.hw-tile {
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.05rem 0.7rem 0.95rem;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.hw-tile:hover { border-color: var(--blue); transform: translateY(-2px); }
.hw-tile svg {
  width: 27px; height: 27px; margin: 0 auto 0.55rem; display: block;
  fill: none; stroke: var(--blue-dark); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.hw-tile span { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.78rem; line-height: 1.35; color: var(--navy-800); }

/* editor: show both slides stacked for editing */
.elementor-editor-active .hero__slides { display: block; }
.elementor-editor-active .hero__slide {
  opacity: 1 !important; visibility: visible !important; transform: none !important;
  pointer-events: auto; position: relative;
}
.elementor-editor-active .hero__slide + .hero__slide { border-top: 1px dashed rgba(255,255,255,.25); }

@media (max-width: 640px) { .hw-grid { grid-template-columns: repeat(2, 1fr); } }

/* slides share the tallest slide's height; both align to the top like the
   original hero (centering made the taller visual collide with the edges) */
.hw-grid { gap: 1rem; }
.hw-tile { padding: 1.35rem 0.8rem 1.2rem; }
.hw-tile svg { width: 31px; height: 31px; }
/* on the hardware slide, push the chips to the card edges so tiles stay readable */
.hero__slide:nth-child(2) .hero__chip--tl { top: -5.5%; left: -5%; }
.hero__slide:nth-child(2) .hero__chip--br { bottom: -6%; right: -4%; }


/* Hero slider controls */
.hero__arrow {
  position: absolute;
  top: 42%;
  z-index: 4;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hero__arrow svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.hero__arrow:hover { background: rgba(42, 167, 224, 0.25); border-color: var(--blue); transform: scale(1.06); }
.hero__arrow--prev { left: 1.6rem; }
.hero__arrow--next { right: 1.6rem; }
.hero__dots { padding: 1.2rem 0 1.2rem; }
.hero__dot { width: 38px; height: 6px; }
@media (max-width: 900px) {
  .hero__arrow { display: none !important; }
}


/* Hardware card v2: header, icon-boxed tiles, brand strip */
.hw-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.15rem; }
.hw-head__label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #93a4ba; }
.hw-head__note { font-size: 0.72rem; font-weight: 600; color: var(--blue-dark); background: var(--blue-soft); border-radius: 999px; padding: 0.28rem 0.75rem; }
.hw-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  min-height: 132px; padding: 1.1rem 0.7rem 1rem;
}
.hw-tile-icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--blue-soft); display: grid; place-items: center; margin-bottom: 0.65rem;
}
.hw-tile-icon svg, .hw-tile > svg { width: 22px; height: 22px; margin: 0; }
.hw-brands {
  margin-top: 1.15rem; padding-top: 1.05rem; border-top: 1px solid var(--line);
  text-align: center; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: #93a4ba;
}
/* slide 2 aligns to the top like slide 1 (centering created a large top gap) */

/* equal label zones keep every tile's icon row perfectly aligned */
.hw-tile > span:not(.hw-tile-icon) {
  min-height: 2.75em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* keep the Certified Brands chip clear of the card header */
.hero__slide:nth-child(2) .hero__chip--tl { top: -30px; left: -3%; }

/* arrows: blue accent ring */
.hero__arrow { border-color: rgba(42, 167, 224, 0.45); }
.hero__arrow:hover { border-color: var(--blue); }

/* harden hw tile icon centering against any stale rules */
.hw-tile-icon { line-height: 0; }
.hw-tile-icon svg { display: block; margin: 0 !important; width: 22px !important; height: 22px !important; }

/* bulletproof icon centering in hw tiles */
.hw-tile-icon { position: relative; }
.hw-tile-icon svg {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}
a.hw-tile { color: inherit; }

/* Store pagination */
.store-pager { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2.6rem; }
.store-pager button {
  min-width: 42px; height: 42px; padding: 0 0.7rem;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--white); font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
  color: var(--ink); cursor: pointer; transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.store-pager button:hover:not(:disabled) { border-color: var(--blue); color: var(--blue-dark); transform: translateY(-1px); }
.store-pager button.is-active {
  color: #fff; border: none;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  box-shadow: 0 1px 2px rgba(18, 115, 184, 0.4), 0 6px 18px rgba(42, 167, 224, 0.3);
}
.store-pager button:disabled { opacity: 0.4; cursor: default; }

/* Store search */
#store .section__head {
  margin-bottom: 1.5rem;
}
.store-tools {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.2rem;
  width: 100%;
}
.store-tools__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
}
.store-search { position: relative; }
.store-search svg {
  position: absolute; left: 0.9rem; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; fill: none; stroke: #93a4ba; stroke-width: 2; stroke-linecap: round;
}
.store-search input {
  width: 280px; padding: 0.65rem 1rem 0.65rem 2.5rem;
  font: inherit; font-size: 0.9rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
}
.store-search input:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42, 167, 224, 0.16);
}
.store-empty { text-align: center; color: var(--muted); padding: 2.5rem 0 0.5rem; font-size: 0.95rem; }
@media (max-width: 900px) {
  .store-tools__main { flex-direction: column; align-items: stretch; }
  .store-search input { width: 100%; }
}

/* Subcategory filters styling */
.filter--sub {
  margin-top: 0.4rem;
  justify-content: flex-start;
  width: 100%;
}
.filter__btn--sub {
  font-size: 0.78rem;
  padding: 0.35rem 0.95rem;
  background: transparent;
  color: var(--muted);
  border-color: rgba(15, 34, 57, 0.08);
}
.filter__btn--sub:hover {
  background: var(--bg-tint);
}
.filter__btn--sub.is-active {
  background: var(--blue-soft);
  color: var(--blue-dark);
  border-color: transparent;
  box-shadow: none;
}
@media (max-width: 900px) {
  .filter--sub { justify-content: flex-start; }
}

.is-hidden-collapsed {
  display: none !important;
}
.filter__btn--more {
  font-weight: 700 !important;
  border-color: var(--blue) !important;
  color: var(--blue) !important;
}
.filter__btn--more:hover {
  background: var(--blue-soft) !important;
  color: var(--blue-dark) !important;
}

