/*
Theme Name: Estima3D
Theme URI: https://estima3d.local/
Author: Estima3D
Author URI: https://estima3d.local/
Description: Custom WordPress theme for Estima3D — converts 2D structural drawings into 3D BIM models, takeoffs, and cost estimates.
Version: 0.1.3
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: estima3d
*/

/* ───── reset ───── */

@font-face {
    font-family: 'FuturaCyrillicBook';
    src: url('https://webdev.estima3d.com/wp-content/uploads/2026/05/FuturaCyrillicBook.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; }
html, body { margin: 0; padding: 0; }
body { overflow-x: clip; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: rgb(26,31,46);
  background: rgb(247,247,250);
  -webkit-font-smoothing: antialiased;
}
/* Futura PT substitute (designer asked Futura → Jost is the closest free match) */
.futura { font-family: 'Jost', 'Futura', sans-serif; letter-spacing: 0.005em; }

/* full-width layout; content capped via .section-inner */
.page { width: 100%; max-width: 100%; margin: 0; position: relative; overflow-x: clip; }
.section-inner { max-width: 1440px; margin: 0 auto; position: relative; width: 100%; }

/* ───── reveal hook (GSAP drives all motion; instant class swap so GSAP reads correct target) ───── */
.reveal { opacity: 0; }
.reveal.in { opacity: 1; }

/* ───── nav ───── */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: 72px; width: 100%;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgb(217,222,229);
  padding: 0;
}
.nav .section-inner {
  display: flex; align-items: center;
  height: 100%;
  padding: 0 57px;
}
.nav-logo { width: 169px; height: 42px; background: url(assets/logo.png) center/contain no-repeat; }
.nav-links { display: flex; gap: 60px; margin-left: 90px; }
.nav-link {
  font-family: 'Inter'; font-size: 13px; font-weight: 400;
  color: rgb(26,31,46); text-decoration: none;
  position: relative; padding: 4px 0;
  transition: color .2s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: rgb(1,180,214);
  transform: scaleX(0); transform-origin: center; transition: transform .25s ease;
}
.nav-link:hover { color: rgb(1,180,214); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta-group { margin-left: auto; display: flex; gap: 22px; align-items: center; }

/* shared buttons */
.btn,
.btn-hero-primary, .btn-hero-secondary,
.btn-role, .btn-final-primary, .btn-final-secondary {
  text-decoration: none;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Inter'; font-weight: 500;
  border: 0; cursor: pointer; user-select: none;
  transition: transform .15s ease, box-shadow .25s ease, background .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-portal {
  width: 134px; height: 32px; border-radius: 6px;
  background: rgb(26,49,93); color: #fff; font-size: 13px;
}
.btn-portal:hover { background: rgb(35,63,118); }
.btn-demo {
  height: 36px; padding: 0 18px; border-radius: 8px;
  background: rgb(0,163,209); color: #fff; font-size: 13px;
  box-shadow: 0 4px 14px -4px rgba(0,163,209,.5);
}
.btn-demo:hover { background: rgb(1,180,214); box-shadow: 0 8px 20px -4px rgba(0,163,209,.6); }
.butn-primary { gap: 5px; }
/* ───── hero ───── */
.hero {
  position: relative; width: 100%; height: 679px;
  background: #fff; overflow: hidden;
}
.hero > .section-inner { height: 100%; }
.hero-img {
  position: absolute; inset: 0;
  background: url(assets/hero-bg.jpg) center/cover no-repeat;
  z-index: 0;
  transform: scale(1.05);
  transform-origin: center center;
  will-change: transform;
  transition: transform .12s linear;
}
.hero-bg-circle {
  position: absolute; left: 1120px; top: 0;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgb(237,252,255);
  mix-blend-mode: multiply; opacity: .55;
}
.hero-content { position: absolute; left: 91px; top: 136px; width: 600px; z-index: 2; }
.hero-title {
  font-family: 'FuturaCyrillicBook'; font-weight: 400; font-size: 45px; line-height: 1.1;
  color: rgb(26,31,46); margin: 0;
}
.hero-title .accent { color: rgb(1,180,214); }
.hero-title .underline { position: relative; display: inline-block; }
.hero-title .underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 8px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8' preserveAspectRatio='none'><path d='M 2 5 Q 50 1 100 4 T 198 3' stroke='rgb(245,166,35)' stroke-width='3' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-size: 100% 100%;
  transform: scaleX(0); transform-origin: left; transition: transform 1s ease .4s;
}
.reveal.in .hero-title .underline::after { transform: scaleX(1); }
.hero-desc {
  font-family: 'DM Sans'; font-size: 15px; line-height: 1.55;
  color: rgb(26,31,46); margin-top: 22px;
  width: 560px;
}
.hero-ctas { margin-top: 32px; display: flex; gap: 14px; }
.btn-hero-primary {
  height: 44px; padding: 0 22px; border-radius: 8px;
  background: rgb(0,163,209); color: #fff; font-size: 14px;
  box-shadow: 0 8px 22px -8px rgba(0,163,209,.7);
}
.btn-hero-primary:hover { background: rgb(1,180,214); }
.btn-hero-secondary {
  height: 44px; padding: 0 22px; border-radius: 8px;
  background: rgb(26,49,93); color: #fff; font-size: 14px;
}
.btn-hero-secondary:hover { background: rgb(35,63,118); }

/* product demo card */
.demo-card {
  position: absolute; left: 800px; top: 88px;
  width: 540px; height: 376px;
  border-radius: 14px; background: rgba(232,236,242,.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(217,222,229,.8);
  box-shadow: 0 30px 60px -20px rgba(13,31,64,.12);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .3s ease;
  text-decoration: none;
}
.demo-card:hover { transform: translateY(-4px); }
.demo-card.has-thumb {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(13,31,64,.4);
  border-color: rgba(255,255,255,.18);
}
.demo-card.has-thumb::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,31,64,.15) 0%, rgba(13,31,64,.55) 100%);
  z-index: 1;
  transition: background .25s ease;
}
.demo-card.has-thumb:hover::before {
  background: linear-gradient(180deg, rgba(13,31,64,.1) 0%, rgba(13,31,64,.4) 100%);
}
.demo-card.has-thumb .demo-card-label { position: relative; z-index: 2; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.45); }
.demo-card.has-thumb .play-pill {
  border-left-color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}
.demo-card-label {
  display: inline-flex; align-items: center; gap: 12px;
  color: #8099CC; font-family: 'DM Sans'; font-weight: 500; font-size: 16px;
}
.play-pill {
  width: 0; height: 0;
  border-left: 18px solid #8099CC;
  border-top: 11px solid transparent; border-bottom: 11px solid transparent;
  transition: transform .25s ease;
}
.demo-card:hover .play-pill { transform: scale(1.15); }

/* ───── how it works ───── */
.hiw {
  position: relative; width: 100%; min-height: 760px;
  background: rgb(250,250,250); overflow: hidden;
  padding: 80px 0 100px;
}
.hiw > .section-inner { z-index: 1; }
.hex-deco {
  position: absolute; right: -180px; top: -60px;
  width: 720px; height: 780px;
  background: url(assets/hexagons.png) center/contain no-repeat;
  opacity: .18;
  pointer-events: none;
  z-index: 0;
}

/* Hexagon particle field — random sized hexes drifting across the HIW background */
.hex-particles {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hex-particle-wrap {
  position: absolute;
  pointer-events: none;
  will-change: transform;
  transform: translate3d(0,0,0);
}
.hex-particle {
  position: relative;
  width: 100%; height: 100%;
  color: rgb(165, 200, 220);
  will-change: transform, opacity;
}
.hex-particle svg { width: 100%; height: 100%; display: block; }
.hiw > .hiw-header,
.hiw > .flow,
.hiw > .stats { position: relative; z-index: 1; }
.floaty { animation: floaty 9s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter'; font-weight: 600; font-size: 12px; letter-spacing: .12em;
  color: rgb(26,49,93); text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: rgb(1,180,214);
/*   box-shadow: 0 0 0 4px rgba(1,180,214,.18); */
}
.hiw-header { text-align: center; }
.hiw-title {
  font-family: 'Inter'; font-weight: 400; font-size: 36px;
  line-height: 1.25; color: rgb(26,31,46);
  margin: 14px auto 0;
  max-width: 760px;
}

.flow {
  display: flex; align-items: center; justify-content: center;
  gap: 30px; margin-top: 64px;
  padding: 0 90px;
}
.flow-node { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hex-card {
  width: 110px; height: 122px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease;
}
.flow-node:hover .hex-card { transform: scale(1.05); }
.hex-shape {
  position: absolute; inset: 0;
  background: #fff;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  border: 1px solid rgb(217,222,229);
  box-shadow: 0 18px 30px -20px rgba(26,49,93,.25);
  transition: filter .3s ease;
}
.flow-node:hover .hex-shape,
.flow-node.is-active .hex-shape {
  filter: drop-shadow(0 14px 22px rgba(1,180,214,.45));
}
.flow-node.is-active .hex-card { transform: scale(1.08); }

/* Sequential pulse when section first enters */
.flow-node.seq-pulse .hex-shape {
  animation: seq-pop 0.9s ease-out;
}
@keyframes seq-pop {
  0%   { transform: scale(1); box-shadow: 0 18px 30px -20px rgba(26,49,93,.25); }
  35%  { transform: scale(1.18); box-shadow: 0 18px 30px -20px rgba(26,49,93,.25), 0 0 0 14px rgba(1,180,214,.35); }
  100% { transform: scale(1); box-shadow: 0 18px 30px -20px rgba(26,49,93,.25), 0 0 0 0 rgba(1,180,214,0); }
}

/* Callout swap fade is now driven by GSAP — no CSS transition (it conflicts with GSAP inline opacity). */
.hex-shape.dark {
  background: rgb(26,49,93);
  animation: brand-pulse 2.6s ease-in-out infinite;
}
@keyframes brand-pulse {
  0%, 100% { box-shadow: 0 18px 30px -20px rgba(26,49,93,.25), 0 0 0 0 rgba(1,180,214,.5); }
  50%      { box-shadow: 0 18px 30px -20px rgba(26,49,93,.25), 0 0 0 12px rgba(1,180,214,0); }
}
.hex-content {
  position: relative;
  width: 70px;
  display: flex; align-items: center; justify-content: center;
}
.flow-label {
  font-family: 'DM Sans'; font-size: 13px; color: rgb(26,31,46);
  text-align: center; max-width: 110px;
  line-height: 1.35;
}

.flow-arrow {
  flex: 0 0 auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  color: rgb(26,49,93);
  min-height: 32px;
}
.flow-arrow .line {
  width: 64px; height: 2px;
  position: relative;
  background: rgb(26,49,93);
  animation: arrow-line-glow 2.4s ease-in-out infinite;
}
@keyframes arrow-line-glow {
  0%, 30%, 100% { background: rgb(26,49,93); box-shadow: none; }
  55%           { background: rgb(45,90,170); box-shadow: 0 0 6px rgba(1,180,214,.45); }
  80%           { background: rgb(26,49,93); box-shadow: none; }
}
.flow-arrow .line::after {
  content: ""; position: absolute; right: -1px; top: 50%;
  border-left: 9px solid rgb(26,49,93);
  border-top: 6px solid transparent; border-bottom: 6px solid transparent;
  transform: translateY(-50%);
  transform-origin: right center;
  animation: arrow-head-pulse 2.4s ease-in-out infinite;
}
@keyframes arrow-head-pulse {
  0%, 78%, 100% { transform: translateY(-50%) scale(1); filter: none; }
  92%           { transform: translateY(-50%) scale(1.35); filter: drop-shadow(0 0 4px rgba(1,180,214,.6)); }
}
.flow-arrow .line::before {
  content: ""; position: absolute; top: 50%; left: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: rgb(1,180,214);
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(1,180,214,.25);
  animation: travel 2.4s ease-in-out infinite;
}
@keyframes travel {
  0%   { left: 0%;   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
.flow-arrow .tag {
  font-family: 'DM Sans'; font-weight: 500; font-size: 10px;
  color: #fff;
  background: rgb(1,180,214);
  padding: 3px 10px; border-radius: 999px;
  border: 0;
  letter-spacing: .02em;
}

.hex-content .pdf-glyph {
  width: 56px; height: 56px;
  background: url(assets/pdf-icon.png) center/contain no-repeat;
}
.hex-content .logo-mark {
  width: 56px; height: 56px;
  background: url(assets/logo.png) center/contain no-repeat;
  filter: brightness(0) invert(1);
}
.hex-content .hex-icon {
  width: 56px; height: 56px;
  background-position: center; background-size: contain; background-repeat: no-repeat;
}
.hex-content .hex-icon.invert { filter: brightness(0) invert(1); }
.hex-content .check {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgb(1,180,214);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700;
}

.flow-callout {
  margin-left: 28px;
  max-width: 290px;
}
.flow-callout h4 {
  font-family: 'Inter'; font-weight: 700; font-size: 15px;
  color: rgb(26,31,46); margin: 0 0 8px;
}
.flow-callout p {
  font-family: 'DM Sans'; font-size: 15px; color: rgb(26,31,46);
  margin: 0; line-height: 1.5;
}

/* stats — first white card shorter; dark cards taller */
.stats {
  margin-top: 70px; padding: 0 90px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}
.stat {
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 14px;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.stat:nth-child(1) {
  padding: 20px 22px;
  min-height: 158px;
}
.stat:nth-child(2),
.stat:nth-child(3),
.stat:nth-child(4) {
  background: rgb(26,49,93); color: #fff;
  padding: 28px 24px;
  min-height: 158px;
}
/* Hover lift is owned by GSAP (see main.js statsHover) to avoid clashes
   with the reveal animation's inline transform. CSS only handles the shadow. */
.stat {
  transition: box-shadow .35s ease;
}
.stat:hover {
  box-shadow:
    0 28px 50px -22px rgba(26, 49, 93, 0.45),
    0 12px 24px -16px rgba(1, 180, 214, 0.35);
}
.stat:nth-child(n+2):hover {
  box-shadow:
    0 28px 50px -22px rgba(0, 0, 0, 0.55),
    0 12px 24px -16px rgba(1, 220, 255, 0.5);
}
.stat .num {
  font-family: 'Inter'; font-weight: 700; font-size: 38px; line-height: 1;
  color: rgb(26,49,93);
}
.stat:nth-child(n+2) .num { color: #fff; font-size: 40px; }
.stat .lbl {
  font-family: 'DM Sans'; font-size: 13px; font-weight: 700;
  color: rgb(26,31,46); line-height: 1.4;
}
/* .stat:nth-child(2), .stat:nth-child(4) {
    transform: translateY(50px);
} */
.stat:nth-child(n+2) .lbl { color: rgba(255,255,255,.85); }


/* ───── product features (roles) ───── */
.roles {
  position: relative; padding: 90px 0 110px;
  background: rgb(247,247,250);
}
.roles > .section-inner { padding: 0 90px; }
.roles-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-top: 18px; }
.role-tabs { margin-left: auto; }
.roles-title {
  font-family: 'FuturaCyrillicBook'; font-weight: 400; font-size: 36px;
  line-height: 1.1; color: rgb(26,31,46);
  margin: 0;
  position: relative;
}
.roles-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 10%;
  width: 100%;
  height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10'%3E%3Cpath d='M0,8 Q50,0 100,8' stroke='%23E8A020' stroke-width='3' fill='none'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}
.role-tabs { display: flex; gap: 10px; }
.role-tab {
  height: 36px; padding: 0 18px; border-radius: 999px;
  background: transparent; color: rgb(26,31,46);
  font-family: 'DM Sans'; font-weight: 500; font-size: 13px;
  border: 1px solid rgb(217,222,229);
  cursor: pointer;
  transition: all .2s ease;
}
.role-tab:hover { border-color: rgb(1,180,214); color: rgb(1,180,214); }
.role-tab.active:hover {
    color: #ffffff !important;
}
.role-tab.active {
  background: rgb(1,180,214); color: #fff; border-color: rgb(1,180,214);
  box-shadow: 0 6px 18px -6px rgba(1,180,214,.5);
}

.roles-body { margin-top: 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.role-photo {
  width: 100%; aspect-ratio: 615/395;
  border-radius: 12px; overflow: hidden;
  background-color: rgb(217,222,229);
  background-position: center; background-size: cover; background-repeat: no-repeat;
  position: relative;
  box-shadow: 0 24px 50px -25px rgba(13,31,64,.25);
}
.role-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,31,64,0) 60%, rgba(13,31,64,.15));
}
.role-right h3 {
  font-family: 'FuturaCyrillicBook'; font-weight: 400; font-size: 32px;
  color: rgb(26,31,46); margin: 0 0 22px;
}
.role-right h3 .accent { color: rgb(1,180,214); }
.acc-item {
/*   border-radius: 10px; margin-bottom: 12px;
  background: #fff; border: 1px solid rgb(217,222,229); */
  overflow: hidden;
  transition: box-shadow .25s ease;
	margin-bottom: 15px;
}
/* .acc-item.open { box-shadow: 0 18px 40px -22px rgba(13,31,64,.18); } */
.acc-head {
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; user-select: none;
  font-family: 'DM Sans'; font-weight: 500; font-size: 16px;
  color: rgb(26,31,46);
  transition: background .25s;
	background: #ffffff;
	border-radius: 8px;
}
.acc-item.open .acc-head { background: rgb(245,166,35); color: #fff; }
.acc-caret {
  width: 10px; height: 10px;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transition: transform .3s ease;
}
.acc-item.open .acc-caret { transform: rotate(180deg); }
.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0 18px;
  font-family: 'DM Sans'; font-size: 15px;
  color: rgb(26,31,46); line-height: 1.55;
/*   background: #fff; */
}
.acc-item.open .acc-body { max-height: 200px; padding: 16px 18px 16px; }
.role-cta { margin-top: 24px; display: flex; justify-content: flex-end; }
.btn-role {
  height: 44px; padding: 0 22px; border-radius: 8px;
  background: rgb(0,163,209); color: #fff;
  font-family: 'Inter'; font-weight: 500; font-size: 14px;
  border: 0; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-role:hover { background: rgb(1,180,214); transform: translateY(-1px); }

/* ───── testimonials ───── */
.testi {
  background: #fff; padding: 90px 0 110px;
  position: relative; overflow: hidden;
}
.testi > .section-inner { padding: 0 90px; }
.testi-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 60px; margin-bottom: 40px;
}
.testi-headline {
  font-family: 'FuturaCyrillicBook'; font-weight: 400; font-size: 32px;
  color: rgb(26,31,46); margin: 6px 0 0;
}
.testi-headline strong { font-weight: 700; color: rgb(1,180,214); }
.testi { overflow: visible; }
.testi-head { align-items: center; }

.testi-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 60px;
  position: relative;
}
.testi-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px;
  min-width: 0;
}
.testi-side { position: relative; min-width: 0; }
.testi-logo {
  width: 100%; height: 280px;
  background-image: url(assets/logo-big.png);
  background-position: right center; background-size: contain; background-repeat: no-repeat;
  position: sticky;
  top: 100px;                /* clear of the 72px sticky nav */
  will-change: transform;
  transform-origin: center center;
}
.testi-side { perspective: 1000px; }
@media (max-width: 980px) {
  .testi-body { grid-template-columns: 1fr; }
  .testi-logo { position: static; height: 200px; background-position: center center; }
}
.testi-card {
  background: #fff; border: 1px solid rgb(217,222,229);
  border-radius: 10px; padding: 18px 22px;
  min-height: 190px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  will-change: transform;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgb(1,180,214);
  box-shadow: 0 22px 42px -22px rgba(13,31,64,.2);
}
.testi-card .who { display: flex; gap: 14px; align-items: center; }
.who-logo {
  width: 86px; height: 40px;
  background: url(assets/iron-logo.jpg) left center/contain no-repeat;
  flex: 0 0 auto;
}
.who-info .name {
  font-family: 'Inter'; font-weight: 600; font-size: 14px; color: rgb(26,31,46);
}
.who-info .org { font-family: 'Inter'; font-size: 15px; color: #000; margin-top: 2px; }
.testi-card p {
  margin: 18px 0 0; font-family: 'Inter'; font-size: 15px;
  color: #000000; line-height: 1.55;
}

/* ───── pricing / logos ───── */
.logos {
  background: rgb(247,247,250); padding: 80px 0 100px;
  text-align: center;
}
/* Client 3destimafixes #16 — hide the "800+ contractors" scrolling-logos strip.
   Scoped to home; the element stays in the DOM so the #pricing anchor still works.
   To restore, delete this rule. */
body.home section.logos { display: none; }
.logos h2 {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 30px;
  color: rgb(26,31,46); margin: 0;
  position: relative; display: inline-block;
}
/* .logos h2::after {
  content: ""; position: absolute; left: 8%; right: 8%; bottom: -10px;
  height: 4px; background: rgb(245,166,35); border-radius: 4px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 1s ease;
} */

.logos h2::after {
  content: '';
position: absolute;
bottom: -35px;
left: 0;
width: 204px;
height: 30px;
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 15'%3E%3Cpath d='M0,2 Q50,14 100,2' stroke='%23E8A020' stroke-width='3' fill='none'/%3E%3C/svg%3E");
background-size: 100% 100%;
}
.logos.in h2::after, .reveal.in.logos h2::after { transform: scaleX(1); }
.logo-row {
  display: flex; justify-content: center; align-items: center;
  gap: 80px; margin: 70px 0 24px;
  flex-wrap: wrap;
  padding: 0 90px;
}

/* ───── trust-logo infinite marquee ───── */
.logo-marquee {
  margin: 70px 0 24px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.logo-track {
  display: flex; align-items: center;
  gap: 80px;
  width: max-content;
  padding-right: 80px; /* spacing between the last tile and first clone */
  animation: logo-marquee 28s linear infinite;
  will-change: transform;
}
@keyframes logo-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-track .logo-tile { flex: 0 0 auto; }
.logo-tile {
  height: 64px; min-width: 140px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Inter'; font-weight: 800; font-size: 17px;
  letter-spacing: .03em; color: rgb(26,49,93);
  opacity: .8; transition: transform .25s ease;
  text-align: center; line-height: 1.1;
  position: relative;
}
.logo-tile:hover { opacity: 1; transform: translateY(-3px); }
.logo-tile small {
  display: block; font-weight: 600; font-size: 9px;
  color: rgb(245,166,35); letter-spacing: .18em; margin-top: 4px;
  text-transform: uppercase;
}
.logo-tile img { max-height: 50px; max-width: 160px; object-fit: contain; display: block; }
.logos-foot {
  font-family: 'Inter'; font-size: 11px;
  color: rgb(166,178,191); margin-top: 30px;
}

/* ───── final CTA ───── */
.final-cta {
  background: rgb(13,31,64); color: #fff;
  padding: 90px 0 120px; text-align: center;
  position: relative; overflow: hidden;
}
/* .final-cta::before {
  content: ""; position: absolute; right: -300px; top: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle at center, rgba(1,180,214,.18), transparent 60%);
  pointer-events: none;
} */
.final-cta h2 {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 32px;
  margin: 0 0 16px;
}
.final-cta p {
  font-family: 'DM Sans'; font-size: 16px;
  color: rgb(178,199,229); max-width: 560px;
  margin: 0 auto 36px; line-height: 1.55;
}
.final-cta .ctas {
  display: inline-flex; justify-content: center; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.btn-final-primary {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 28px; border-radius: 8px;
  background: rgb(0,163,209); color: #fff;
  font-family: 'Inter'; font-weight: 500; font-size: 16px;
  border: 0; cursor: pointer;
  box-shadow: 0 14px 28px -10px rgba(0,163,209,.55);
  transition: background .2s, transform .15s, box-shadow .25s;
}
.btn-final-primary:hover {
  background: rgb(1,180,214); transform: translateY(-2px);
  box-shadow: 0 20px 38px -12px rgba(1,180,214,.65);
}
.btn-final-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 26px; border-radius: 8px;
  background: #1A315D; color: #fff;
  font-family: 'Inter'; font-weight: 500; font-size: 16px;
/*   border: 1px solid rgba(255,255,255,.35); */
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s;
  gap: 10px;
}
.btn-final-secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

/* ───── footer ───── */
.footer {
  background: rgb(15,23,46); color: rgba(255,255,255,.75);
  padding: 50px 0 36px;
}
.footer > .section-inner { padding: 0 75px; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(140px, 0.9fr) minmax(180px, 1fr) minmax(180px, 1fr) minmax(180px, 1fr);
  gap: 50px;
  align-items: start;
}
.social-links-col {
    margin-top: 62px;
}
.footer-col.dashes h4 + ul { display: none; }
.footer-col.dashes {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 4px;
  min-height: 160px;
}
.footer-col.dashes .dash { height: 1px; background: rgba(255,255,255,.18); width: 60px; }
.footer-col.dashes .footer-col-link {
  margin-top: auto;
  font-family: 'DM Sans'; font-size: 13px;
  color: rgba(255,255,255,.85); text-decoration: none;
  transition: color .2s;
}
.footer-col.dashes .footer-col-link:hover { color: rgb(1,180,214); }
.footer-logo {
  width: 159px; height: 51px;
  background: url(assets/logo-footer.png) center/contain no-repeat;
  margin-bottom: 10px;
}
.socials { display: flex; gap: 10px; margin-top: 18px; }
.social {
  width: 32px; height: 32px; border-radius: 6px;
  background: rgb(1,180,214);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Inter'; font-weight: 600; font-size: 13px;
  transition: transform .2s, background .2s;
  cursor: pointer; text-decoration: none;
}
.social:hover { transform: translateY(-2px); background: rgb(0,163,209); }
.connect-label { font-family: 'Inter'; font-size: 15px; color: rgba(255,255,255,1); }
.footer-col h4 {
  font-family: 'Inter'; font-weight: 600; font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  color: #fff; margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a {
  font-family: 'Inter'; font-size: 13px;
  color: rgba(255,255,255,.65); text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: rgb(1,180,214); }
.footer-bottom {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between;
  font-family: 'DM Sans'; font-size: 12px;
  color: rgba(255,255,255,.5);
}

/* ───── tweaks panel ───── */
.tw-panel {
  position: fixed; right: 20px; bottom: 20px; z-index: 999;
  width: 260px; padding: 14px 16px;
  border-radius: 12px;
  background: rgba(15,23,46,.92);
  backdrop-filter: blur(10px);
  color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 12px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,.45);
  display: none;
}
.tw-panel.on { display: block; }
.tw-panel h5 { margin: 0 0 10px; font-size: 13px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.tw-panel h5 .x { cursor: pointer; opacity: .7; font-size: 16px; }
.tw-row { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; border-top: 1px solid rgba(255,255,255,.08); }
.tw-row:first-of-type { border-top: 0; }
.tw-row label { color: rgba(255,255,255,.7); }
.tw-swatches { display: flex; gap: 6px; }
.tw-sw { width: 22px; height: 22px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; }
.tw-sw.on { border-color: #fff; }
.tw-toggle { width: 32px; height: 18px; border-radius: 999px; background: rgba(255,255,255,.18); position: relative; cursor: pointer; }
.tw-toggle::after { content: ""; position: absolute; top: 2px; left: 2px; width: 14px; height: 14px; background: #fff; border-radius: 50%; transition: left .2s; }
.tw-toggle.on { background: rgb(1,180,214); }
.tw-toggle.on::after { left: 16px; }

/* accent override variable */
:root {
  --accent: rgb(1,180,214);
  --accent-deep: rgb(0,163,209);
}

.no-float .floaty { animation: none !important; }
.no-anim .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.no-anim [data-anim] { opacity: 1 !important; transform: none !important; }

/* Scroll-animation overflow safety — keep horizontal slide-ins from extending the document */
.hero, .hiw, .roles, .testi, .logos, .final-cta, .footer { overflow-x: clip; }

/* GSAP base — keep elements measurable, JS sets initial transform */
[data-anim] { will-change: transform, opacity; }

/* ───── video modal ───── */
.video-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
.video-modal[hidden] { display: none; }
.video-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(13,31,64,.85);
  backdrop-filter: blur(6px);
  animation: vm-fade .25s ease both;
}
.video-modal__frame {
  position: relative;
  width: min(960px, 92vw);
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 90px -20px rgba(0,0,0,.6);
  animation: vm-pop .3s cubic-bezier(.2,.7,.2,1) both;
}
.video-modal__player,
.video-modal__player iframe,
.video-modal__player video { width: 100%; height: 100%; display: block; border: 0; }
.video-modal__close {
  position: absolute; top: -42px; right: 0;
  width: 32px; height: 32px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.18); color: #fff;
  font-size: 22px; line-height: 1; cursor: pointer;
  transition: background .2s;
}
.video-modal__close:hover { background: rgba(255,255,255,.32); }
@keyframes vm-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes vm-pop  { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: scale(1); } }

/* ───── leader bio modal ───── */
.leader-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.leader-modal[hidden] { display: none; }
.leader-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(13,31,64,.82);
  backdrop-filter: blur(6px);
  animation: vm-fade .25s ease both;
}
.leader-modal__frame {
  position: relative;
  display: flex;
  width: min(820px, 94vw);
  max-height: 88vh;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px -24px rgba(0,0,0,.55);
  animation: vm-pop .3s cubic-bezier(.2,.7,.2,1) both;
}
.leader-modal__photo {
  flex: 0 0 44%;
  min-height: 380px;
  background: rgb(242,245,247) center/cover no-repeat;
}
.leader-modal__body {
  flex: 1 1 auto;
  padding: 46px 44px;
  overflow-y: auto;
}
.leader-modal__name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: rgb(26,31,46);
  margin: 0 0 6px;
}
.leader-modal__role {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgb(0,163,209);
  margin: 0 0 22px;
}
.leader-modal__bio {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgb(70,78,92);
}
.leader-modal__bio p { margin: 0 0 14px; }
.leader-modal__bio p:last-child { margin-bottom: 0; }
.leader-modal__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgb(0,163,209);
  text-decoration: none;
  word-break: break-all;
}
.leader-modal__email::before {
  content: '';
  flex: 0 0 auto;
  width: 16px; height: 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 5.5A1.5 1.5 0 0 1 3.5 4h17A1.5 1.5 0 0 1 22 5.5v13a1.5 1.5 0 0 1-1.5 1.5h-17A1.5 1.5 0 0 1 2 18.5v-13Zm2.2.5 7.8 5.6L19.8 6H4.2ZM20 7.9l-7.4 5.3a1 1 0 0 1-1.2 0L4 7.9V18h16V7.9Z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 5.5A1.5 1.5 0 0 1 3.5 4h17A1.5 1.5 0 0 1 22 5.5v13a1.5 1.5 0 0 1-1.5 1.5h-17A1.5 1.5 0 0 1 2 18.5v-13Zm2.2.5 7.8 5.6L19.8 6H4.2ZM20 7.9l-7.4 5.3a1 1 0 0 1-1.2 0L4 7.9V18h16V7.9Z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.leader-modal__email:hover { text-decoration: underline; }
.leader-modal__email[hidden] { display: none; }
.leader-modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border: 0; border-radius: 50%;
  background: rgba(13,31,64,.10); color: rgb(26,31,46);
  font-size: 24px; line-height: 1; cursor: pointer;
  z-index: 2;
  transition: background .2s;
}
.leader-modal__close:hover { background: rgba(13,31,64,.20); }
@media (max-width: 640px) {
  .leader-modal__frame { flex-direction: column; width: 94vw; }
  .leader-modal__photo { flex: 0 0 240px; min-height: 240px; }
  .leader-modal__body { padding: 28px 24px; }
  .leader-modal__name { font-size: 20px; }
}

/* ───── book-a-demo modal (embedded Google scheduler) ───── */
.book-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.book-modal[hidden] { display: none; }
.book-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(13,31,64,.82);
  backdrop-filter: blur(6px);
  animation: vm-fade .25s ease both;
}
.book-modal__frame {
  position: relative;
  width: min(720px, 96vw);
  height: min(760px, 90vh);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px -24px rgba(0,0,0,.55);
  animation: vm-pop .3s cubic-bezier(.2,.7,.2,1) both;
}
.book-modal__embed {
  width: 100%; height: 100%;
  background: #fff;
}
.book-modal__embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.book-modal__close {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px; border: 0; border-radius: 50%;
  background: rgba(13,31,64,.12); color: rgb(26,31,46);
  font-size: 24px; line-height: 1; cursor: pointer;
  z-index: 2;
  transition: background .2s;
}
.book-modal__close:hover { background: rgba(13,31,64,.22); }
@media (max-width: 640px) {
  .book-modal { padding: 12px; }
  .book-modal__frame { width: 96vw; height: 92vh; border-radius: 12px; }
}



.hex-content .hex-icon {
    width: 150px;
    height: 150px;
    background-size: con !important;
}

.hex-content {
    width: 150px;
}

.hex-shape.dark {
    background: unset;
}

.hex-content .hex-icon.invert {
    filter: unset !important;
}

.flow-arrow.reveal.delay-2.in {
    top: -16px !important;
    position: relative;
}

/* ════════════════════════════════════════════
   LOADING SCREEN
   ════════════════════════════════════════════ */
html.is-loading, html.is-loading body { overflow: hidden; }

.loader {
  position: fixed; inset: 0; z-index: 99999;
  background:
    radial-gradient(circle at 50% 40%, #ffffff 0%, #f3f7fb 60%, #e8eff5 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
.loader.is-hidden { pointer-events: none; }

/* Soft cyan aura behind logo */
.loader__glow {
  position: absolute; left: 50%; top: 50%;
  width: 480px; height: 480px;
  background: radial-gradient(circle at center, rgba(1,180,214,.22), rgba(1,180,214,.05) 45%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
  animation: ldr-glow 2.4s ease-in-out infinite;
}
@keyframes ldr-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.6; }
  50%      { transform: translate(-50%, -50%) scale(1.1);  opacity: 1; }
}

/* Three expanding rings, offset in time */
.loader__ring {
  position: absolute; left: 50%; top: 50%;
  width: 220px; height: 220px;
  border: 2px solid rgba(1, 180, 214, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
}
.loader__ring--1 { animation: ldr-ring 2.4s cubic-bezier(.4,0,.2,1) 0s   infinite; }
.loader__ring--2 { animation: ldr-ring 2.4s cubic-bezier(.4,0,.2,1) 0.8s infinite; }
.loader__ring--3 { animation: ldr-ring 2.4s cubic-bezier(.4,0,.2,1) 1.6s infinite; }
@keyframes ldr-ring {
  0%   { transform: translate(-50%, -50%) scale(0.4); opacity: 0; }
  20%  { opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

/* Center stack: logo + progress + label */
.loader__center {
  position: relative; z-index: 2;
  text-align: center;
}
.loader__logo {
  width: 240px; margin: 0 auto;
  filter: drop-shadow(0 10px 30px rgba(13, 31, 64, 0.15));
}
.loader__logo img { width: 100%; height: auto; display: block; }

.loader__progress {
  position: relative;
  width: 260px; height: 3px;
  background: rgba(26, 49, 93, 0.08);
  border-radius: 999px;
  margin: 40px auto 16px;
  overflow: hidden;
}
.loader__progress-bar {
  position: absolute; left: 0; top: 0;
  height: 100%; width: 0%;
  background: linear-gradient(90deg, rgb(0, 163, 209), rgb(1, 180, 214), rgb(0, 163, 209));
  background-size: 200% 100%;
  box-shadow: 0 0 12px rgba(1, 180, 214, 0.7);
  border-radius: 999px;
  animation: ldr-bar-shimmer 1.4s linear infinite;
}
@keyframes ldr-bar-shimmer {
  from { background-position: 0% 0; }
  to   { background-position: 200% 0; }
}

.loader__text {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.45em;
  color: rgb(26, 49, 93);
  opacity: 0.7;
  animation: ldr-text 1.4s ease-in-out infinite;
}
.loader__text span { color: rgb(1, 180, 214); }
@keyframes ldr-text {
  0%, 100% { opacity: 0.55; letter-spacing: 0.45em; }
  50%      { opacity: 1;    letter-spacing: 0.55em; }
}

@media (max-width: 720px) {
  .loader__logo { width: 180px; }
  .loader__glow { width: 320px; height: 320px; }
  .loader__ring { width: 180px; height: 180px; }
  .loader__progress { width: 200px; }
}

/* ════════════════════════════════════════════
   NAV TOGGLE (hamburger) — hidden on desktop
   ════════════════════════════════════════════ */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  margin-left: 12px;
  background: transparent; border: 0; cursor: pointer;
  padding: 8px;
  position: relative;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: rgb(26,31,46);
  margin: 5px 0;
  transition: transform .3s ease, opacity .25s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════
   TABLET — up to 1024px
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav .section-inner { padding: 0 28px; }
  .nav-links { gap: 32px; margin-left: 40px; }

  /* Hero */
  .hero { height: auto; min-height: 560px; padding: 80px 0 100px; }
  .hero > .section-inner { height: auto; padding: 0 40px; }
  .hero-content { position: static; width: 100%; max-width: 560px; }
  .hero-title { font-size: 38px; }
  .hero-desc { width: auto; max-width: 560px; }
  .hero-bg-circle { left: auto; right: -160px; }
  .demo-card { position: relative; left: auto; top: auto; width: 100%; max-width: 540px; margin-top: 40px; }

  /* HIW */
  .hiw { padding: 60px 0 80px; }
  .hiw-title { font-size: 28px; }
  .flow { padding: 0 30px; gap: 18px; flex-wrap: wrap; justify-content: center; }
  .flow-callout { margin: 30px auto 0; max-width: 540px; text-align: center; }
  .stats { padding: 0 30px; grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .stat:nth-child(1), .stat:nth-child(2), .stat:nth-child(3), .stat:nth-child(4) { min-height: 140px; }

  /* Roles */
  .roles { padding: 70px 0 90px; }
  .roles > .section-inner { padding: 0 40px; }
  .roles-head { flex-direction: column; align-items: flex-start; gap: 22px; }
  .role-tabs { margin-left: 0; flex-wrap: wrap; }
  .roles-body { grid-template-columns: 1fr; gap: 36px; }
  .role-photo { max-width: 100%; }
  .roles-title { font-size: 30px; }
  .role-right h3 { font-size: 26px; }

  /* Testimonials */
  .testi { padding: 70px 0 90px; }
  .testi > .section-inner { padding: 0 40px; }
  .testi-body { grid-template-columns: 1fr; gap: 40px; }
  .testi-logo { position: static; height: 180px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-headline { font-size: 26px; }

  /* Logos */
  .logos { padding: 60px 0 80px; }
  .logos h2 { font-size: 24px; }

  /* Final CTA */
  .final-cta { padding: 70px 0 90px; }
  .final-cta h2 { font-size: 28px; }

  /* Footer */
  .footer > .section-inner { padding: 0 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .social-links-col { margin-top: 0; }
}

/* ════════════════════════════════════════════
   MOBILE — up to 720px
   ════════════════════════════════════════════ */
@media (max-width: 720px) {

  /* ─── Nav ─── */
  .nav { height: 64px; }
  .nav .section-inner { padding: 0 18px; }
  .nav-logo { width: 130px; height: 36px; }
  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    flex-direction: column; gap: 0;
    margin: 0; padding: 18px 24px;
    border-bottom: 1px solid rgb(217,222,229);
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav-links.is-open {
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
  .nav-link { padding: 14px 0; border-bottom: 1px solid rgb(232,236,242); font-size: 15px; }
  .nav-link:last-child { border-bottom: 0; }
  .nav-cta-group { margin-left: auto; gap: 10px; }
  .btn-portal { display: none; }
  .btn-demo { height: 32px; padding: 0 14px; font-size: 12px; }
  .nav-toggle { display: block; }

  /* ─── Hero ─── */
  .hero { min-height: auto; padding: 60px 0 80px; }
  .hero > .section-inner { padding: 0 22px; }
  .hero-img { transform: scale(1.1); }
  .hero-title { font-size: 30px; line-height: 1.15; }
  .hero-desc { font-size: 14px; margin-top: 18px; }
  .hero-ctas { flex-direction: column; gap: 10px; margin-top: 24px; }
  .hero-ctas > .btn { width: 100%; max-width: 320px; }
  .hero-bg-circle { width: 320px; height: 320px; right: -120px; opacity: .35; }
  .demo-card { height: 220px; margin-top: 32px; }

  /* ─── HIW ─── */
  .hiw { padding: 50px 0 60px; }
  .hex-deco { width: 360px; height: 400px; right: -120px; top: -30px; opacity: .12; }
  .hiw-title { font-size: 22px; }
  .flow { padding: 0 18px; gap: 14px; flex-direction: column; }
  .flow-arrow {
    transform: none;
    min-height: auto;
    gap: 8px;
  }
  /* Line: vertical instead of horizontal */
  .flow-arrow .line {
    width: 2px;
    height: 48px;
    background: rgb(26,49,93);
    animation: none; /* desktop glow doesn't read well at this size */
  }
  /* Arrowhead: pointing down instead of right */
  .flow-arrow .line::after {
    right: auto; left: 50%; top: auto; bottom: -1px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 9px solid rgb(26,49,93);
    border-bottom: 0;
    transform: translateX(-50%);
    animation: none;
  }
  /* Blue dot: travels top → bottom */
  .flow-arrow .line::before {
    top: 0; left: 50%;
    transform: translateX(-50%);
    animation: travel-vertical 2.4s ease-in-out infinite;
  }
  @keyframes travel-vertical {
    0%   { top: 0%;   opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
  }
  .flow-callout { margin: 22px auto 0; max-width: none; padding: 0 18px; text-align: center; }
  .flow-callout h4 { font-size: 14px; }
  .flow-callout p { font-size: 14px; }
  .stats { padding: 0 18px; grid-template-columns: 1fr; gap: 14px; margin-top: 40px; }
  .stat:nth-child(n) { min-height: 130px; padding: 22px 20px; align-items: center; text-align: center; }
  .stat .num { font-size: 32px; }
  .stat:nth-child(n+2) .num { font-size: 34px; }

  /* ─── Roles ─── */
  .roles { padding: 50px 0 60px; }
  .roles > .section-inner { padding: 0 22px; }
  .roles-head { gap: 36px; }
  .roles-title { font-size: 26px; }
  .roles-title::after { width: 80%; }
  .role-tabs { gap: 6px; }
  .role-tab { height: 32px; padding: 0 14px; font-size: 12px; }
  .roles-body { gap: 28px; margin-top: 30px; }
  .role-right h3 { font-size: 22px; }
  .acc-head { padding: 12px 14px; font-size: 14px; }
  .acc-body { font-size: 14px; }
  .role-cta { justify-content: center; }

  /* ─── Testimonials ─── */
  .testi { padding: 50px 0 60px; }
  .testi > .section-inner { padding: 0 22px; }
  .testi-headline { font-size: 22px; }
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-card { padding: 16px 18px; min-height: auto; }
  .testi-card p { font-size: 14px; }
  .testi-logo { height: 140px; }

  /* ─── Logos ─── */
  .logos { padding: 50px 0 60px; }
  .logos h2 { font-size: 20px; padding: 0 22px; }
  .logos h2::after { bottom: -22px; height: 22px; width: 140px; left: calc(50% - 70px); right: auto; }
  .logo-marquee { margin: 50px 0 16px; }
  .logo-track { gap: 50px; padding-right: 50px; }
  .logo-tile { height: 50px; min-width: 110px; font-size: 14px; }

  /* ─── Final CTA ─── */
  .final-cta { padding: 50px 0 70px; }
  .final-cta h2 { font-size: 24px; padding: 0 22px; }
  .final-cta p { font-size: 14px; padding: 0 22px; margin-bottom: 28px; }
  .final-cta .ctas { flex-direction: column; gap: 12px; padding: 0 22px; }
  .btn-final-primary, .btn-final-secondary { width: 100%; max-width: 320px; height: 44px; font-size: 14px; }

  /* ─── Footer ─── */
  .footer > .section-inner { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-col { display: flex; flex-direction: column; align-items: center; }
  .footer-logo { margin-left: auto; margin-right: auto; }
  .footer-col ul { justify-items: center; }
  .footer-col.dashes { min-height: auto; align-items: center; }
  .footer-col.dashes .dash { width: 40px; }
  .social-links-col { margin-top: 8px; align-items: center; }
  .socials { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* ─── Particles: less is more on small screens ─── */
  .hex-particles { opacity: 0.6; }
}

/* ════════════════════════════════════════════
   EXTRA SMALL — up to 420px
   ════════════════════════════════════════════ */
@media (max-width: 420px) {
  .hero-title { font-size: 26px; }
  .hiw-title { font-size: 20px; }
  .roles-title { font-size: 22px; }
  .testi-headline { font-size: 20px; }
  .final-cta h2 { font-size: 22px; }
  .logos h2 { font-size: 18px; }
}

/* ════════════════════════════════════════════
   HIW middle hex — scanning overlay
   Mounted on .hex-card, painted ABOVE .hex-content
   so the scan line sweeps over the ESTIMA3D logo.
   Its own clip-path clips to the hexagon outline.
   ════════════════════════════════════════════ */
.hex-card { position: relative; }
.hex-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.hex-scan-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
              rgba(1, 220, 255, 0.28) 0%,
              rgba(1, 180, 214, 0.10) 45%,
              transparent 75%);
  animation: hex-scan-pulse 2.6s ease-in-out infinite;
}
.hex-scan-grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg,
      rgba(1, 220, 255, 0.18) 0 1px,
      transparent 1px 12px),
    repeating-linear-gradient(90deg,
      rgba(1, 220, 255, 0.18) 0 1px,
      transparent 1px 12px);
  opacity: 0.7;
  mix-blend-mode: screen;
}
.hex-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  top: 0;
  background: linear-gradient(90deg,
              transparent 0%,
              rgba(1, 220, 255, 0.0) 5%,
              rgba(180, 240, 255, 1) 50%,
              rgba(1, 220, 255, 0.0) 95%,
              transparent 100%);
  box-shadow:
    0 0 18px rgba(1, 220, 255, 1),
    0 0 36px rgba(1, 180, 214, 0.8),
    0 0 60px rgba(1, 180, 214, 0.4);
  border-radius: 4px;
  animation: hex-scan-travel 2.6s ease-in-out infinite;
}
.hex-scan-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: rgba(1, 240, 255, 1);
  border-style: solid;
  border-width: 0;
  filter: drop-shadow(0 0 6px rgba(1, 220, 255, 0.95));
  animation: hex-scan-corner-blink 2.6s ease-in-out infinite;
}
.hex-scan-corner.tl { top: 22%; left: 24%; border-top-width: 2px; border-left-width: 2px; }
.hex-scan-corner.tr { top: 22%; right: 24%; border-top-width: 2px; border-right-width: 2px; }
.hex-scan-corner.bl { bottom: 22%; left: 24%; border-bottom-width: 2px; border-left-width: 2px; }
.hex-scan-corner.br { bottom: 22%; right: 24%; border-bottom-width: 2px; border-right-width: 2px; }

@keyframes hex-scan-travel {
  0%   { top: 0%;   opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
@keyframes hex-scan-pulse {
  0%, 100% { opacity: 0.45; }
  50%      { opacity: 1;    }
}
@keyframes hex-scan-corner-blink {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.15); }
}

/* Respect reduced motion / animations-off toggle */
.no-anim .hex-scan-line,
.no-anim .hex-scan-glow,
.no-anim .hex-scan-corner { animation: none; }

/* ════════════════════════════════════════════════════════════════════
   PRODUCT PAGE — matches Figma frame 2:1031
   Sections: .prod-hero / .prod-steps / .prod-adv / .prod-roles /
             .prod-suite
   Palette: navy #1a315d, cyan #01b4d6, cyan CTA #00a3d1, orange #f5a623,
            text #1a1f2e, light bg #f2f5f7, border #d9dee5
   ════════════════════════════════════════════════════════════════════ */

/* ───── Shared inner-page hero baseline (Product / About / Pricing / FAQ / Career / Contact) ───── */
.prod-hero,
.about-hero,
.pricing-hero,
.faq-hero,
.career-hero,
.contact-hero {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-hero > .section-inner,
.about-hero > .section-inner,
.pricing-hero > .section-inner,
.faq-hero > .section-inner,
.career-hero > .section-inner,
.contact-hero > .section-inner {
  width: 100%;
}

/* ───── HERO ───── */
.prod-hero {
  background: rgb(26,49,93);
  color: #fff;
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.prod-hero .hex-particles { opacity: 0.4; }
.prod-hero__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('assets/prod-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
.prod-hero__inner { text-align: center; padding: 0 57px; position: relative; z-index: 2; }
.prod-hero__title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: 0.005em;
  color: #fff;
  margin: 0 0 24px;
}
.prod-hero__accent { color: rgb(245,166,35); }
.prod-hero__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 900px;
  margin: 0 auto;
}

/* ───── STEPS ───── */
.prod-steps {
  background: #fff;
  padding: 60px 0 70px;
}
.prod-steps__head { padding: 0 90px; margin-bottom: 40px; }
.prod-steps__eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(92,92,92);
  margin-bottom: 14px;
}
.prod-steps__title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  color: rgb(26,31,46);
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
.prod-steps__title-text { display: inline-block; }
.prod-steps__underline {
  position: absolute;
  left: 59%;
  bottom: -8px;
  width: 32%;
  height: 12px;
  pointer-events: none;
}
.prod-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 0 90px;
}
.prod-step {
  background: rgb(242,245,247);
  border: 1px solid rgb(217,222,229);
  border-radius: 10px;
  padding: 22px 24px 24px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.prod-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -22px rgba(13,31,64,0.18);
  border-color: rgba(1,180,214,0.45);
}
.prod-step__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 14px;
}
.prod-step__num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  color: rgb(1,180,214);
}
.prod-step__icon {
  margin-top: 50px;
  width: 70px;
  height: 70px;
  color: rgb(1,180,214);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s ease;
}
.prod-step__icon svg { width: 100%; height: 100%; display: block; }
.prod-step__icon img { width: 100%; height: 100%; object-fit: contain; }
.prod-step:hover .prod-step__icon { transform: scale(1.08) rotate(-6deg); }
.prod-step__name {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  color: rgb(26,31,46);
  text-align: left;
  margin: 0 0 10px;
}
.prod-step__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgb(26,31,46);
  margin: 0;
}
.prod-step__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(26,31,46,0.55);
  margin: 12px 0 0;
}

/* ───── ADVANTAGE BAND ───── */
.prod-adv {
  background: rgb(26,49,93);
  padding: 48px 0;
}
.prod-adv__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 80px;
  gap: 80px;
  flex-wrap: wrap;
}
.prod-adv__title {
  margin: 0;
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 1.1;
  color: rgb(245,166,35);
  letter-spacing: 0.005em;
}
.prod-adv__tabs {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.prod-adv__tab {
  background: transparent;
  border: 0;
  padding: 8px 2px 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #fff;
  cursor: pointer;
  position: relative;
  transition: opacity .25s ease;
  opacity: 0.65;
}
.prod-adv__tab.is-active { opacity: 1; }
.prod-adv__tab:hover { opacity: 1; }
.prod-adv__tab-label { display: inline-block; }
.prod-adv__tab-underline {
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 160px;
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
  display: block;
}
.prod-adv__tab.is-active .prod-adv__tab-underline { opacity: 1; }

/* ───── BROWSE BY ROLE ───── */
.prod-roles {
  background: #fff;
  padding: 80px 0 100px;
  position: relative;
}
.prod-roles__head { text-align: center; max-width: 850px; margin: 0 auto 28px; padding: 0 22px; }
.prod-roles__eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(26,31,46);
  margin-bottom: 14px;
  position: relative;
  padding-left: 22px;
}
.prod-roles__eyebrow::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 11px; height: 11px; border-radius: 50%;
  background: rgb(1,180,214);
  transform: translateY(-50%);
}
.prod-roles__title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1;
  color: rgb(26,31,46);
  margin: 0;
}
.prod-roles__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 40px;
  padding: 0 22px;
}
.prod-roles__tab {
  background: #fff;
  border: 1px solid rgb(217,222,229);
  border-radius: 20px;
  height: 32px;
  padding: 0 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: rgb(0,0,0);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.prod-roles__tab:hover { border-color: rgb(1,180,214); color: rgb(1,180,214); }
.prod-roles__tab.is-active {
  background: rgb(1,180,214);
  border-color: rgb(1,180,214);
  color: #fff;
}
.prod-roles__body {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 0 80px;
}
.prod-roles__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 631 / 421;
  border-radius: 12px;
  overflow: hidden;
  background: rgb(221,221,221);
  border: 1px solid #fff;
  box-shadow: 0 30px 50px -22px rgba(13,31,64,0.18);
}
.prod-roles__photo-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .45s ease;
}
.prod-roles__photo-img.is-active { opacity: 1; }
.prod-roles__edge {
  position: relative;
  min-height: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  color: rgb(26,31,46);
  margin: 0 0 24px;
}
.prod-roles__edge-text {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
}
.prod-roles__edge-text.is-active { position: relative; opacity: 1; }
.prod-roles__edge-accent { color: rgb(1,180,214); }
.prod-roles__acc { display: grid; gap: 12px; margin-bottom: 28px; }
.prod-roles__acc-pane { display: none; gap: 12px; flex-direction: column; }
.prod-roles__acc-pane.is-active { display: flex; }
.prod-roles__acc-item {
  background: #fff;
  border: 1px solid rgb(217,222,229);
  border-radius: 7px;
  overflow: hidden;
  transition: background .3s ease, border-color .3s ease;
}
.prod-roles__acc-item.is-open {
  background: rgb(245,166,35);
  border-color: rgb(245,166,35);
}
.prod-roles__acc-head {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font: inherit;
}
.prod-roles__acc-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgb(26,49,93);
  transition: color .25s ease;
}
.prod-roles__acc-item.is-open .prod-roles__acc-title { color: #fff; }
.prod-roles__acc-chev {
  width: 14px; height: 14px;
  color: rgb(26,49,93);
  transition: transform .3s ease, color .25s ease;
}
.prod-roles__acc-item.is-open .prod-roles__acc-chev {
  transform: rotate(180deg);
  color: #fff;
}
.prod-roles__acc-chev svg { width: 100%; height: 100%; }
.prod-roles__acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.prod-roles__acc-item.is-open .prod-roles__acc-body { max-height: 220px; }
.prod-roles__acc-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.95);
  margin: 0;
  padding: 0 18px 16px;
}
.prod-roles__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(0,163,209);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  transition: transform .2s ease, background .25s ease, box-shadow .3s ease;
}
.prod-roles__cta:hover {
  background: rgb(1,180,214);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(1,180,214,0.5);
}

/* ───── PRODUCT SUITE ───── */
.prod-suite {
  background: #fff;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.prod-suite__deco {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 480px;
  height: 480px;
  background-image: url('assets/suite-deco.png');
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
  pointer-events: none;
  will-change: transform;
  z-index: 1;
}
.prod-suite > .section-inner { position: relative; z-index: 2; }
.prod-suite__head {
  text-align: left;
  margin: 0 0 48px;
  padding: 0 90px;
}
.prod-suite__eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(26,31,46);
  margin-bottom: 18px;
  position: relative;
  padding-left: 22px;
}
.prod-suite__eyebrow::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 11px; height: 11px; border-radius: 50%;
  background: rgb(1,180,214);
  transform: translateY(-50%);
}
.prod-suite__title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.18;
  color: rgb(26,31,46);
  margin: 0;
}
.prod-suite__brand { color: rgb(0,163,209); }
.prod-suite__body {
  display: grid;
  grid-template-columns: 0.8fr 1.05fr 1.25fr;
  gap: 50px;
  align-items: start;
  padding: 0 90px;
}
.prod-suite__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.prod-suite__item {
  position: relative;
  padding: 6px 0 6px 22px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: rgb(26,31,46);
  cursor: pointer;
  user-select: none;
  transition: color .25s ease, transform .25s ease;
}
.prod-suite__item:hover { color: rgb(0,163,209); transform: translateX(2px); }
.prod-suite__bar {
  position: absolute;
  left: 0; top: 50%;
  width: 4px; height: 22px;
  background: transparent;
  transform: translateY(-50%);
  border-radius: 2px;
  transition: background .25s ease;
}
.prod-suite__item.is-active .prod-suite__bar { background: rgb(1,180,214); }
.prod-suite__item.is-active { font-weight: 500; color: rgb(26,49,93); }

/* Roadmap (not-yet-released) modules — dimmed, with a small tag. */
.prod-suite__item.is-roadmap { color: rgb(150,157,170); }
.prod-suite__item.is-roadmap.is-active { color: rgb(120,128,143); }
.prod-suite__item-name { display: inline; }
.prod-suite__roadmap-tag {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgb(120,128,143);
  background: rgba(120,128,143,0.12);
  border: 1px solid rgba(120,128,143,0.28);
  border-radius: 999px;
  vertical-align: middle;
  white-space: nowrap;
}
.prod-suite__roadmap-flag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgb(0,140,170);
  background: rgba(1,180,214,0.1);
  border-radius: 999px;
}

.prod-suite__text {
  position: relative;
  padding-top: 4px;
  min-height: 240px;
}
.prod-suite__text-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear .5s;
}
.prod-suite__text-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s linear 0s;
}
.prod-suite__body-head {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: rgb(26,31,46);
  margin: 0 0 14px;
}
.prod-suite__body-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: rgb(26,31,46);
  margin: 0;
}
.prod-suite__visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
}
.prod-suite__panels {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  perspective: 1400px;
  perspective-origin: 50% 50%;
}
.prod-suite__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
  transition: visibility 0s linear .6s;
}
.prod-suite__panel.is-active {
  opacity: 1;
  visibility: visible;
  transition: visibility 0s linear 0s;
}
.prod-suite__bar { transform-origin: center center; will-change: transform; }
.prod-suite__image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  border: 4px solid rgba(26,31,46,0.08);
  box-shadow: 0 28px 50px -22px rgba(13,31,64,0.25);
}
.prod-suite__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(0,163,209);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 8px;
  transition: transform .2s ease, background .25s ease, box-shadow .3s ease;
}
.prod-suite__cta:hover {
  background: rgb(1,180,214);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(1,180,214,0.5);
}

/* ───── WHY MULTIDISCIPLINARY (research/white-paper section) ───── */
.prod-research {
  background: rgb(247,247,250);
  padding: 100px 0;
}
/* Inset the content like every other product section (was flush to the edge). */
.prod-research > .section-inner { padding: 0 90px; }
.prod-research__head { max-width: 760px; }
.prod-research__eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  color: rgb(1,180,214);
  margin-bottom: 16px;
}
.prod-research__title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.2;
  color: rgb(26,49,93);
  margin: 0 0 20px;
}
.prod-research__accent { color: rgb(245,166,35); }
.prod-research__intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgb(60,66,80);
  margin: 0;
}
.prod-research__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.prod-research__stat {
  background: #fff;
  border: 1px solid rgba(26,49,93,0.08);
  border-radius: 14px;
  padding: 30px 28px;
  box-shadow: 0 20px 44px -32px rgba(13,31,64,0.35);
}
.prod-research__stat-value {
  display: block;
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  color: rgb(1,180,214);
  margin-bottom: 14px;
}
.prod-research__stat-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: rgb(60,66,80);
}
.prod-research__quote {
  margin: 0 0 40px;
  background: rgb(26,49,93);
  border-radius: 16px;
  padding: 44px 48px;
  color: #fff;
}
.prod-research__quote blockquote {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.35;
  margin: 0;
}
.prod-research__quote figcaption {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 18px;
}
.prod-research__thesis {
  max-width: 860px;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: rgb(26,31,46);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════════
   PRODUCT PAGE — RESPONSIVE
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .prod-hero { padding: 60px 0 70px; }
  .prod-hero__title { font-size: 38px; }
  .prod-hero__desc { font-size: 16px; }
  .prod-steps { padding: 70px 0 80px; }
  .prod-steps__head { padding: 0 40px; }
  .prod-steps__title { font-size: 30px; }
  .prod-steps__grid { grid-template-columns: 1fr; gap: 20px; padding: 0 40px; }
  .prod-step { height: auto; min-height: 280px; }
  .prod-adv__inner { padding: 0 40px; gap: 24px; justify-content: center; text-align: center; }
  .prod-adv__title { font-size: 28px; }
  .prod-roles { padding: 70px 0 80px; }
  .prod-roles__title { font-size: 30px; }
  .prod-roles__body { grid-template-columns: 1fr; gap: 40px; padding: 0 40px; }
  .prod-roles__edge { font-size: 28px; }
  .prod-suite { padding: 60px 0 80px; }
  .prod-suite__head { padding: 0 40px; }
  .prod-suite__title { font-size: 30px; }
  .prod-suite__body { grid-template-columns: 1fr 1fr; gap: 36px; padding: 0 40px; }
  .prod-suite__visual { grid-column: 1 / -1; align-items: center; max-width: 480px; margin: 0 auto; width: 100%; }
  .prod-suite__item { font-size: 16px; }
  .prod-suite__deco { width: 280px; height: 280px; }
  .prod-research > .section-inner { padding: 0 40px; }
}

@media (max-width: 768px) {
  .prod-hero { padding: 50px 0 60px; }
  .prod-hero__inner { padding: 0 22px; }
  .prod-hero__title { font-size: 28px; line-height: 1.15; }
  .prod-hero__desc { font-size: 14px; }
  .prod-steps { padding: 50px 0 60px; }
  .prod-steps__head { padding: 0 22px; margin-bottom: 30px; }
  .prod-steps__title { font-size: 24px; }
  .prod-steps__grid { padding: 0 22px; gap: 14px; }
  .prod-step { min-height: auto; padding: 20px 22px; }
  .prod-step__num { font-size: 30px; }
  .prod-step__icon { width: 60px; height: 60px; }
  .prod-step__name { font-size: 26px; margin: 24px 0 14px; }
  .prod-step__body { font-size: 15px; }
  .prod-adv { padding: 32px 0; }
  .prod-adv__inner { padding: 0 22px; flex-direction: column; gap: 16px; }
  .prod-adv__title { font-size: 22px; }
  .prod-adv__tabs { gap: 24px; }
  .prod-roles { padding: 50px 0 60px; }
  .prod-roles__title { font-size: 24px; }
  .prod-roles__body { padding: 0 22px; gap: 28px; }
  .prod-roles__edge { font-size: 22px; min-height: 32px; }
  .prod-roles__tabs { padding: 0 14px; gap: 8px; }
  .prod-roles__tab { font-size: 11px; padding: 0 12px; height: 30px; }
  .prod-suite { padding: 50px 0 60px; }
  .prod-suite__head { padding: 0 22px; margin-bottom: 30px; }
  .prod-suite__title { font-size: 24px; }
  .prod-suite__body { grid-template-columns: 1fr; padding: 0 22px; gap: 28px; }
  .prod-suite__visual { align-items: center; }
  .prod-suite__item { font-size: 16px; padding: 6px 0 6px 18px; }
  .prod-suite__bar { height: 20px; width: 4px; }
  .prod-suite__deco { width: 180px; height: 180px; opacity: 0.7; }
  .prod-research { padding: 56px 0; }
  .prod-research > .section-inner { padding: 0 22px; }
  .prod-research__title { font-size: 24px; }
  .prod-research__intro { font-size: 15px; }
  .prod-research__stats { grid-template-columns: 1fr; gap: 16px; margin: 32px 0; }
  .prod-research__stat { padding: 24px 22px; }
  .prod-research__stat-value { font-size: 38px; }
  .prod-research__quote { margin: 0 0 32px; padding: 30px 26px; }
  .prod-research__quote blockquote { font-size: 20px; }
  .prod-research__thesis { font-size: 15px; }
}

@media (max-width: 420px) {
  .prod-hero__title { font-size: 24px; }
  .prod-steps__title,
  .prod-roles__title,
  .prod-suite__title { font-size: 22px; }
  .prod-adv__title { font-size: 20px; }
}

/* ════════════════════════════════════════════════════════════════════
   ABOUT US PAGE — matches Figma frame 2:1237
   Sections: .about-hero / .about-team / .about-mission / .about-values /
             .about-leaders / .about-finalcta
   ════════════════════════════════════════════════════════════════════ */

/* ───── HERO ───── */
.about-hero {
  background: rgb(26,49,93);
  color: #fff;
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.about-hero__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('assets/prod-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
.about-hero .hex-particles { opacity: 0.35; position: relative; z-index: 1; }
.about-hero__inner { text-align: center; padding: 0 57px; position: relative; z-index: 2; }
.about-hero__title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 22px;
}
.about-hero__accent { color: rgb(245,166,35); }
.about-hero__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 800px;
  margin: 0 auto;
}

/* ───── TEAM BEHIND ───── */
.about-team {
  background: #fff;
  padding: 100px 0;
}
.about-team__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 0 80px;
}
.about-team__title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  color: rgb(26,31,46);
  margin: 0 0 28px;
  max-width: 100%;
}
.about-team__accent { color: rgb(245,166,35); }
.about-team__body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: rgb(26,31,46);
  margin: 0 0 18px;
}
.about-team__body p:last-child { margin-bottom: 0; }
.about-team__visual {
  position: relative;
  aspect-ratio: 688 / 480;
  width: 100%;
}
.about-team__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  border: 1px solid rgb(217,222,229);
  box-shadow: 0 30px 60px -22px rgba(13,31,64,0.22);
  z-index: 2;
}
.about-team__deco {
  position: absolute;
  inset: -5% -5% -5% 13%;
  border: 2.5px solid rgb(245,166,35);
  border-radius: 2px;
  transform: translate3d(0px, 0px, 0px) rotate(25deg);
  transform-origin: center center;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

/* ───── MISSION BAND ───── */
.about-mission {
  background: rgb(26,49,93);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.about-mission__deco {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 520px;
  height: 520px;
  background-image: url('assets/mission-deco.png');
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}
.about-mission .hex-deco { opacity: 0.25; }
.about-mission__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 0 80px;
  position: relative;
  z-index: 2;
}
.about-mission__visual {
  position: relative;
  aspect-ratio: 615 / 395;
  width: 100%;
  /* Clip the over-sized image so the scroll parallax slides within this rounded
     frame instead of detaching and revealing the navy background. */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 30px 60px -22px rgba(0,0,0,0.55);
  z-index: 2;
}
.about-mission__image {
  position: absolute;
  /* Taller than the frame (top/bottom -18% = 136% height) so GSAP can shift it
     up/down for the parallax without exposing any gap at the edges. */
  inset: -18% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.about-mission__title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 28px;
}
.about-mission__accent { color: rgb(245,166,35); }
.about-mission__body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin: 0 0 18px;
}
.about-mission__body p:last-child { margin-bottom: 0; }

/* ───── VALUES ───── */
.about-values {
  background: rgb(247,247,250);
  padding: 100px 0;
  position: relative;
}
.about-values__head { padding: 0 80px; margin-bottom: 36px; }
.about-values__eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(92,92,92);
  position: relative;
  padding-left: 22px;
}
.about-values__eyebrow::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 11px; height: 11px; border-radius: 50%;
  background: rgb(1,180,214);
  transform: translateY(-50%);
}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 22px;
  row-gap: 40px;
  padding: 0 80px;
}
.about-value {
  background: #fff;
  border: 1px solid rgb(217,222,229);
  border-radius: 12px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 200px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.about-value:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 50px -22px rgba(13,31,64,0.2);
  border-color: rgba(1,180,214,0.45);
}
.about-value__icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s ease;
}
.about-value:hover .about-value__icon { transform: scale(1.08) rotate(-6deg); }
.about-value__icon--placeholder svg { width: 100%; height: 100%; }
.about-value__name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  color: rgb(0,163,209);
  margin: 0;
}
/* The 2nd tile (--desc) is now a flip card like the others; only its grid
   placement below is kept — the old static navy panel styling was removed. */
/* Equal-width cards on a 6-col grid. Floating vertical offsets are
   defaults applied via transform, exactly as specified. */
.about-value--integrity  { grid-column: 1 / span 3; grid-row: 1; }
.about-value--desc       { grid-column: 4 / span 3; grid-row: 1; transform: translate(0px, -15px); }
.about-value--efficiency { grid-column: 1 / span 2; grid-row: 2; }
.about-value--respect    { grid-column: 3 / span 2; grid-row: 2; transform: translate(0px, 35px); }
.about-value--collab     { grid-column: 5 / span 2; grid-row: 2; transform: translate(0px, -16px); }

/* ───── Flip-on-click value cards (single-open, toggled in main.js) ───── */
.about-value.is-flip {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  perspective: 1200px;
  overflow: visible;
  cursor: pointer;
}
.about-value.is-flip:hover { box-shadow: none; border-color: transparent; }
.about-value.is-flip:focus-visible { outline: 2px solid rgb(0,163,209); outline-offset: 6px; border-radius: 12px; }
.about-value__inner {
  position: relative;
  width: 100%;
  min-height: 200px;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.about-value.is-flip.is-open .about-value__inner { transform: rotateY(180deg); }
.about-value__face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 36px 40px;
  border-radius: 12px;
  border: 1px solid rgb(217,222,229);
  background: #fff;
  box-shadow: 0 18px 40px -26px rgba(13,31,64,0.22);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.about-value__face--back {
  transform: rotateY(180deg);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  background: rgb(26,49,93);
  border-color: rgb(26,49,93);
  color: #fff;
}
.about-value__back-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  color: rgb(1,180,214);
  margin: 0;
}
.about-value__back-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin: 0;
}
/* No-animation fallback: no 3D flip, just keep the front face readable */
.no-anim .about-value__inner { transition: none; }
.no-anim .about-value.is-flip.is-open .about-value__inner { transform: none; }

/* ───── LEADERS ───── */
.about-leaders {
  background: #fff;
  padding: 80px 0 100px;
}
.about-leaders__head { padding: 0 80px; margin-bottom: 40px; max-width: 900px; }
.about-leaders__eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(92,92,92);
  margin-bottom: 16px;
  position: relative;
  padding-left: 22px;
}
.about-leaders__eyebrow::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 11px; height: 11px; border-radius: 50%;
  background: rgb(1,180,214);
  transform: translateY(-50%);
}
.about-leaders__title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 1.15;
  color: rgb(0,163,209);
  margin: 0;
}
/* ── Leaders carousel ── */
.about-leaders__carousel {
  position: relative;
  padding: 0 80px;
  --leaders-per: 3;            /* slides visible per view (overridden per breakpoint) */
  --leaders-gap: 30px;
}
.about-leaders__viewport {
  overflow: hidden;
}
.about-leaders__track {
  display: flex;
  gap: var(--leaders-gap);
  will-change: transform;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
}
.about-leader {
  flex: 0 0 calc((100% - (var(--leaders-per) - 1) * var(--leaders-gap)) / var(--leaders-per));
  max-width: calc((100% - (var(--leaders-per) - 1) * var(--leaders-gap)) / var(--leaders-per));
  text-align: center;
  transition: transform .35s ease;
}
.about-leader:hover { transform: translateY(-6px); }
.about-leader--clickable { cursor: pointer; }
.about-leader--clickable:focus-visible { outline: 2px solid rgb(0,163,209); outline-offset: 6px; border-radius: 12px; }
.about-leader__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgb(0,163,209);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s ease, transform .3s ease;
}
.about-leader--clickable:hover .about-leader__more,
.about-leader--clickable:focus-visible .about-leader__more { opacity: 1; transform: translateY(0); }
.about-leaders__nav {
  position: absolute;
  top: calc(50% - 40px);
  transform: translateY(-50%);
  z-index: 3;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgb(217,222,229);
  border-radius: 50%;
  background: #fff;
  color: rgb(0,163,209);
  cursor: pointer;
  box-shadow: 0 14px 30px -14px rgba(13,31,64,.28);
  transition: background .2s ease, color .2s ease, opacity .2s ease, box-shadow .2s ease;
}
.about-leaders__nav:hover { background: rgb(0,163,209); color: #fff; }
.about-leaders__nav--prev { left: 18px; }
.about-leaders__nav--next { right: 18px; }
.about-leaders__nav[disabled] { opacity: 0; pointer-events: none; }
.about-leaders__carousel.is-static .about-leaders__nav,
.about-leaders__carousel.is-static .about-leaders__dots { display: none; }
.about-leaders__dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 34px;
}
.about-leaders__dots button {
  width: 9px; height: 9px; padding: 0;
  border: 0; border-radius: 50%;
  background: rgb(200,208,217);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.about-leaders__dots button.is-active { background: rgb(0,163,209); transform: scale(1.25); }
.about-leader__photo {
  width: 100%;
  aspect-ratio: 380 / 360;
  background-color: rgb(242,245,247);
  background-size: cover;
  background-position: center;
  border: 1px solid rgb(217,222,229);
  border-radius: 10px;
  margin-bottom: 20px;
  transition: box-shadow .4s ease;
}
.about-leader:hover .about-leader__photo {
  box-shadow: 0 28px 50px -22px rgba(13,31,64,0.25);
}
.about-leader__name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: rgb(26,31,46);
  margin: 0 0 4px;
}
.about-leader__role {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgb(26,31,46);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════════
   ABOUT US — RESPONSIVE
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-hero { padding: 60px 0 70px; }
  .about-hero__title { font-size: 38px; }
  .about-team { padding: 80px 0; }
  .about-team__inner { gap: 50px; padding: 0 40px; grid-template-columns: 1fr; }
  .about-team__title { font-size: 30px; }
  .about-team__visual { max-width: 600px; margin: 0 auto; }
  .about-mission { padding: 80px 0; }
  .about-mission__inner { gap: 50px; padding: 0 40px; grid-template-columns: 1fr; }
  .about-mission__title { font-size: 30px; }
  .about-mission__visual { max-width: 600px; margin: 0 auto; }
  .about-values { padding: 80px 0; }
  .about-values__head { padding: 0 40px; }
  .about-values__grid { padding: 0 40px; grid-template-columns: repeat(4, 1fr); }
  .about-value--integrity  { grid-column: 1 / span 2; grid-row: 1; }
  .about-value--desc       { grid-column: 3 / span 2; grid-row: 1; }
  .about-value--efficiency { grid-column: 1 / span 2; grid-row: 2; }
  .about-value--respect    { grid-column: 3 / span 2; grid-row: 2; }
  .about-value--collab     { grid-column: 1 / -1; grid-row: 3; }
  .about-value__name { font-size: 30px; }
  .about-leaders { padding: 70px 0 80px; }
  .about-leaders__head { padding: 0 40px; }
  .about-leaders__title { font-size: 30px; }
  .about-leaders__carousel { padding: 0 56px; --leaders-per: 2; --leaders-gap: 24px; }
  .about-leaders__nav--prev { left: 6px; }
  .about-leaders__nav--next { right: 6px; }
}

@media (max-width: 768px) {
  .about-hero { padding: 50px 0 60px; }
  .about-hero__inner { padding: 0 22px; }
  .about-hero__title { font-size: 26px; }
  .about-hero__subtitle { font-size: 14px; }
  .about-team { padding: 60px 0; }
  .about-team__inner { padding: 0 22px; gap: 36px; }
  .about-team__title { font-size: 24px; }
  .about-team__body p { font-size: 15px; }
  .about-team__deco { display: none; }
  .about-mission { padding: 60px 0; }
  .about-mission__inner { padding: 0 22px; gap: 36px; }
  .about-mission__title { font-size: 24px; }
  .about-mission__body p { font-size: 15px; }
  /* Oversized (520px) hexagon deco overflows a phone viewport and overlaps the
     image/title — hide it on mobile, same as .about-team__deco above. */
  .about-mission__deco { display: none; }
  .about-values { padding: 60px 0; }
  .about-values__head { padding: 0 22px; }
  .about-values__grid { padding: 0 22px; grid-template-columns: 1fr; gap: 14px; }
  .about-value--integrity, .about-value--desc,
  .about-value--efficiency, .about-value--respect, .about-value--collab {
    grid-column: 1 / -1; grid-row: auto;
  }
  .about-value { padding: 24px 22px; min-height: auto; gap: 18px; }
  .about-value__name { font-size: 26px; }
  .about-value__icon { width: 60px; height: 60px; }
  .about-value__desc { font-size: 15px; text-align: center; }
  .about-leaders { padding: 50px 0 60px; }
  .about-leaders__head { padding: 0 22px; margin-bottom: 28px; }
  .about-leaders__title { font-size: 24px; }
  .about-leaders__carousel { padding: 0 22px; --leaders-per: 1; --leaders-gap: 20px; }
  .about-leaders__viewport { max-width: 360px; margin: 0 auto; }
  .about-leaders__nav { top: auto; bottom: -8px; transform: none; width: 42px; height: 42px; }
  .about-leaders__nav--prev { left: calc(50% - 52px); }
  .about-leaders__nav--next { right: calc(50% - 52px); }
  .about-leaders__dots { margin-top: 58px; }
}

@media (max-width: 420px) {
  .about-hero__title { font-size: 22px; }
  .about-team__title,
  .about-mission__title,
  .about-leaders__title { font-size: 22px; }
}

/* ════════════════════════════════════════════════════════════════════
   PRICING PAGE — matches Figma frame 3:1570
   Sections: .pricing-hero / .pricing-plans / .pricing-tw
   ════════════════════════════════════════════════════════════════════ */

/* ───── HERO (same shape as about-hero) ───── */
.pricing-hero {
  background: rgb(26,49,93);
  color: #fff;
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.pricing-hero__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('assets/prod-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
.pricing-hero .hex-particles { opacity: 0.35; position: relative; z-index: 1; }
.pricing-hero__inner { text-align: center; padding: 0 57px; position: relative; z-index: 2; }
.pricing-hero__title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 22px;
}
.pricing-hero__accent { color: rgb(245,166,35); }
.pricing-hero__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 800px;
  margin: 0 auto;
}

/* ───── PLANS ───── */
.pricing-plans {
  background: #fff;
  padding: 80px 0 100px;
}
.pricing-plans__head { text-align: center; margin: 0 0 50px; padding: 0 80px; }
.pricing-plans__title,
.pricing-plans__subtitle,
.pricing-plans__promo {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-plans__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  color: rgb(26,31,46);
  margin-top: 0;
  margin-bottom: 14px;
}
.pricing-plans__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgb(26,31,46);
  margin-top: 0;
  margin-bottom: 10px;
}
.pricing-plans__promo {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: rgb(0,163,209);
  margin-top: 0;
  margin-bottom: 30px;
}
.pricing-plans__controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  position: relative;
}
.pricing-plans__toggle { grid-column: 2; justify-self: center; }
.pricing-plans__toggle {
  display: inline-flex;
  background: #fff;
  border: 1px solid rgb(217,222,229);
  border-radius: 999px;
  padding: 4px;
  position: relative;
}
.pricing-plans__toggle-btn {
  background: transparent;
  border: 0;
  padding: 8px 22px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgb(26,31,46);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .25s ease, color .25s ease;
}
.pricing-plans__toggle-btn.is-active {
  background: rgb(0,163,209);
  color: #fff;
}
.pricing-plans__toggle-pill {
  background: rgb(245,166,35);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
}
.pricing-plans__toggle-btn:not(.is-active) .pricing-plans__toggle-pill { background: rgb(245,166,35); }
.pricing-plans__custom {
  grid-column: 3;
  justify-self: end;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgb(92,92,92);
  text-decoration: none;
  transition: color .25s ease;
  white-space: nowrap;
}
.pricing-plans__custom:hover { color: rgb(0,163,209); text-decoration: underline; }

.pricing-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 80px;
  margin-top: 16px;
}
/* Column count adapts to how many cards are visible (set from PHP based on the
   backend show/hide toggles). 1-5 across on desktop. */
.pricing-plans__grid--cols-1 { grid-template-columns: minmax(0, 360px); justify-content: center; }
.pricing-plans__grid--cols-2 { grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 780px; margin-left: auto; margin-right: auto; }
.pricing-plans__grid--cols-3 { grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pricing-plans__grid--cols-4 { grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 0 48px; }
.pricing-plans__grid--cols-5 { grid-template-columns: repeat(5, 1fr); gap: 16px; padding: 0 32px; }

/* On Demand card — per-page, distinct cyan accent so it reads as its own tier. */
.pricing-plan--ondemand {
  border-color: rgb(1,180,214);
  box-shadow: 0 26px 54px -34px rgba(1,180,214,0.5);
}
.pricing-plan--ondemand .pricing-plan__badge {
  background: rgba(1,180,214,0.12);
  color: rgb(0,140,170);
}
/* CTA colours come from the shared rules (blue default, amber on hover); the
   first card also gets an amber default via the :first-child rule below. */
/* 3-5 across step down to 2-up between 1025-1200px; the ≤1024 rule further down
   collapses every plan grid to a single centered column. */
@media (min-width: 1025px) and (max-width: 1200px) {
  .pricing-plans__grid--cols-3,
  .pricing-plans__grid--cols-4,
  .pricing-plans__grid--cols-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; padding: 0 40px; max-width: 760px; margin-left: auto; margin-right: auto;
  }
}

/* ───── Pay-as-you-go horizontal strip (under the 3 plan columns) ───── */
.pricing-payg {
  margin: 28px 80px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.7fr auto;
  align-items: center;
  gap: 36px;
  background: #fff;
  border: 1px solid rgb(0,163,209);
  border-radius: 14px;
  padding: 26px 36px;
  box-shadow: 0 24px 50px -30px rgba(13,31,64,0.25);
}
.pricing-payg__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.pricing-payg__name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: rgb(26,31,46);
  margin: 0;
}
.pricing-payg__badge {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgb(0,120,150);
  background: rgba(1,180,214,0.12);
  border-radius: 999px;
  padding: 4px 12px;
}
.pricing-payg__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: rgb(92,92,92);
  margin: 0;
}
.pricing-payg__price { display: flex; align-items: baseline; gap: 4px; white-space: nowrap; }
.pricing-payg__amount {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: rgb(26,31,46);
}
.pricing-payg__unit { font-family: 'DM Sans', sans-serif; font-size: 16px; color: rgb(92,92,92); }
.pricing-payg__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px 26px;
}
.pricing-payg__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgb(26,31,46);
}
.pricing-payg__features .pricing-plan__check { width: 18px; height: 18px; flex-shrink: 0; }
.pricing-payg__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(0,163,209);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 8px;
  white-space: nowrap;
  transition: transform .2s ease, background .25s ease, box-shadow .3s ease;
}
.pricing-payg__cta:hover {
  background: rgb(1,180,214);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(1,180,214,0.5);
}
@media (max-width: 1024px) {
  .pricing-payg {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 28px 40px 0;
    text-align: center;
    justify-items: center;
  }
  .pricing-payg__head { justify-content: center; }
  .pricing-payg__features { grid-template-columns: 1fr; justify-items: start; text-align: left; }
}
@media (max-width: 600px) {
  .pricing-payg { margin: 24px 22px 0; padding: 24px; }
}
.pricing-plan {
  background: #fff;
  border: 1px solid rgb(0,163,209);
  border-radius: 12px;
  padding: 36px 30px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}
.pricing-plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 60px -24px rgba(0,163,209,0.28);
}
.pricing-plan__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.pricing-plan__name {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 27px;
  color: rgb(26,31,46);
  margin: 0;
}
.pricing-plan__badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgb(1,180,214);
  border: 1px solid rgb(0,163,209);
  border-radius: 16px;
  padding: 4px 12px;
  white-space: nowrap;
}
.pricing-plan__credits {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgb(26,31,46);
  margin: 0 0 18px;
}
.pricing-plan__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 4px;
}
.pricing-plan__price-old {
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  color: rgb(26,31,46);
  text-decoration: line-through;
}
.pricing-plan__price-new {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  color: rgb(26,31,46);
  font-weight: 500;
}
.pricing-plan__price-unit {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: rgb(26,31,46);
  font-weight: 400;
}
.pricing-plan__per-page {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgb(26,31,46);
  margin: 0 0 24px;
}
.pricing-plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
  flex: 1;
}
.pricing-plan__features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: rgb(26,31,46);
}
.pricing-plan__check { width: 22px; height: 22px; flex-shrink: 0; }
.pricing-plan__cta {
  display: block;
  text-align: center;
  border-radius: 23px;
  padding: 16px 22px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  background: rgb(1,180,214);
  transition: transform .2s ease, box-shadow .3s ease, background .25s ease;
}
/* All plan buttons turn amber/yellow on hover. */
.pricing-plan__cta:hover {
  background: rgb(245,166,35);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(245,166,35,0.5);
}
/* The first plan card (FREE) is amber by default; every other card stays blue
   and only turns amber on hover (rule above). */
.pricing-plans__grid .pricing-plan:first-child .pricing-plan__cta { background: rgb(245,166,35); }
.pricing-plans__grid .pricing-plan:first-child .pricing-plan__cta:hover { background: rgb(232,158,28); }

/* ───── TWO WAYS TO WORK ───── */
.pricing-tw {
  background: rgb(247,247,250);
  padding: 90px 0 100px;
}
.pricing-tw__head { text-align: center; max-width: 820px; margin: 0 auto 40px; padding: 0 22px; }
.pricing-tw__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  color: rgb(26,31,46);
  margin: 0 0 14px;
}
.pricing-tw__title-accent { color: rgb(0,163,209); }
.pricing-tw__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(26,31,46);
  margin: 0;
}

.pricing-tw__table {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
  background: transparent;
}
.pricing-tw__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  padding: 18px 24px;
  border-bottom: 1px solid rgb(217,222,229);
  align-items: center;
}
.pricing-tw__row:last-child { border-bottom: 0; }
.pricing-tw__row--head {
  border-bottom: 2px solid rgb(217,222,229);
  padding: 28px 24px 24px;
}
.pricing-tw__row--ctas { border-bottom: 0; padding-top: 32px; }
.pricing-tw__cell {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgb(26,31,46);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-tw__cell--feature {
  justify-content: flex-start;
  text-align: left;
  color: rgb(26,31,46);
  font-weight: 400;
}
.pricing-tw__col-label {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  color: rgb(26,31,46);
  display: block;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pricing-tw__col-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  line-height: 1.4;
  color: rgb(92,92,92);
  margin-top: 6px;
  display: block;
}
.pricing-tw__col-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgb(1,180,214);
  margin-top: 4px;
  display: block;
}
.pricing-tw__row--head .pricing-tw__cell {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}
.pricing-tw__icon { width: 22px; height: 22px; }
.pricing-tw__x {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: rgb(92,92,92);
}
.pricing-tw__note {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgb(0,163,209);
  font-weight: 500;
}
.pricing-tw__cta {
  display: inline-block;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  min-width: 180px;
  transition: transform .2s ease, background .25s ease, box-shadow .3s ease;
}
.pricing-tw__cta--primary {
  background: rgb(1,180,214);
  color: #fff;
}
.pricing-tw__cta--primary:hover {
  background: rgb(0,163,209);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(1,180,214,0.5);
}
.pricing-tw__cta--disabled {
  background: rgb(196,202,210);
  color: #fff;
  cursor: not-allowed;
  pointer-events: none;
}

/* PRICING — RESPONSIVE */
@media (max-width: 1024px) {
  .pricing-hero { padding: 60px 0 70px; }
  .pricing-hero__title { font-size: 38px; }
  .pricing-plans { padding: 60px 0 80px; }
  .pricing-plans__title { font-size: 28px; }
  .pricing-plans__grid { grid-template-columns: 1fr; gap: 22px; padding: 0 40px; max-width: 460px; margin-left: auto; margin-right: auto; }
  .pricing-plans__controls { grid-template-columns: 1fr; }
  .pricing-plans__toggle { grid-column: 1; }
  .pricing-plans__custom { grid-column: 1; justify-self: center; }
  .pricing-tw { padding: 70px 0 90px; }
  .pricing-tw__title { font-size: 28px; }
  .pricing-tw__table { padding: 0 22px; }
}

@media (max-width: 768px) {
  .pricing-hero { padding: 50px 0 60px; }
  .pricing-hero__inner { padding: 0 22px; }
  .pricing-hero__title { font-size: 26px; }
  .pricing-hero__subtitle { font-size: 14px; }
  .pricing-plans { padding: 50px 0 60px; }
  .pricing-plans__head { padding: 0 22px; }
  .pricing-plans__title { font-size: 22px; }
  .pricing-plans__subtitle, .pricing-plans__promo { font-size: 14px; }
  .pricing-plans__controls { gap: 14px; }
  .pricing-plans__grid { padding: 0 22px; }
  .pricing-plan { padding: 28px 22px 24px; }
  .pricing-plan__name { font-size: 24px; }
  .pricing-plan__price-old { font-size: 26px; }
  .pricing-plan__price-new { font-size: 20px; }
  .pricing-tw { padding: 50px 0 60px; }
  .pricing-tw__title { font-size: 22px; }
  .pricing-tw__subtitle { font-size: 14px; }
  .pricing-tw__row { grid-template-columns: 1fr 0.7fr 0.7fr; gap: 12px; padding: 14px 0; }
  .pricing-tw__row--head { padding: 20px 0 18px; }
  .pricing-tw__cell { font-size: 13px; }
  .pricing-tw__cell--feature { font-size: 13px; }
  .pricing-tw__col-label { font-size: 16px; line-height: 1.2; }
  .pricing-tw__col-desc { font-size: 10.5px; line-height: 1.3; margin-top: 4px; }
  .pricing-tw__col-note { font-size: 10px; }
  .pricing-tw__cta { min-width: auto; padding: 10px 16px; font-size: 14px; }
  .pricing-tw__icon { width: 18px; height: 18px; }
  .pricing-tw__note { font-size: 12px; }
}

@media (max-width: 420px) {
  .pricing-hero__title { font-size: 22px; }
  .pricing-plans__title,
  .pricing-tw__title { font-size: 20px; }
}

/* ════════════════════════════════════════════════════════════════════
   FAQ PAGE — matches Figma frame 3:1726
   Sections: .faq-hero / .faq-list / .faq-finalcta
   ════════════════════════════════════════════════════════════════════ */

/* ───── HERO (same shape as about/pricing) ───── */
.faq-hero {
  background: rgb(26,49,93);
  color: #fff;
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.faq-hero__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('assets/prod-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
.faq-hero .hex-particles { opacity: 0.35; position: relative; z-index: 1; }
.faq-hero__inner { text-align: center; padding: 0 57px; position: relative; z-index: 2; }
.faq-hero__title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 22px;
}
.faq-hero__accent { color: rgb(245,166,35); }
.faq-hero__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 800px;
  margin: 0 auto;
}

/* ───── FAQ LIST ───── */
.faq-list {
  background: #fff;
  padding: 110px 0 100px;
}
.faq-list__head { text-align: center; max-width: 900px; margin: 0 auto 50px; padding: 0 22px; }
.faq-list__title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  color: rgb(26,31,46);
  margin: 0 0 18px;
}
.faq-list__subtitle {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  color: rgb(26,31,46);
  margin: 0 0 32px;
}
.faq-list__search {
  position: relative;
  max-width: 486px;
  margin: 0 auto;
}
.faq-list__search-icon {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  pointer-events: none;
}
.faq-list__search-input {
  width: 100%;
  height: 45px;
  padding: 0 18px 0 44px;
  border: 1px solid rgb(20,20,20);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgb(26,31,46);
  background: #fff;
  transition: border-color .2s ease, box-shadow .25s ease;
}
.faq-list__search-input:focus {
  outline: none;
  border-color: rgb(1,180,214);
  box-shadow: 0 0 0 3px rgba(1,180,214,0.18);
}

.faq-list__items {
  max-width: 1016px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgb(36,36,36);
  border-radius: 7px;
  overflow: hidden;
  transition: background .3s ease, border-color .3s ease;
}
.faq-item.is-open {
  background: rgb(245,166,35);
  border-color: rgb(245,166,35);
  border: unset;
}
.faq-item__head {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 13px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  font: inherit;
}
.faq-item__q {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgb(26,49,93);
  transition: color .25s ease;
}
.faq-item.is-open .faq-item__q { color: #fff; }
.faq-item__chev {
  width: 12px; height: 8px;
  color: rgb(26,49,93);
  transition: transform .3s ease, color .25s ease;
  flex-shrink: 0;
}
.faq-item.is-open .faq-item__chev {
  transform: rotate(180deg);
  color: #fff;
}
.faq-item__chev svg { width: 100%; height: 100%; }
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  background: #fff !important;
  border: 0px !important;
  padding-top: 20px;
}
.faq-item.is-open .faq-item__body { max-height: 600px; }
.faq-item__a {
  padding: 4px 22px 22px;
}
.faq-item__a p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgb(26,31,46);
  margin: 0 0 14px;
}
.faq-item__a p:last-child { margin-bottom: 0; }
/* Open item gets bumped padding-top for breathing room under the header */
.faq-item.is-open .faq-item__a { padding-top: 0; }

.faq-list__empty {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgb(92,92,92);
  margin: 24px 0 0;
}

/* FAQ RESPONSIVE */
@media (max-width: 1024px) {
  .faq-hero { padding: 60px 0 70px; }
  .faq-hero__title { font-size: 38px; }
  .faq-list { padding: 80px 0; }
  .faq-list__title { font-size: 30px; }
  .faq-list__subtitle { font-size: 18px; }
}

@media (max-width: 768px) {
  .faq-hero { padding: 50px 0 60px; }
  .faq-hero__inner { padding: 0 22px; }
  .faq-hero__title { font-size: 26px; }
  .faq-hero__subtitle { font-size: 14px; }
  .faq-list { padding: 60px 0; }
  .faq-list__head { padding: 0 22px; }
  .faq-list__title { font-size: 24px; }
  .faq-list__subtitle { font-size: 15px; }
  .faq-list__items { padding: 0 22px; }
  .faq-item__head { padding: 12px 16px; gap: 12px; }
  .faq-item__q { font-size: 14px; }
  .faq-item__a { padding: 4px 16px 18px; }
  .faq-item__a p { font-size: 14px; }
}

@media (max-width: 420px) {
  .faq-hero__title { font-size: 22px; }
  .faq-list__title { font-size: 20px; }
}

/* ════════════════════════════════════════════════════════════════════
   CAREER PAGE — matches Figma frame 3:1393
   Sections: .career-hero / .career-quote / .career-search / .career-jobs
   ════════════════════════════════════════════════════════════════════ */

/* HERO */
.career-hero {
  background: rgb(26,49,93);
  color: #fff;
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.career-hero__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('assets/prod-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
.career-hero .hex-particles { opacity: 0.35; position: relative; z-index: 1; }
.career-hero__inner { text-align: center; padding: 0 57px; position: relative; z-index: 2; }
.career-hero__title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 22px;
}
.career-hero__accent { color: rgb(245,166,35); }
.career-hero__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 800px;
  margin: 0 auto;
}

/* QUOTE BAND */
.career-quote {
  background: rgb(247,247,250);
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}
.career-quote__deco {
  position: absolute;
  width: 500px;
  height: 450px;
  left: 4%;
  bottom: -266px;
  border: 3px solid rgb(245, 166, 35);
  transform: rotate(-12deg);
  border-radius: 4px;
  opacity: 0.85;
  pointer-events: none;
  will-change: transform;
  z-index: 1;
}
.career-quote__inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
  z-index: 2;
}
.career-quote__text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.3;
  color: rgb(26,31,46);
  margin: 0 0 36px;
}
.career-quote__cyan,
.career-quote__orange {
  font-weight: 600;
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.career-quote__cyan {
  color: rgb(1,180,214);
  background-image: linear-gradient(90deg, rgb(1,180,214), rgb(0,120,205), rgb(0,200,180), rgb(1,180,214));
  animation: e3dQuoteShift 5s ease-in-out infinite;
}
.career-quote__orange {
  color: rgb(245,166,35);
  background-image: linear-gradient(90deg, rgb(245,166,35), rgb(255,110,55), rgb(245,205,40), rgb(245,166,35));
  animation: e3dQuoteShift 5s ease-in-out infinite 0.6s;
}
@keyframes e3dQuoteShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
/* Animations-off fallback: solid accent colours */
.no-anim .career-quote__cyan   { -webkit-text-fill-color: rgb(1,180,214); animation: none; }
.no-anim .career-quote__orange { -webkit-text-fill-color: rgb(245,166,35); animation: none; }
.career-quote__cta {
  display: inline-block;
  background: rgb(1,180,214);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 999px;
  transition: transform .2s ease, background .25s ease, box-shadow .3s ease;
}
.career-quote__cta:hover {
  background: rgb(0,163,209);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -12px rgba(1,180,214,0.55);
}

/* SEARCH BAND */
.career-search {
  background: rgb(26,49,93);
  padding: 50px 0 130px;
  position: relative;
}
.career-search__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 155px;
  padding: 0 80px;
  flex-wrap: wrap;
}
.career-search__eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.15em;
  color: rgb(245,166,35);
}
.career-search__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: #fff;
  margin: 0;
}
.career-search__select {
  position: relative;
  display: inline-block;
}
.career-search__select select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid rgb(217,222,229);
  border-radius: 6px;
  padding: 12px 44px 12px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgb(26,31,46);
  min-width: 200px;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .25s ease;
}
.career-search__select select:focus {
  outline: none;
  border-color: rgb(1,180,214);
  box-shadow: 0 0 0 3px rgba(1,180,214,0.18);
}
.career-search__chev {
  position: absolute;
  right: 16px;
  top: 36%;
  transform: translateY(-50%);
  width: 12px; height: 8px;
  color: rgb(26,31,46);
  pointer-events: none;
}
.career-search__chev svg { width: 100%; height: 100%; }

/* JOB LISTINGS */
.career-jobs {
  background: rgb(247,247,250);
  padding: 0 0 100px;
}
.career-jobs__list {
  max-width: 1280px;
  margin: -80px auto 0;
  padding: 0 80px;
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 3;
}
.career-job {
  background: #fff;
  border: 1px solid rgb(217,222,229);
  border-radius: 10px;
  padding: 28px 40px;
  display: grid;
  grid-template-columns: 1.1fr 2.4fr auto;
  gap: 36px;
  align-items: center;
  box-shadow: 0 20px 40px -22px rgba(13,31,64,0.18);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.career-job:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px -22px rgba(13,31,64,0.18);
  border-color: rgba(1,180,214,0.45);
}
.career-job__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: rgb(26,31,46);
  margin: 0;
}
.career-job__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgb(26,31,46);
  margin: 0;
}
.career-job__cta {
  display: inline-block;
  border: 1px solid rgb(1,180,214);
  color: rgb(1,180,214);
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .25s ease, color .25s ease, transform .2s ease, box-shadow .3s ease;
}
.career-job__cta:hover {
  background: rgb(1,180,214);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(1,180,214,0.5);
}
.career-jobs__empty {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: rgb(92,92,92);
  padding: 80px 22px;
  margin: 28px 0;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(247,247,250);
  border: 1px dashed rgb(217,222,229);
  border-radius: 12px;
}

/* CAREER RESPONSIVE */
@media (max-width: 1024px) {
  .career-hero { padding: 60px 0 70px; }
  .career-hero__title { font-size: 38px; }
  .career-quote { padding: 80px 0; }
  .career-quote__text { font-size: 28px; }
  .career-quote__deco { width: 280px; height: 180px; left: 2%; }
  .career-search__inner { padding: 0 40px; gap: 22px; flex-direction: column; align-items: flex-start; }
  .career-search__title { font-size: 24px; flex: none; }
  .career-jobs__list { padding: 0 40px; }
  .career-job { grid-template-columns: 1fr; gap: 14px; padding: 28px; }
  .career-job__cta { justify-self: start; }
}

@media (max-width: 768px) {
  .career-hero { padding: 50px 0 60px; }
  .career-hero__inner { padding: 0 22px; }
  .career-hero__title { font-size: 26px; }
  .career-hero__subtitle { font-size: 14px; }
  .career-quote { padding: 60px 0; }
  .career-quote__text { font-size: 22px; }
  .career-quote__deco { display: none; }
  .career-search { padding: 32px 0; }
  .career-search__inner { padding: 0 22px; }
  .career-search__title { font-size: 20px; }
  .career-search__select select { min-width: 100%; }
  .career-jobs { padding: 40px 0 60px; }
  .career-jobs__list { padding: 0 22px; gap: 14px; }
  .career-job { padding: 22px; }
  .career-job__title { font-size: 18px; }
  .career-job__desc { font-size: 14px; }
}

@media (max-width: 420px) {
  .career-hero__title { font-size: 22px; }
  .career-quote__text { font-size: 18px; }
}

/* ════════════════════════════════════════════════════════════════════
   CONTACT PAGE — matches Figma frame 3:1884
   Sections: .contact-hero / .contact-form-sec / .contact-offices
   ════════════════════════════════════════════════════════════════════ */

/* HERO */
.contact-hero {
  background: rgb(26,49,93);
  color: #fff;
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.contact-hero__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('assets/prod-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
.contact-hero .hex-particles { opacity: 0.35; position: relative; z-index: 1; }
.contact-hero__inner { text-align: center; padding: 0 57px; position: relative; z-index: 2; }
.contact-hero__title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 22px;
}
.contact-hero__accent { color: rgb(245,166,35); }
.contact-hero__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 800px;
  margin: 0 auto;
}

/* FORM SECTION */
.contact-form-sec {
  background: #fff;
  padding: 150px 0;
}
.contact-form-sec__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 0 80px;
  align-items: start;
}
.contact-form-sec__title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 1.18;
  color: rgb(26,31,46);
  margin: 0 0 36px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form__field { display: block; position: relative; }
.contact-form__field--full { grid-column: 1 / -1; }
.contact-form__field input,
.contact-form__field textarea,
.contact-form__select select {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgb(26,49,93);
  background: #fff;
  border: 1px solid rgb(36,36,36);
  border-radius: 7px;
  padding: 12px 18px;
  transition: border-color .2s ease, box-shadow .25s ease;
}
.contact-form__field textarea {
  resize: vertical;
  min-height: 85px;
  font-family: 'DM Sans', sans-serif;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgb(26,49,93);
  font-weight: 500;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus,
.contact-form__select select:focus {
  outline: none;
  border-color: rgb(1,180,214);
  box-shadow: 0 0 0 3px rgba(1,180,214,0.18);
}
.contact-form__select { position: relative; }
.contact-form__select select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 44px;
}
.contact-form__chev {
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 8px;
  color: rgb(26,49,93);
  pointer-events: none;
}
.contact-form__chev svg { width: 100%; height: 100%; }
.contact-form__send {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgb(0,163,209);
  border: 0;
  border-radius: 8px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: transform .2s ease, background .25s ease, box-shadow .3s ease;
}
.contact-form__send:hover {
  background: rgb(1,180,214);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(1,180,214,0.55);
}
.contact-form__send-icon { width: 16px; height: 16px; }
.contact-form__success,
.contact-form__error {
  grid-column: 1 / -1;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgb(0,163,209);
  background: rgba(1,180,214,0.08);
  border-radius: 7px;
  padding: 14px 18px;
  margin: 0;
}
.contact-form__error {
  color: rgb(200,55,55);
  background: rgba(200,55,55,0.08);
}
.contact-form__success[hidden],
.contact-form__error[hidden] { display: none; }

.contact-form-sec__visual {
  position: relative;
  aspect-ratio: 575 / 383;
  width: 100%;
}
.contact-form-sec__image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 30px 60px -22px rgba(13,31,64,0.22);
  z-index: 2;
}
.contact-form-sec__deco {
  position: absolute;
  width: 110%;
  height: 115%;
  top: -10%;
  right: -41%;
  border: 4px solid rgb(245, 166, 35);
  border-radius: 0px;
  transform: rotate(6deg);
  z-index: 1;
  opacity: 0.8;
  pointer-events: none;
  will-change: transform;
}

/* OFFICES BAND */
.contact-offices {
  background: rgb(13,31,64);
  padding: 80px 0;
  color: #fff;
}
.contact-offices__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  align-items: start;
  padding: 0 80px;
}
.contact-offices__head { margin: 0; max-width: none; }
.contact-offices__title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 35px;
  color: rgb(245,166,35);
  margin: 0 0 12px;
}
.contact-offices__intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.contact-office {
  position: relative;
}
.contact-office__name {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(245,166,35);
  margin-bottom: 14px;
}
.contact-office__details p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 10px;
  white-space: pre-line;
}
.contact-office__details p:last-child { margin-bottom: 0; }

/* CONTACT RESPONSIVE */
@media (max-width: 1024px) {
  .contact-hero { padding: 60px 0 70px; }
  .contact-hero__title { font-size: 38px; }
  .contact-form-sec { padding: 70px 0 80px; }
  .contact-form-sec__inner { padding: 0 40px; gap: 50px; grid-template-columns: 1fr; }
  .contact-form-sec__title { font-size: 28px; }
  .contact-form-sec__visual { max-width: 560px; margin: 0 auto; }
  .contact-offices { padding: 70px 0; }
  .contact-offices__inner { padding: 0 40px; grid-template-columns: 1fr; gap: 36px; }
  .contact-offices__title { font-size: 28px; }
  .contact-offices__grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .contact-hero { padding: 50px 0 60px; }
  .contact-hero__inner { padding: 0 22px; }
  .contact-hero__title { font-size: 26px; }
  .contact-hero__subtitle { font-size: 14px; }
  .contact-form-sec { padding: 50px 0 60px; }
  .contact-form-sec__inner { padding: 0 22px; gap: 36px; }
  .contact-form-sec__title { font-size: 22px; }
  .contact-form { grid-template-columns: 1fr; gap: 14px; }
  .contact-form__field input,
  .contact-form__field textarea,
  .contact-form__select select { font-size: 14px; padding: 11px 14px; }
  .contact-form-sec__deco { display: none; }
  .contact-offices { padding: 50px 0; }
  .contact-offices__inner { padding: 0 22px; gap: 28px; }
  .contact-offices__title { font-size: 22px; }
  .contact-offices__grid { gap: 28px; }
  .contact-office__details p { font-size: 13px; }
}

@media (max-width: 420px) {
  .contact-hero__title { font-size: 22px; }
  .contact-form-sec__title,
  .contact-offices__title { font-size: 20px; }
}

/* ════════════════════════════════════════════════════════════════════
   BLOG  —  home.php (index) / archive.php / single.php
   Sections: .blog-hero / .blog-list / .blog-card / .single-post
   Reuses the shared navy inner-page hero shape + .reveal + .final-cta.
   ════════════════════════════════════════════════════════════════════ */

/* ───── HERO (same shape as about/faq/contact) ───── */
.blog-hero,
.single-hero {
  background: rgb(26,49,93);
  color: #fff;
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-hero > .section-inner,
.single-hero > .section-inner { width: 100%; }
.blog-hero__bg-img,
.single-hero__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('assets/prod-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
.blog-hero .hex-particles,
.single-hero .hex-particles { opacity: 0.35; position: relative; z-index: 1; }
.blog-hero__inner { text-align: center; padding: 0 57px; position: relative; z-index: 2; }
.blog-hero__title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 22px;
}
.blog-hero__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 760px;
  margin: 0 auto;
}

/* ───── LISTING GRID ───── */
.blog-list { background: #fff; padding: 90px 0 100px; }
.blog-list > .section-inner { padding: 0 90px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 30px;
}

/* ───── CARD ───── */
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(26,31,46,0.10);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -26px rgba(26,49,93,0.45);
  border-color: rgba(26,49,93,0.18);
}
.blog-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  background-color: rgb(26,49,93);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.blog-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    radial-gradient(circle at 30% 25%, rgba(1,180,214,0.35), transparent 55%),
    linear-gradient(135deg, rgb(26,49,93), rgb(20,35,68));
}
.blog-card__media-mark {
  font-family: 'Anton', 'Jost', sans-serif;
  font-size: 34px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.30);
}
.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 26px;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.blog-card__cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(1,180,214,0.10);
  padding: 5px 11px;
  border-radius: 999px;
}
.blog-card__date {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(26,31,46,0.55);
}
.blog-card__title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.28;
  color: rgb(26,31,46);
  margin: 0 0 12px;
}
.blog-card__title a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
.blog-card__title a:hover { color: var(--accent-deep); }
.blog-card__excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(26,31,46,0.72);
  margin: 0 0 20px;
}
.blog-card__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-deep);
  text-decoration: none;
}
.blog-card__more svg { transition: transform 0.25s ease; }
.blog-card__more:hover svg { transform: rotate(-45deg) translate(2px, 0); }

/* ───── PAGINATION ───── */
.blog-pagination { margin-top: 56px; }
.blog-pagination ul,
.blog-pagination .page-numbers {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(26,31,46,0.14);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgb(26,31,46);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.blog-pagination a:hover {
  border-color: var(--accent-deep);
  color: var(--accent-deep);
}
.blog-pagination .current {
  background: rgb(26,49,93);
  border-color: rgb(26,49,93);
  color: #fff;
}
.blog-pagination .dots { border-color: transparent; }

/* ───── EMPTY STATE ───── */
.blog-empty { text-align: center; padding: 40px 0 20px; }
.blog-empty__title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 30px;
  color: rgb(26,31,46);
  margin: 0 0 12px;
}
.blog-empty__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: rgba(26,31,46,0.65);
  max-width: 460px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════════════
   SINGLE POST
   ════════════════════════════════════════════════════════════════════ */
.single-hero__inner { text-align: center; padding: 0 57px; position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.single-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.single-hero__cat {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(1,180,214,0.22);
  padding: 5px 12px;
  border-radius: 999px;
}
.single-hero__read::before {
  content: '·';
  margin-right: 14px;
  color: rgba(255,255,255,0.45);
}
.single-hero__title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.14;
  color: #fff;
  margin: 0 0 18px;
}
.single-hero__author {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

.single-post__wrap { max-width: 820px; margin: 0 auto; padding: 0 22px 100px; }
.single-post__feature {
  margin: -60px 0 44px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(26,49,93,0.5);
  position: relative;
  z-index: 3;
}
.single-post__feature img { display: block; width: 100%; height: auto; }

.single-post__content {
  padding-top: 64px;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(26,31,46,0.88);
}
.single-post__feature + .single-post__content { padding-top: 0; }
.single-post__content > *:first-child { margin-top: 0; }
.single-post__content p { margin: 0 0 22px; }
.single-post__content h2 {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.25;
  color: rgb(26,31,46);
  margin: 46px 0 18px;
}
.single-post__content h3 {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.3;
  color: rgb(26,31,46);
  margin: 38px 0 14px;
}
.single-post__content h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: rgb(26,31,46);
  margin: 30px 0 12px;
}
.single-post__content a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 2px; }
.single-post__content ul,
.single-post__content ol { margin: 0 0 22px; padding-left: 24px; }
.single-post__content li { margin: 0 0 10px; }
.single-post__content img { max-width: 100%; height: auto; border-radius: 12px; margin: 12px 0; }
.single-post__content blockquote {
  margin: 30px 0;
  padding: 18px 26px;
  border-left: 4px solid var(--accent);
  background: rgba(1,180,214,0.06);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: rgb(26,31,46);
}
.single-post__content blockquote p:last-child { margin-bottom: 0; }
.single-post__content pre {
  background: rgb(26,31,46);
  color: #f4f6fb;
  padding: 18px 20px;
  border-radius: 12px;
  overflow-x: auto;
  font-size: 14px;
  margin: 0 0 22px;
}
.single-post__content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
  background: rgba(26,49,93,0.07);
  padding: 2px 6px;
  border-radius: 5px;
}
.single-post__content pre code { background: none; padding: 0; }
.single-post__content figure { margin: 12px 0 24px; }
.single-post__content table { width: 100%; border-collapse: collapse; margin: 0 0 24px; font-size: 15px; }
.single-post__content th,
.single-post__content td { border: 1px solid rgba(26,31,46,0.12); padding: 10px 14px; text-align: left; }

.single-post__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 40px 0 0;
}
.single-post__tags li a {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(26,31,46,0.7);
  background: rgba(26,49,93,0.06);
  padding: 6px 13px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.single-post__tags li a:hover { background: rgba(1,180,214,0.14); color: var(--accent-deep); }

.single-post__foot {
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid rgba(26,31,46,0.10);
}
.single-post__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-deep);
  text-decoration: none;
}
.single-post__back:hover { color: rgb(26,49,93); }

.single-post__pagelinks {
  margin: 34px 0 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.single-post__pagelinks a span,
.single-post__pagelinks > span span {
  display: inline-flex;
  min-width: 32px;
  justify-content: center;
  padding: 4px 8px;
  border: 1px solid rgba(26,31,46,0.16);
  border-radius: 8px;
}

/* Related posts reuse .blog-list / .blog-grid on a tinted band */
.blog-list--related { background: rgb(247,249,252); padding: 80px 0 90px; }
.blog-list__related-title {
  font-family: 'Jost', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: rgb(26,31,46);
  margin: 0 0 40px;
  text-align: center;
}

/* ───── RESPONSIVE ───── */
@media (max-width: 1024px) {
  .blog-hero,
  .single-hero { padding: 80px 0 70px; min-height: 300px; }
  .blog-hero__title { font-size: 38px; }
  .single-hero__title { font-size: 36px; }
  .blog-list > .section-inner { padding: 0 40px; }
  .blog-list { padding: 70px 0 80px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
}

@media (max-width: 768px) {
  .blog-hero,
  .single-hero { padding: 60px 0 55px; min-height: 240px; }
  .blog-hero__inner,
  .single-hero__inner { padding: 0 22px; }
  .blog-hero__title { font-size: 28px; }
  .blog-hero__subtitle { font-size: 15px; }
  .single-hero__title { font-size: 27px; }
  .blog-list > .section-inner { padding: 0 22px; }
  .blog-list { padding: 55px 0 60px; }
  .blog-grid { grid-template-columns: 1fr; gap: 26px; }
  .blog-card__title { font-size: 20px; }
  .single-post__wrap { padding: 0 20px 64px; }
  .single-post__content { padding-top: 44px; }
  .single-post__feature { margin: -40px 0 32px; }
  .single-post__content { font-size: 16px; }
  .single-post__content h2 { font-size: 25px; }
  .single-post__content h3 { font-size: 21px; }
  .blog-list--related { padding: 55px 0 60px; }
  .blog-list__related-title { font-size: 26px; }
}

@media (max-width: 420px) {
  .blog-hero__title { font-size: 24px; }
  .single-hero__title { font-size: 23px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   DISPLAY CONTROLS — grids that adapt when items are added or hidden
   ---------------------------------------------------------------------------
   Sections whose column count was hand-tuned for one exact number of items now
   carry a "--nN" modifier saying how many actually rendered, so switching a
   card off in wp-admin reflows the row instead of leaving a hole.
   Untouched sites still hit the original rule, so nothing moves by default.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Home · stat counters (base rule is 4 across) ── */
.stats--n1 { grid-template-columns: minmax(0, 420px); justify-content: center; }
.stats--n2 { grid-template-columns: repeat(2, 1fr); }
.stats--n3 { grid-template-columns: repeat(3, 1fr); }
.stats--n5 { grid-template-columns: repeat(5, 1fr); gap: 18px; }
.stats--n6 { grid-template-columns: repeat(3, 1fr); }

/* ── Product · step cards (base rule is 3 across) ── */
.prod-steps__grid--n1 { grid-template-columns: minmax(0, 520px); justify-content: center; }
.prod-steps__grid--n2 { grid-template-columns: repeat(2, 1fr); }
.prod-steps__grid--n4 { grid-template-columns: repeat(2, 1fr); }
.prod-steps__grid--n5,
.prod-steps__grid--n6 { grid-template-columns: repeat(3, 1fr); }

/* ── About · value tiles ──
   The bespoke asymmetric layout only makes sense with all 5 tiles showing.
   Any other count falls back to an even grid so there is never a gap. */
.about-values__grid:not(.about-values__grid--n5) {
  grid-template-columns: repeat(2, 1fr);
  row-gap: 22px;
}
.about-values__grid:not(.about-values__grid--n5) .about-value {
  grid-column: auto;
  grid-row: auto;
  transform: none;
}
.about-values__grid--n1 { grid-template-columns: minmax(0, 620px); justify-content: center; }
.about-values__grid--n3 { grid-template-columns: repeat(3, 1fr); }

/* ── Contact · offices (base rule is heading + 2 offices across) ── */
.contact-offices__inner--n1 { grid-template-columns: 1fr 1fr; }
.contact-offices__inner--n3,
.contact-offices__inner--n4,
.contact-offices__inner--n5,
.contact-offices__inner--n6 { grid-template-columns: repeat(3, 1fr); row-gap: 46px; }
.contact-offices__inner--n3 .contact-offices__head,
.contact-offices__inner--n4 .contact-offices__head,
.contact-offices__inner--n5 .contact-offices__head,
.contact-offices__inner--n6 .contact-offices__head { grid-column: 1 / -1; }

@media (max-width: 1024px) {
  .stats--n5, .stats--n6 { grid-template-columns: repeat(2, 1fr); }
  .prod-steps__grid--n1, .prod-steps__grid--n2,
  .prod-steps__grid--n4, .prod-steps__grid--n5,
  .prod-steps__grid--n6 { grid-template-columns: 1fr; }
  .about-values__grid:not(.about-values__grid--n5) { grid-template-columns: repeat(2, 1fr); }
  .about-values__grid--n1, .about-values__grid--n3 { grid-template-columns: repeat(2, 1fr); }
  .contact-offices__inner--n1,
  .contact-offices__inner--n3, .contact-offices__inner--n4,
  .contact-offices__inner--n5, .contact-offices__inner--n6 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .stats--n1, .stats--n2, .stats--n3,
  .stats--n5, .stats--n6 { grid-template-columns: 1fr; }
  .about-values__grid:not(.about-values__grid--n5),
  .about-values__grid--n1, .about-values__grid--n3 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   DISPLAY CONTROLS — adding / removing COLUMNS
   The "Two ways to work" table and the footer both carry a "--nN" modifier
   saying how many columns actually rendered, so clearing a column title in
   wp-admin reflows the layout instead of leaving a gap.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Pricing · "Two ways to work" table (base rule = feature + 2 columns) ── */
.pricing-tw__table--n1 .pricing-tw__row { grid-template-columns: 2fr 1fr; }
.pricing-tw__table--n3 .pricing-tw__row { grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 18px; }
.pricing-tw__table--n4 .pricing-tw__row { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 14px; }
.pricing-tw__table--n3 { max-width: 1180px; }
.pricing-tw__table--n4 { max-width: 1260px; padding: 0 24px; }
.pricing-tw__table--n3 .pricing-tw__col-label,
.pricing-tw__table--n4 .pricing-tw__col-label { font-size: 20px; }
.pricing-tw__table--n4 .pricing-tw__cta { padding-left: 16px; padding-right: 16px; font-size: 14px; }

/* ── Footer columns (base rule = all 5 tracks) ── */
.footer-grid--n4 { grid-template-columns: minmax(220px, 1fr) minmax(140px, 0.9fr) minmax(180px, 1fr) minmax(180px, 1fr); }
.footer-grid--n3 { grid-template-columns: minmax(220px, 1fr) minmax(140px, 0.9fr) minmax(180px, 1fr); }

/* ── About · a 6th value card ── */
.about-values__grid--n6 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1024px) {
  .pricing-tw__table--n3 .pricing-tw__row { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 14px; }
  .pricing-tw__table--n4 .pricing-tw__row { grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr; gap: 10px; }
  .about-values__grid--n6 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .pricing-tw__table--n1 .pricing-tw__row { grid-template-columns: 1fr 0.7fr; }
  .pricing-tw__table--n3 .pricing-tw__row { grid-template-columns: 1fr 0.6fr 0.6fr 0.6fr; gap: 8px; }
  .pricing-tw__table--n4 .pricing-tw__row { grid-template-columns: 1fr 0.5fr 0.5fr 0.5fr 0.5fr; gap: 6px; }
  .pricing-tw__table--n3 .pricing-tw__col-label,
  .pricing-tw__table--n4 .pricing-tw__col-label { font-size: 15px; }
  .about-values__grid--n6 { grid-template-columns: 1fr; }
}
