/* ============================================================
   AMATEC — Design Tokens (authoritative colors_and_type.css)
   Brand: Primary Blue #07508B · Accent Orange #F29323 · Sora + IBM Plex
   ============================================================ */
:root {
  /* ---------- BRAND CORE ---------- */
  --amatec-blue:   #07508B;
  --amatec-orange: #F29323;

  /* ---------- BLUE SCALE ---------- */
  --blue-50:  #EEF5FB;
  --blue-100: #DBEAF5;
  --blue-200: #B3D0E8;
  --blue-300: #82B1D7;
  --blue-400: #4A8DC2;
  --blue-500: #1F6CAB;
  --blue-600: #07508B;   /* = brand blue */
  --blue-700: #0A4576;
  --blue-800: #093A61;
  --blue-900: #0A2C49;
  --blue-950: #061C30;

  /* ---------- ORANGE SCALE ---------- */
  --orange-50:  #FEF6EA;
  --orange-100: #FCE8CB;
  --orange-200: #F9CF93;
  --orange-300: #F6B65C;
  --orange-400: #F4A23A;
  --orange-500: #F29323;   /* = brand orange */
  --orange-600: #DB7C12;
  --orange-700: #B5610F;
  --orange-800: #8F4D12;
  --orange-900: #743F13;

  /* ---------- NEUTRALS ---------- */
  --white:    #FFFFFF;
  --offwhite: #F7FAFC;
  --slate-50:  #F4F7FA;
  --slate-100: #EAEFF4;
  --slate-150: #E0E7EE;
  --slate-200: #D2DBE4;
  --slate-300: #B5C2CF;
  --slate-400: #8B9CAC;
  --slate-500: #66798B;
  --slate-600: #4C5F71;
  --slate-700: #374959;
  --slate-800: #243443;
  --slate-900: #15222E;
  --ink:       #0E1A24;

  /* ---------- SEMANTIC FG / BG ---------- */
  --bg-page:    var(--offwhite);
  --bg-surface: var(--white);
  --bg-subtle:  var(--slate-50);
  --bg-sunken:  var(--slate-100);
  --bg-inverse: var(--blue-950);
  --fg1: var(--ink);
  --fg2: var(--slate-600);
  --fg3: var(--slate-400);
  --fg-on-brand:  #FFFFFF;
  --fg-on-accent: #3A2406;
  --fg-link: var(--blue-600);

  /* ---------- BORDERS ---------- */
  --border-subtle:  var(--slate-150);
  --border-default: var(--slate-200);
  --border-strong:  var(--slate-300);
  --border-brand:   var(--blue-600);

  /* ---------- STATUS ---------- */
  --success: #1F8A5B;  --success-bg: #E6F4EC;  --success-fg: #136A45;
  --warning: #DB7C12;  --warning-bg: #FCEFD9;  --warning-fg: #8F4D12;
  --danger:  #D64545;  --danger-bg:  #FBE9E9;  --danger-fg:  #9A2A2A;
  --info:    #1F6CAB;  --info-bg:    #E4F0FA;  --info-fg:    #0A4576;

  /* ---------- GRADIENTS ---------- */
  --grad-blue:   linear-gradient(135deg, #0A4576 0%, #07508B 55%, #1F6CAB 100%);
  --grad-hero:   linear-gradient(160deg, #0A2C49 0%, #093A61 45%, #07508B 100%);
  --grad-accent: linear-gradient(135deg, #F4A23A 0%, #F29323 60%, #DB7C12 100%);

  /* ---------- TYPE ---------- */
  --font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'IBM Plex Sans', 'Segoe UI', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;
  --tracking-tight: -0.02em;
  --tracking-snug:  -0.01em;
  --tracking-caps:  0.12em;

  /* ---------- RADII ---------- */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* ---------- SHADOWS ---------- */
  --shadow-xs: 0 1px 2px rgba(10, 44, 73, 0.06);
  --shadow-sm: 0 1px 3px rgba(10, 44, 73, 0.08), 0 1px 2px rgba(10, 44, 73, 0.05);
  --shadow-md: 0 4px 12px rgba(10, 44, 73, 0.09), 0 2px 4px rgba(10, 44, 73, 0.05);
  --shadow-lg: 0 12px 28px rgba(10, 44, 73, 0.12), 0 6px 10px rgba(10, 44, 73, 0.06);
  --shadow-xl: 0 24px 56px rgba(10, 44, 73, 0.16);
  --shadow-brand:  0 12px 28px rgba(7, 80, 139, 0.28);
  --shadow-accent: 0 10px 24px rgba(242, 147, 35, 0.30);

  /* ---------- MOTION ---------- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;
  --dur-slow: 360ms;
}

/* ============================================================
   BASE
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg1);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
svg { display: inline-block; vertical-align: middle; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 88px 0; }
.reveal-safe { opacity: 1 !important; transform: none !important; }

/* ---- buttons ---- */
.btn { font-family: var(--font-body); font-weight: 600; font-size: 15px; border-radius: 10px;
  padding: 13px 22px; border: 1px solid transparent; cursor: pointer; display: inline-flex;
  align-items: center; gap: 9px; transition: all var(--dur-base) var(--ease-standard); white-space: nowrap;
  text-decoration: none; }
.btn svg, .btn i { width: 17px; height: 17px; }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--blue-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-700); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-accent { background: var(--orange-500); color: var(--fg-on-accent); box-shadow: var(--shadow-accent); }
.btn-accent:hover { background: var(--orange-600); transform: translateY(-1px); }
.btn-secondary { background: #fff; color: var(--blue-700); border-color: var(--border-strong); }
.btn-secondary:hover { border-color: var(--blue-500); background: var(--blue-50); }
.btn-ghost { background: transparent; color: var(--fg1); }
.btn-ghost:hover { background: var(--slate-100); }
.btn-light { background: #fff; color: var(--blue-700); }
.btn-light:hover { background: var(--blue-50); transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline-light:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.6); }

/* ---- eyebrow ---- */
.eyebrow { font-family: var(--font-mono); font-size: 13px; font-weight: 500; text-transform: uppercase;
  letter-spacing: var(--tracking-caps); color: var(--orange-600); }
.eyebrow.on-dark { color: var(--orange-400); }

/* ---- headings ---- */
.h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.04; letter-spacing: -0.025em; margin: 0; text-wrap: balance; }
.h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
.h3 { font-family: var(--font-display); font-weight: 600; font-size: 21px; letter-spacing: -0.01em; margin: 0; }
.lead { font-family: var(--font-body); font-size: 19px; line-height: 1.55; color: var(--fg2); margin: 0; text-wrap: pretty; }
.muted { color: var(--fg2); }
h1,h2,h3,h4,h5,h6,blockquote,p { text-wrap: pretty; }

/* ---- chips ---- */
.chip { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .08em;
  font-weight: 500; padding: 7px 13px; border-radius: 999px; display: inline-flex; align-items: center; gap: 7px; }

/* ---- card ---- */
.card { background: #fff; border: 1px solid var(--border-subtle); border-radius: 16px;
  box-shadow: var(--shadow-sm); transition: box-shadow var(--dur-base), transform var(--dur-base); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* ---- section head ---- */
.sec-head { max-width: 720px; }
.sec-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.sec-head .h2 { margin-top: 14px; }
.sec-head .lead { margin-top: 16px; }
.sec-head.on-dark .h2 { color: #fff; }
.sec-head.on-dark .lead { color: var(--blue-200); }

/* ---- reveal on load ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); animation: rise .6s var(--ease-out) forwards; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}

/* ---- flow dot — signature motion ---- */
.flow-dot { position: absolute; top: 50%; left: 0; width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange-400); box-shadow: 0 0 8px var(--orange-400); transform: translate(-50%, -50%); }
@media (prefers-reduced-motion: no-preference) {
  .flow-dot { animation: flow 2s var(--ease-standard) infinite; }
  @keyframes flow { 0% { left: 0; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
}

/* ---- dot-grid texture for dark panels ---- */
.dotgrid {
  background-image: radial-gradient(rgba(255,255,255,.07) 1.3px, transparent 1.3px);
  background-size: 26px 26px;
}

/* ============================================================
   NAVIGATION — frosted sticky mega-menu
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,250,252,0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background .3s var(--ease-standard), border-color .3s var(--ease-standard);
}
.nav-wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.nav-row { display: flex; align-items: center; gap: 26px; height: 76px; }
.nav-logo { display: flex; align-items: center; flex: none; }
.nav-logo img { height: 42px; width: auto; }
.nav-logo .wordmark { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.03em; color: var(--blue-600); }
.nav-logo .wordmark span { color: var(--orange-500); }
.nav-list { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-trigger {
  display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-body);
  font-size: 14.5px; font-weight: 500; line-height: 1; padding: 10px 13px; border-radius: 9px;
  cursor: pointer; white-space: nowrap; background: transparent; border: 0; color: var(--fg2);
  transition: color var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard);
}
.nav-trigger:hover { color: var(--blue-700); }
.nav-item.open .nav-trigger { color: var(--blue-700); background: var(--slate-100); }
.nav-trigger .chev { width: 15px; height: 15px; transition: transform var(--dur-base) var(--ease-standard); }
.nav-item.open .nav-trigger .chev { transform: rotate(180deg); }

/* mega panel */
.mega {
  position: absolute; top: calc(100% + 12px); left: 0; z-index: 60;
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 18px;
  box-shadow: var(--shadow-xl); padding: 14px; width: 300px;
  opacity: 0; visibility: hidden; transform: translateY(8px) scale(0.985);
  transform-origin: top center;
  transition: opacity .2s var(--ease-out), transform .26s var(--ease-out), visibility .2s;
}
.mega.align-right { left: auto; right: 0; }
.mega.two-col { width: 460px; }
.nav-item.open .mega { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.mega::before { content: ''; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.mega-eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500; text-transform: uppercase;
  letter-spacing: var(--tracking-caps); color: var(--slate-400); padding: 4px 10px 12px;
}
.mega-grid { display: grid; gap: 2px; grid-template-columns: 1fr; }
.mega.two-col .mega-grid { grid-template-columns: 1fr 1fr; }
.mega-link { display: flex; align-items: center; gap: 13px; padding: 10px 11px; border-radius: 11px;
  transition: background var(--dur-fast) var(--ease-standard); }
.mega-link:hover { background: var(--slate-50); }
.mega-ico { flex: none; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-600);
  transition: background var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard); }
.mega-ico i { width: 19px; height: 19px; }
.mega-link:hover .mega-ico { background: var(--blue-600); color: #fff; }
.mega-label { font-size: 14.5px; font-weight: 600; color: var(--fg1); line-height: 1.2; }
.mega-link:hover .mega-label { color: var(--blue-700); }
.mega-foot { margin-top: 8px; padding: 13px 12px 6px; border-top: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mega-foot a { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--blue-600); }
.mega-foot a:hover { color: var(--orange-600); }
.mega-foot a i { width: 15px; height: 15px; }
.mega-foot .audit { color: var(--orange-600); }

/* mobile */
.nav-burger { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; border-radius: 9px; color: var(--fg1); }
.mobile-drawer { display: none; background: #fff; border-top: 1px solid var(--border-subtle);
  max-height: calc(100vh - 76px); overflow-y: auto; box-shadow: var(--shadow-lg); }
.mobile-drawer.show { display: block; }
.mobile-inner { padding: 8px 24px 28px; }
.m-acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px; font-family: var(--font-body); font-size: 17px; font-weight: 600;
  color: var(--fg1); background: transparent; border: 0; border-bottom: 1px solid var(--border-subtle); cursor: pointer; text-align: left; }
.m-acc-head .chev { width: 20px; height: 20px; color: var(--slate-400); transition: transform .2s; }
.m-acc-head.open .chev { transform: rotate(180deg); }
.m-acc-panel { overflow: hidden; display: grid; gap: 2px; max-height: 0; transition: max-height .32s var(--ease-standard); }
.m-acc-panel.open { max-height: 700px; padding: 8px 0 16px; }
.m-acc-link { padding: 11px 12px; font-size: 15px; color: var(--fg2); border-radius: 9px; display: flex; align-items: center; gap: 11px; }
.m-acc-link i { width: 18px; height: 18px; color: var(--blue-600); }
.m-acc-link:active { background: var(--slate-100); }
.mobile-cta { margin-top: 22px; }
.mobile-cta .btn { width: 100%; justify-content: center; }

@media (max-width: 1080px) {
  .nav-list, .nav-cta-desktop { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-row { justify-content: space-between; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--blue-950); color: #fff; position: relative; overflow: hidden; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; pointer-events: none; }
.hero-dotgrid { position: absolute; inset: 0; opacity: 0.28; pointer-events: none; }
.hero-grid { position: relative; padding-top: 84px; padding-bottom: 92px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; color: var(--blue-100); }
.dot { width: 7px; height: 7px; border-radius: 9px; flex: none; }
.dot.orange { background: var(--orange-400); }
.dot.success { background: var(--success); }
.hero h1 { margin-top: 22px; }
.hero h1 .accent { color: var(--orange-400); }
.hero-lead { margin-top: 20px; color: var(--blue-100); max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-assure { display: flex; gap: 28px; margin-top: 38px; font-size: 14px; color: var(--blue-200); flex-wrap: wrap; }
.hero-assure span { display: flex; align-items: center; gap: 8px; }

/* workflow diagram card */
.wf { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px;
  padding: 22px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow-xl); }
.wf-top { display: flex; align-items: center; justify-content: space-between; }
.wf-top .name { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-200); }
.wf-top .run { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px; color: var(--success); }
.wf-flow { display: flex; align-items: center; justify-content: space-between; gap: 2px; }
.wf-node { background: #fff; border-radius: 11px; padding: 9px 10px; min-width: 92px; box-shadow: var(--shadow-md); }
.wf-node .row { display: flex; align-items: center; gap: 7px; }
.wf-node .ic { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; color: #fff; }
.wf-node .ic i { width: 13px; height: 13px; }
.wf-node .lbl { font-size: 12.5px; font-weight: 700; color: var(--fg1); }
.wf-node .sub { font-family: var(--font-mono); font-size: 10px; color: var(--fg3); margin-top: 5px; }
.wf-wire { flex: 1; height: 2px; background: rgba(255,255,255,0.18); position: relative; overflow: hidden; border-radius: 2px; }
.wf-stats { display: flex; gap: 16px; font-family: var(--font-mono); font-size: 11px; color: var(--blue-200); }
.wf-stats .ok { color: var(--orange-400); }

/* ============================================================
   PLATFORMS
   ============================================================ */
.platforms { padding: 64px 0; }
.platforms .kicker { text-align: center; font-family: var(--font-mono); font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--fg3); margin-bottom: 32px; }
.platforms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.platform { padding: 20px 22px; display: flex; align-items: center; gap: 14px; }
.platform .ic { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; flex-shrink: 0; color: #fff; }
.platform .ic i { width: 22px; height: 22px; }
.platform .nm { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--fg1); }
.platform .note { font-size: 12.5px; color: var(--fg3); margin-top: 2px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg-page); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.service { padding: 26px; border-top: 1px solid var(--border-subtle); }
.service.featured { border-top: 3px solid var(--orange-500); }
.service .ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; }
.service .ic i { width: 24px; height: 24px; }
.service .ic.blue { background: var(--blue-50); color: var(--blue-600); }
.service .ic.orange { background: var(--orange-50); color: var(--orange-600); }
.service h3 { margin-top: 18px; }
.service p { font-size: 15px; line-height: 1.55; color: var(--fg2); margin-top: 10px; }
.service ul { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 9px; }
.service li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--fg2); }
.service li i { width: 16px; height: 16px; color: var(--blue-500); flex: none; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--bg-subtle); }
.how-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; margin-top: 50px; align-items: stretch; }
.how-steps { display: flex; flex-direction: column; gap: 12px; }
.how-step { text-align: left; cursor: pointer; border: 1px solid var(--border-subtle); border-left: 4px solid transparent;
  background: rgba(255,255,255,0.5); border-radius: 14px; padding: 16px 18px; display: flex; align-items: center; gap: 15px;
  transition: all .25s var(--ease-standard); }
.how-step .num { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--fg3); width: 22px; }
.how-step .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--slate-150); color: var(--slate-500);
  display: grid; place-items: center; flex-shrink: 0; transition: all .25s; }
.how-step .ic i { width: 20px; height: 20px; }
.how-step .title { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--fg2); }
.how-step.on { border-color: var(--blue-300); border-left: 4px solid var(--orange-500);
  background: #fff; box-shadow: var(--shadow-md); }
.how-step.on .num { color: var(--orange-600); }
.how-step.on .ic { background: var(--blue-600); color: #fff; }
.how-step.on .title { color: var(--fg1); }
.how-detail { padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.how-detail .ic { width: 56px; height: 56px; border-radius: 14px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; }
.how-detail .ic i { width: 28px; height: 28px; }
.how-detail h3 { font-size: 30px; margin-top: 22px; }
.how-detail .lead { font-size: 18px; margin-top: 14px; }
.how-meta { margin-top: 22px; display: inline-flex; align-items: center; gap: 9px; align-self: flex-start;
  font-family: var(--font-mono); font-size: 13px; color: var(--orange-600); background: var(--orange-50);
  padding: 8px 14px; border-radius: 999px; }
.how-meta i { width: 15px; height: 15px; }

/* ============================================================
   RESULTS (dark)
   ============================================================ */
.results { background: var(--grad-blue); color: #fff; position: relative; overflow: hidden; }
.results .dotgrid { position: absolute; inset: 0; opacity: 0.4; }
.results .inner { position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 46px; }
.stat { border-top: 2px solid rgba(255,255,255,0.16); padding-top: 20px; }
.stat .top { display: flex; align-items: baseline; gap: 8px; }
.stat .fig { font-family: var(--font-display); font-weight: 800; font-size: 52px; line-height: 1; color: var(--orange-400); letter-spacing: -0.02em; }
.stat .unit { font-family: var(--font-mono); font-size: 12px; color: var(--blue-200); text-transform: uppercase; letter-spacing: .06em; }
.stat .lbl { font-size: 15px; color: var(--blue-100); margin-top: 12px; line-height: 1.45; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testi { position: relative; overflow: hidden; background: var(--bg-subtle); border-top: 1px solid var(--border-subtle); }
.testi-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 56px; align-items: center; }
.testi-photo { position: relative; }
.testi-frame { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-xl); aspect-ratio: 4 / 5; background: var(--blue-950); }
.testi-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.testi-frame .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,28,48,0.42) 0%, rgba(6,28,48,0) 42%); }
.float-chip { position: absolute; left: 20px; bottom: 20px; display: flex; align-items: center; gap: 10px;
  padding: 10px 15px; border-radius: 14px; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); box-shadow: var(--shadow-lg); }
.float-chip .badge { width: 34px; height: 34px; border-radius: 9px; background: var(--grad-accent); display: grid; place-items: center; }
.float-chip .badge i { width: 18px; height: 18px; color: #fff; }
.float-chip .k { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--slate-500); }
.float-chip .v { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--fg1); }
.t-industry { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-500); }
.t-quote { margin: 16px 0 0; font-family: var(--font-display); font-weight: 500; font-size: 25px; line-height: 1.5; letter-spacing: -0.01em; color: var(--fg1); }
.t-quote .b { color: var(--blue-700); font-weight: 700; }
.t-quote .o { color: var(--orange-600); font-weight: 700; }
.t-cap { margin-top: 28px; display: flex; align-items: center; gap: 16px; }
.t-cap img { width: 52px; height: 52px; border-radius: 999px; object-fit: cover; object-position: 50% 26%; box-shadow: var(--shadow-sm); }
.t-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--fg1); }
.t-role { font-size: 14.5px; color: var(--fg2); }
.t-role a { color: var(--blue-600); font-weight: 600; }

/* ============================================================
   CONTACT / CTA with Cal.com
   ============================================================ */
.contact-card { display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: stretch;
  background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 24px; box-shadow: var(--shadow-lg); overflow: hidden; }
.contact-copy { padding: 52px 48px; }
.contact-copy .h2 { margin-top: 14px; }
.contact-copy .lead { margin-top: 16px; }
.contact-list { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 13px; }
.contact-list li { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--fg2); }
.contact-list li i { width: 19px; height: 19px; color: var(--success); flex: none; }
.contact-note { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--border-subtle);
  display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--fg3); }
.contact-note i { width: 18px; height: 18px; color: var(--orange-500); }
.contact-cal { background: var(--bg-subtle); border-left: 1px solid var(--border-subtle); align-self: stretch; min-height: 640px; }
.contact-cal .cal-inline { width: 100%; height: 100%; min-height: 640px; overflow: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--blue-950); color: #fff; }
.foot-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 40px;
  padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.foot-brand { max-width: 320px; }
.foot-brand .logo { height: 54px; width: auto; }
/* Custom logo on the dark footer — knock out to white. */
.foot-brand .foot-logo-img { filter: brightness(0) invert(1); }
.foot-brand .wordmark { font-family: var(--font-display); font-weight: 800; font-size: 30px; letter-spacing: -0.03em; color: #fff; }
.foot-brand .wordmark span { color: var(--orange-400); }
.foot-brand p { font-size: 14.5px; line-height: 1.6; color: var(--blue-200); margin-top: 18px; }
.foot-social { display: flex; gap: 10px; margin-top: 22px; }
.foot-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: var(--blue-100);
  transition: all var(--dur-base) var(--ease-standard); }
.foot-social a:hover { background: var(--orange-500); color: var(--fg-on-accent); }
.foot-audit { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 26px 28px; max-width: 360px; }
.foot-audit .k { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--orange-400); }
.foot-audit .t { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-top: 10px; line-height: 1.2; }
.foot-audit .btn { margin-top: 18px; }
.foot-cols { display: grid; grid-template-columns: repeat(var(--foot-cols, 5), 1fr); gap: 32px; padding-top: 52px; }
.foot-col .head { font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--blue-300); margin-bottom: 18px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.foot-col a { font-size: 14px; line-height: 1.4; color: var(--blue-100); }
.foot-col a:hover { color: var(--orange-400); }
.foot-legal { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 52px; padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.foot-legal .copy { font-size: 13px; color: var(--blue-300); }
.foot-legal .links { display: flex; gap: 22px; font-size: 13px; color: var(--blue-300); flex-wrap: wrap; align-items: center; }
.foot-legal .links a:hover { color: #fff; }
.foot-legal .status { display: flex; align-items: center; gap: 7px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero { background: var(--blue-950); color: #fff; position: relative; overflow: hidden; }
.about-hero .grad { position: absolute; inset: 0; background: var(--grad-hero); opacity: 0.92; pointer-events: none; }
.about-hero .glow { position: absolute; right: -8%; bottom: -30%; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,147,35,0.20), transparent 62%); pointer-events: none; }
.about-hero .inner { position: relative; padding-top: 92px; padding-bottom: 96px; text-align: center; }
.about-hero .badge { display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .1em; color: var(--blue-100); text-transform: uppercase; }
.about-hero h1 { margin-top: 24px; max-width: 980px; margin-left: auto; margin-right: auto; }
.about-hero h1 .accent { color: var(--orange-400); }
.about-hero .lead { margin-top: 22px; color: var(--blue-100); max-width: 660px; margin-left: auto; margin-right: auto; }
.about-hero .actions { display: flex; gap: 14px; margin-top: 32px; justify-content: center; flex-wrap: wrap; }
.about-hero .chips { display: flex; gap: 10px; margin-top: 44px; justify-content: center; flex-wrap: wrap; }
.about-hero .chips span { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; color: var(--blue-200);
  padding: 7px 14px; border-radius: 999px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); }

.about-stats { background: var(--bg-page); padding: 72px 0; }
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.about-stats .stat { border-top: 2px solid var(--border-default); }
.about-stats .stat .fig { color: var(--orange-500); font-size: 56px; }
.about-stats .stat .unit { color: var(--fg3); }
.about-stats .stat .lbl { color: var(--fg2); font-size: 14.5px; }

.founder { background: var(--bg-subtle); }
.founder-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 56px; align-items: center; }
.founder-photo { position: relative; }
.founder-frame { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-xl); background: var(--blue-950); }
.founder-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.founder-frame .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,28,48,0.40) 0%, rgba(6,28,48,0) 40%); }
.founder-frame .stripes { position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 14px, rgba(255,255,255,0) 14px 28px); }
.founder-frame .grad { position: absolute; inset: 0; background: var(--grad-hero); opacity: 0.5; }
.founder-frame .ph-label { position: absolute; inset: 0; display: grid; place-items: center; }
.founder-frame .ph-label span { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue-200); border: 1px dashed rgba(255,255,255,0.28); padding: 8px 14px; border-radius: 8px; }
.founder-copy h2 { margin-top: 14px; }
.founder-copy .body { margin-top: 18px; display: flex; flex-direction: column; gap: 16px; max-width: 620px; }
.founder-copy .body p { font-size: 17px; line-height: 1.6; color: var(--fg2); margin: 0; }
.founder-copy .body strong { color: var(--fg1); }
.founder-creds { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
.cred { display: flex; align-items: center; gap: 11px; padding: 13px 15px; background: #fff; border: 1px solid var(--border-subtle); border-radius: 12px; box-shadow: var(--shadow-xs); }
.cred .ic { width: 34px; height: 34px; border-radius: 9px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; flex-shrink: 0; }
.cred .ic i { width: 18px; height: 18px; }
.cred span.txt { font-size: 13.5px; font-weight: 600; color: var(--fg1); line-height: 1.3; }

.values { background: var(--bg-page); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
.value { padding: 26px; display: flex; flex-direction: column; }
.value .top { display: flex; align-items: center; justify-content: space-between; }
.value .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; }
.value .ic i { width: 24px; height: 24px; }
.value .num { font-family: var(--font-mono); font-size: 13px; color: var(--slate-300); font-weight: 600; }
.value h3 { margin-top: 18px; }
.value p { font-size: 14.5px; line-height: 1.55; color: var(--fg2); margin-top: 10px; }

.certs { background: var(--blue-50); }
.certs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.cert { background: #fff; border: 1px solid var(--border-subtle); border-radius: 16px; padding: 20px 22px 22px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; min-height: 172px; }
.cert .badge-row { display: flex; justify-content: flex-end; }
.cert .badge-row span { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--success-fg); background: var(--success-bg); padding: 5px 10px; border-radius: 999px; }
.cert .badge-row i { width: 13px; height: 13px; }
.cert .nm { flex: 1; display: flex; align-items: center; font-family: var(--font-display); font-weight: 800; font-size: 32px; line-height: 1; letter-spacing: -0.03em; }
.cert .nm .tld { color: var(--slate-300); font-weight: 600; }
.cert .note { font-family: var(--font-mono); font-size: 12px; color: var(--fg3); }
.certs-proof { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border-default); display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; }
.certs-proof .kicker { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--fg3); }
.certs-proof .clients { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.certs-proof .clients span { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; background: #fff; border: 1px solid var(--border-default); border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--fg2); }
.certs-proof .clients i { width: 16px; height: 16px; color: var(--slate-400); }

.about-cta { background: var(--blue-950); color: #fff; position: relative; overflow: hidden; }
.about-cta .grad { position: absolute; inset: 0; background: var(--grad-blue); opacity: 0.55; pointer-events: none; }
.about-cta .dotgrid { position: absolute; inset: 0; opacity: 0.4; pointer-events: none; }
.about-cta .inner { position: relative; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-cal { border-left: 0; border-top: 1px solid var(--border-subtle); }
}
@media (max-width: 980px) {
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .stats-grid, .about-stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-cols { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
}
@media (max-width: 860px) {
  .testi-grid { grid-template-columns: 1fr; gap: 36px; }
  .testi-photo { max-width: 420px; }
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-photo { max-width: 420px; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .section { padding: 64px 0; }
  .services-grid, .platforms-grid, .stats-grid, .about-stats-grid, .values-grid, .certs-grid { grid-template-columns: 1fr; }
  .founder-creds { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: repeat(2, 1fr); }
  .contact-copy { padding: 36px 28px; }
}

/* ============================================================
   BLOG — shared
   ============================================================ */
.blog-hero { background: var(--blue-950); color: #fff; position: relative; overflow: hidden; }
.blog-hero .grad { position: absolute; inset: 0; background: var(--grad-hero); opacity: 0.92; pointer-events: none; }
.blog-hero .glow { position: absolute; right: -6%; top: -30%; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,147,35,0.18), transparent 62%); pointer-events: none; }
.blog-hero .inner { position: relative; padding-top: 92px; padding-bottom: 76px; text-align: center; }
.blog-hero .badge { display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .12em; color: var(--blue-100); text-transform: uppercase; }
.blog-hero h1 { margin-top: 20px; font-size: clamp(36px, 5vw, 60px); }
.blog-hero .lead { color: var(--blue-200); margin: 18px auto 0; max-width: 640px; }

/* ============================================================
   BLOG — listing grid + cards
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.bc-img { position: relative; width: 100%; aspect-ratio: 768 / 406; background: var(--blue-950); overflow: hidden; display: block; }
.bc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-standard); }
.blog-card:hover .bc-img img { transform: scale(1.04); }
.bc-body { display: flex; flex-direction: column; gap: 12px; padding: 22px 24px 26px; flex: 1; }
.bc-cats { font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; text-transform: uppercase;
  letter-spacing: .1em; color: var(--blue-600); line-height: 1.5; }
.bc-title { font-family: var(--font-display); font-weight: 600; font-size: 20px; line-height: 1.28;
  letter-spacing: -0.01em; color: var(--fg1); margin: 0; text-wrap: pretty; transition: color var(--dur-base) var(--ease-standard); }
.blog-card:hover .bc-title { color: var(--blue-700); }
.bc-excerpt { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--fg2); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.bc-more { margin-top: auto; padding-top: 6px; display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 600; color: var(--blue-600); }
.bc-more i { width: 15px; height: 15px; transition: transform var(--dur-base) var(--ease-standard); }
.blog-card:hover .bc-more i { transform: translateX(3px); }

/* ---- pagination (the_posts_pagination, restyled) ---- */
.blog-pager { margin-top: 64px; display: flex; justify-content: center; }
.blog-pager .nav-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.blog-pager .page-numbers { min-width: 42px; height: 42px; padding: 0 10px; display: inline-flex; align-items: center;
  justify-content: center; font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--blue-700);
  border-radius: var(--radius-md); transition: background var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard); }
.blog-pager a.page-numbers:hover { background: var(--slate-100); }
.blog-pager .page-numbers.current { background: var(--orange-500); color: #fff; box-shadow: var(--shadow-accent); }
.blog-pager .page-numbers.dots { color: var(--slate-400); }
.blog-pager .next, .blog-pager .prev { font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase;
  letter-spacing: .08em; border: 1px solid var(--border-default); background: var(--bg-surface); }
.blog-pager .next:hover, .blog-pager .prev:hover { border-color: var(--blue-500); background: var(--blue-50); }

/* ============================================================
   BLOG — single post
   ============================================================ */
.post-hero { background: linear-gradient(180deg, var(--blue-50) 0%, var(--blue-100) 30%, var(--bg-page) 100%);
  color: var(--fg1); position: relative; overflow: hidden; }
.post-hero .glow-a { position: absolute; right: -6%; top: -26%; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,147,35,0.12), transparent 62%); pointer-events: none; }
.post-hero .glow-b { position: absolute; left: -10%; bottom: -30%; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(7,80,139,0.10), transparent 62%); pointer-events: none; }
.post-hero .inner { position: relative; padding-top: 40px; padding-bottom: 56px; max-width: 920px; }
.post-back { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--blue-600); font-weight: 600; margin-bottom: 22px; }
.post-back i { width: 15px; height: 15px; }
.post-banner { margin: 0 0 36px; }
.post-banner .frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-default); box-shadow: var(--shadow-lg); background: #fff; }
.post-banner img { width: 100%; display: block; }
.post-banner figcaption { margin-top: 12px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; color: var(--fg3); text-align: center; }
.post-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.post-chips .chip { background: var(--blue-50); color: var(--blue-700); border: 1px solid var(--blue-200); }
.post-hero h1 { margin-top: 20px; color: var(--fg1); font-size: clamp(30px, 4vw, 45px); }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 28px; }
.post-date { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--fg2); }
.post-date i { width: 15px; height: 15px; color: var(--slate-500); }
.post-share { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.post-share .lbl { font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--slate-400); }
.share-row { display: flex; gap: 10px; }
.share-row a { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--border-default); background: #fff;
  display: grid; place-items: center; color: var(--slate-600); transition: all var(--dur-base) var(--ease-standard); }
.share-row a:hover { background: var(--blue-600); color: #fff; border-color: var(--blue-600); }

/* body two-column layout */
.post-body { background: var(--bg-page); padding-top: 72px; }
.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 64px; align-items: start; }

/* prose (the_content output) */
.prose { counter-reset: bsec; font-family: var(--font-body); }
.prose > p, .prose li { font-size: 17px; line-height: 1.72; color: var(--fg2); text-wrap: pretty; }
.prose > p { margin: 0 0 20px; }
.prose > p:first-of-type, .prose .lead { font-size: 19px; line-height: 1.6; color: var(--fg2); }
.prose a { color: var(--blue-600); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--blue-700); font-weight: 600; }
.prose h2 { counter-increment: bsec; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(24px, 2.4vw, 30px); line-height: 1.15; letter-spacing: -0.01em; color: var(--fg1);
  margin: 44px 0 16px; scroll-margin-top: 96px; }
.prose h2::before { content: counter(bsec, decimal-leading-zero); display: block; font-family: var(--font-mono);
  font-size: 13px; font-weight: 600; color: var(--orange-600); letter-spacing: .04em; margin-bottom: 6px; }
.prose h3 { font-family: var(--font-display); font-weight: 600; font-size: 21px; color: var(--fg1); margin: 32px 0 12px; scroll-margin-top: 96px; }
.prose ul, .prose ol { margin: 0 0 20px; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.prose img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin: 28px 0; }
.prose blockquote { margin: 28px 0; padding: 20px 24px; background: var(--blue-50); border: 1px solid var(--blue-100);
  border-left: 3px solid var(--orange-500); border-radius: var(--radius-lg); color: var(--blue-900);
  font-family: var(--font-display); font-weight: 600; font-size: 18px; line-height: 1.5; }
.prose blockquote p { margin: 0; }
.prose figcaption { font-family: var(--font-mono); font-size: 12px; color: var(--fg3); text-align: center; margin-top: 8px; }

/* sticky sidebar */
.blog-aside { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 26px; }
.side-label { font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--slate-400); margin-bottom: 14px; }
.toc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.toc-list a { display: flex; gap: 11px; padding: 8px 10px; border-radius: 9px; font-size: 14px; color: var(--fg2);
  transition: all var(--dur-fast) var(--ease-standard); }
.toc-list a .n { font-family: var(--font-mono); font-size: 12px; color: var(--slate-400); flex: none; }
.toc-list a:hover, .toc-list a.is-active { background: var(--slate-50); color: var(--blue-700); }
.toc-list a.is-active .n { color: var(--orange-600); }
.aside-block { border-top: 1px solid var(--border-subtle); padding-top: 24px; }
.aside-block p { font-size: 14px; line-height: 1.55; color: var(--fg2); margin: 0 0 14px; }
.aside-quote { background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: 16px; padding: 20px 22px; }
.aside-quote i { width: 22px; height: 22px; color: var(--orange-500); }
.aside-quote p { font-family: var(--font-display); font-size: 16px; font-weight: 600; line-height: 1.4; color: var(--blue-900); margin: 10px 0 0; text-wrap: pretty; }

/* form fields */
.fld-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--fg1); margin-bottom: 7px; }
.fld-label .req { color: var(--orange-600); }
.fld { width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--fg1); background: #fff;
  border: 1px solid var(--border-default); border-radius: var(--radius-md); padding: 12px 14px; outline: none;
  transition: border-color var(--dur-base), box-shadow var(--dur-base); }
.fld::placeholder { color: var(--slate-400); }
.fld:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(31,108,171,0.15); }
.fld-dark { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18); color: #fff; }
.fld-dark::placeholder { color: rgba(255,255,255,0.45); }
.fld-dark:focus { border-color: var(--orange-400); box-shadow: 0 0 0 3px rgba(242,147,35,0.2); }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-msg { margin: 2px 0 0; font-size: 13.5px; font-weight: 600; }
.newsletter-msg[hidden] { display: none; }

/* end-of-article CTA */
.post-cta { margin-top: 52px; padding: 32px 34px; background: var(--blue-950); border-radius: var(--radius-lg);
  position: relative; overflow: hidden; scroll-margin-top: 96px; }
.post-cta .dotgrid { position: absolute; inset: 0; opacity: 0.3; }
.post-cta .inner { position: relative; }
.post-cta h3 { color: #fff; font-size: 26px; margin-top: 12px; max-width: 460px; }
.post-cta p { color: var(--blue-200); font-size: 15.5px; line-height: 1.6; margin-top: 12px; max-width: 520px; }
.post-cta .cal-wrap { margin-top: 22px; border-radius: var(--radius-md); overflow: hidden; }
.post-cta .cal-inline { width: 100%; height: 560px; max-height: 72vh; overflow: auto; background: #061C30; border-radius: var(--radius-md); }

/* prev / next */
.postnav { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.prev-post { padding: 20px 24px; display: flex; align-items: center; gap: 16px; text-wrap: pretty;
  transition: box-shadow var(--dur-base), transform var(--dur-base), border-color var(--dur-base); }
.prev-post:hover { border-color: var(--border-strong); }
.prev-post.next { flex-direction: row-reverse; text-align: right; }
.prev-post .ic { flex: none; width: 42px; height: 42px; border-radius: 10px; background: var(--slate-100); display: grid; place-items: center; color: var(--slate-600); }
.prev-post.next .ic { background: var(--blue-50); color: var(--blue-600); }
.prev-post .ic i { width: 20px; height: 20px; }
.prev-post .k { font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--slate-400); display: block; }
.prev-post .t { font-weight: 600; font-size: 15.5px; color: var(--fg1); display: block; margin-top: 4px; }

/* free consultation (navy) */
.consult { background: var(--blue-950); color: #fff; position: relative; overflow: hidden; }
.consult .grad { position: absolute; inset: 0; background: var(--grad-hero); opacity: 0.9; pointer-events: none; }
.consult .dotgrid { position: absolute; inset: 0; opacity: 0.28; }
.consult .glow { position: absolute; left: -8%; bottom: -40%; width: 540px; height: 540px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,147,35,0.16), transparent 62%); }
.consult .inner { position: relative; padding-top: 80px; padding-bottom: 80px; }
.consult-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.consult h2 { color: #fff; margin-top: 14px; max-width: 440px; }
.consult .lead { color: var(--blue-200); margin-top: 18px; max-width: 460px; }
.consult ul { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 13px; }
.consult ul li { display: flex; align-items: center; gap: 12px; color: var(--blue-100); font-size: 15.5px; }
.consult ul li .ic { flex: none; width: 24px; height: 24px; border-radius: 7px; background: rgba(242,147,35,0.18); display: grid; place-items: center; color: var(--orange-400); }
.consult ul li .ic i { width: 15px; height: 15px; }
.consult .actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 30px; }
.consult .actions .alt { display: inline-flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 600; color: var(--orange-400); }
.consult-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 30px 30px 32px; backdrop-filter: blur(6px); scroll-margin-top: 96px; }
.consult-form .k { font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--orange-400); margin-bottom: 20px; }
.consult-form .fields { display: flex; flex-direction: column; gap: 16px; }
.consult-form .fld-label { color: var(--blue-100); }
.consult-sent { display: flex; align-items: center; gap: 8px; margin: 0; font-size: 13.5px; color: var(--orange-300); }
.consult-sent i { width: 15px; height: 15px; }

/* comments */
.comments { background: var(--bg-page); padding-top: 72px; padding-bottom: 88px; }
.comments .wrap { max-width: 760px; }
.comments-title { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.comments-title h2 { font-size: 30px; }
.comment-list { list-style: none; margin: 28px 0 40px; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.comment-list .comment-body { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 20px 24px; box-shadow: var(--shadow-xs); }
.comment-list .comment-author { font-family: var(--font-display); font-weight: 600; color: var(--fg1); font-size: 15.5px; }
.comment-list .comment-author .says { display: none; }
.comment-list .comment-meta { font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--slate-400); margin-bottom: 8px; }
.comment-list .comment-meta a { color: var(--slate-400); }
.comment-list .children { list-style: none; margin: 22px 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.comment-respond { margin-top: 28px; }
.comment-form { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.comment-form-author, .comment-form-email { display: inline-block; }
.comment-form p { margin: 0; }
.comment-form label { display: block; font-size: 13.5px; font-weight: 600; color: var(--fg1); margin-bottom: 7px; }
.comment-form input[type=text], .comment-form input[type=email], .comment-form input[type=url], .comment-form textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--fg1); background: #fff;
  border: 1px solid var(--border-default); border-radius: var(--radius-md); padding: 12px 14px; outline: none; }
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(31,108,171,0.15); }
.comment-form .form-submit .submit { font-family: var(--font-body); font-weight: 600; font-size: 15px; border-radius: var(--radius-md);
  padding: 13px 22px; border: 0; cursor: pointer; background: var(--blue-600); color: #fff; box-shadow: var(--shadow-sm); }
.comment-form .form-submit .submit:hover { background: var(--blue-700); }
.comments .comment-reply-link { font-size: 13.5px; font-weight: 600; color: var(--blue-600); }

/* ============================================================
   BLOG — responsive
   ============================================================ */
@media (max-width: 980px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 940px) {
  .blog-layout { grid-template-columns: 1fr; gap: 0; }
  .blog-aside { display: none; }
  .consult-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .postnav { grid-template-columns: 1fr; }
  .comment-form .comment-row { grid-template-columns: 1fr; }
}

/* ============================================================
   LANDING PAGES — SitePageKit (template-lp.php)
   hero → benefits → automate → delivery → why → faq → book
   ============================================================ */

/* ---- hero ---- */
.lp-hero { background: var(--blue-950); color: #fff; position: relative; overflow: hidden; }
.lp-hero .dotgrid { position: absolute; inset: 0; opacity: 0.26; pointer-events: none; }
.lp-hero .grad { position: absolute; inset: 0; background: var(--grad-hero); opacity: 0.92; pointer-events: none; }
.lp-hero .glow { position: absolute; right: -6%; top: -24%; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,147,35,0.18), transparent 62%); pointer-events: none; }
.lp-hero .inner { position: relative; padding-top: 64px; padding-bottom: 72px; }
.lp-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.lp-hero .h1 { margin-top: 20px; font-size: clamp(34px, 4.2vw, 54px); }
.lp-hero .h1 .accent { color: var(--orange-400); }
.lp-hero-lead { margin-top: 20px; color: var(--blue-100); max-width: 560px; }
.lp-outcome { display: flex; align-items: center; gap: 11px; margin-top: 18px;
  font-family: var(--font-mono); font-size: 13px; color: var(--blue-100); }
.lp-outcome i { width: 15px; height: 15px; color: var(--orange-400); flex: none; }
.lp-hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* ---- hero: automation flow mock ---- */
.lp-flow { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px; padding: 20px 20px 22px; box-shadow: var(--shadow-xl); }
.lp-flow-top { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.lp-flow-top .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(242,147,35,0.16); color: var(--orange-400); }
.lp-flow-top .ic i { width: 18px; height: 18px; }
.lp-flow-top .name { font-family: var(--font-mono); font-size: 12.5px; color: var(--blue-200); letter-spacing: .02em; }
.lp-flow-top .run { margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11px; color: var(--blue-100);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 4px 11px; border-radius: 999px; }
.lp-flow-items { display: flex; flex-direction: column; gap: 12px; }
.lp-flow-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 14px;
  background: rgba(255,255,255,0.96); box-shadow: var(--shadow-md); }
.lp-flow-item .ic { flex: none; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: var(--slate-100); }
.lp-flow-item .ic i { width: 21px; height: 21px; }
.lp-flow-item .txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.lp-flow-item .lbl { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--fg1); }
.lp-flow-item .sub { font-family: var(--font-mono); font-size: 11px; color: var(--slate-500); }
.lp-flow-item .tag { flex: none; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--success-fg);
  background: var(--success-bg); padding: 5px 11px; border-radius: 999px; }
.lp-flow-item .tag i { width: 12px; height: 12px; }
.lp-flow-foot { margin-top: 16px; display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px; color: var(--blue-300); }
.lp-flow-foot .self { display: inline-flex; align-items: center; gap: 6px; color: var(--blue-100); }
.lp-flow-foot .self i { width: 12px; height: 12px; color: var(--orange-400); }

/* ---- benefits ---- */
.lp-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.lp-benefit { padding: 30px 28px; }
.lp-benefit .ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-600); }
.lp-benefit .ic i { width: 24px; height: 24px; }
.lp-benefit .h3 { margin-top: 20px; font-size: 19px; }
.lp-benefit p { font-size: 14.5px; line-height: 1.55; color: var(--fg2); margin: 10px 0 0; }

/* ---- automate ---- */
.lp-automate-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.lp-stack { margin-top: 28px; padding: 24px 26px; border-radius: 18px; background: var(--blue-950);
  color: #fff; position: relative; overflow: hidden; }
.lp-stack .dotgrid { position: absolute; inset: 0; opacity: 0.3; pointer-events: none; }
.lp-stack .inner { position: relative; }
.lp-stack .k { font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase;
  letter-spacing: .1em; color: var(--orange-400); margin-bottom: 14px; }
.lp-stack p { font-size: 14.5px; line-height: 1.62; color: var(--blue-100); margin: 0; }
.lp-stack .chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.lp-chip { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .02em; color: #fff; padding: 7px 13px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); }
.lp-chip .dot { width: 5px; height: 5px; border-radius: 9px; background: var(--orange-400); flex: none; }
.lp-automate-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lp-check { display: flex; align-items: flex-start; gap: 13px; padding: 18px; border-radius: 14px;
  background: var(--bg-surface); border: 1px solid var(--border-subtle); }
.lp-check .ic { flex: none; width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center;
  background: var(--success-bg); color: var(--success-fg); }
.lp-check .ic i { width: 17px; height: 17px; }
.lp-check > span:last-child { font-size: 14.5px; line-height: 1.45; color: var(--fg1); font-weight: 500; padding-top: 4px; }

/* ---- delivery steps ---- */
.lp-step-grid { display: grid; grid-template-columns: repeat(var(--lp-steps, 5), 1fr); gap: 16px; margin-top: 52px; }
.lp-step { position: relative; padding: 28px 22px; border-radius: 16px;
  background: var(--bg-page); border: 1px solid var(--border-subtle); }
.lp-step .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.lp-step .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--blue-600); color: #fff; }
.lp-step .ic i { width: 21px; height: 21px; }
.lp-step .num { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--slate-400); }
.lp-step .h3 { font-size: 17px; }
.lp-step p { font-size: 13.5px; line-height: 1.5; color: var(--fg2); margin: 8px 0 0; }

/* ---- why AMATEC ---- */
.lp-why { background: var(--blue-950); color: #fff; position: relative; overflow: hidden; }
.lp-why .dotgrid { position: absolute; inset: 0; opacity: 0.3; pointer-events: none; }
.lp-why .grad { position: absolute; inset: 0; background: var(--grad-blue); opacity: 0.5; pointer-events: none; }
.lp-why .inner { position: relative; }
.lp-why-grid { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
.lp-why-grid.has-quote { grid-template-columns: 1fr 1fr; }
.lp-why-grid .h2 { margin-top: 14px; color: #fff; max-width: 520px; }
.lp-why-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lp-why-grid.has-quote .lp-why-list { grid-template-columns: 1fr; }
.lp-why-list li { display: flex; gap: 14px; align-items: flex-start; }
.lp-why-list .ic { flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(242,147,35,0.16); color: var(--orange-400); }
.lp-why-list .ic i { width: 20px; height: 20px; }
.lp-why-list .t { display: block; font-family: var(--font-display); font-weight: 600; font-size: 16.5px; color: #fff; }
.lp-why-list .d { display: block; font-size: 14px; line-height: 1.5; color: var(--blue-200); margin-top: 4px; }
.lp-quote { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px; padding: 38px; box-shadow: var(--shadow-xl); }
.lp-quote > i { width: 34px; height: 34px; color: var(--orange-400); fill: var(--orange-400); display: block; }
.lp-quote blockquote { margin: 16px 0 0; font-family: var(--font-display); font-weight: 500; font-size: 22px;
  line-height: 1.5; letter-spacing: -0.01em; color: #fff; }
.lp-quote .who { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; gap: 12px; }
.lp-quote .badge { width: 40px; height: 40px; border-radius: 999px; background: var(--grad-accent);
  display: grid; place-items: center; flex: none; }
.lp-quote .badge i { width: 19px; height: 19px; color: #fff; }
.lp-quote .n { display: block; font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: #fff; }
.lp-quote .r { font-size: 13.5px; color: var(--blue-200); }

/* ---- FAQ accordion ---- */
.lp-faq { margin-top: 44px; display: flex; flex-direction: column; gap: 12px; }
.lp-faq-item { border-radius: 14px; background: var(--bg-surface); border: 1px solid var(--border-subtle);
  overflow: hidden; transition: border-color var(--dur-base) var(--ease-standard); }
.lp-faq-item.open { border-color: var(--blue-200); }
.lp-faq-q { width: 100%; text-align: left; display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; background: transparent; border: 0; cursor: pointer; font: inherit; }
.lp-faq-q .q { flex: 1; font-family: var(--font-display); font-weight: 600; font-size: 17.5px; color: var(--fg1); }
.lp-faq-q .toggle { flex: none; width: 30px; height: 30px; border-radius: 8px; position: relative;
  background: var(--slate-100); transition: background var(--dur-base) var(--ease-standard); }
.lp-faq-item.open .lp-faq-q .toggle { background: var(--blue-600); }
.lp-faq-q .toggle span { position: absolute; top: 50%; left: 50%; width: 13px; height: 2px; border-radius: 2px;
  transform: translate(-50%, -50%); background: var(--slate-500); transition: transform .25s var(--ease-standard), background var(--dur-base); }
.lp-faq-q .toggle span:last-child { transform: translate(-50%, -50%) rotate(90deg); }
.lp-faq-item.open .lp-faq-q .toggle span { background: #fff; }
.lp-faq-item.open .lp-faq-q .toggle span:last-child { transform: translate(-50%, -50%) rotate(0deg); }
.lp-faq-a p { margin: 0; padding: 0 24px 22px; font-size: 15px; line-height: 1.62; color: var(--fg2); max-width: 720px; }
@media (prefers-reduced-motion: no-preference) {
  .lp-faq-item.open .lp-faq-a { animation: lp-faq-in .28s var(--ease-out); }
  @keyframes lp-faq-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
}

/* ---- book a meeting ---- */
.lp-book { background: var(--blue-950); color: #fff; position: relative; overflow: hidden; }
.lp-book .dotgrid { position: absolute; inset: 0; opacity: 0.4; pointer-events: none; }
.lp-book .grad { position: absolute; inset: 0; background: var(--grad-blue); opacity: 0.55; pointer-events: none; }
.lp-book .inner { position: relative; }
.lp-consult-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: stretch;
  background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 24px;
  box-shadow: var(--shadow-lg); overflow: hidden; }
.lp-consult-grid .copy { padding: 52px 48px; color: var(--fg1); }
.lp-consult-grid .copy .h2 { margin-top: 14px; }
.lp-consult-grid .copy .lead { margin-top: 16px; }
.lp-consult-grid .cal { background: var(--bg-subtle); border-left: 1px solid var(--border-subtle);
  align-self: stretch; min-height: 640px; }
.lp-consult-grid .cal .cal-inline { width: 100%; height: 100%; min-height: 640px; overflow: auto; }

/* ---- landing responsive ---- */
@media (max-width: 980px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-automate-grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-why-grid.has-quote { grid-template-columns: 1fr; gap: 40px; }
  .lp-consult-grid { grid-template-columns: 1fr; }
  .lp-consult-grid .cal { border-left: 0; border-top: 1px solid var(--border-subtle); }
  .lp-why-grid.has-quote .lp-why-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .lp-benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-step-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lp-benefit-grid { grid-template-columns: 1fr; }
  .lp-step-grid { grid-template-columns: 1fr; }
  .lp-automate-list { grid-template-columns: 1fr; }
  .lp-why-list, .lp-why-grid.has-quote .lp-why-list { grid-template-columns: 1fr; }
  .lp-consult-grid .copy { padding: 36px 26px; }
  .lp-quote { padding: 28px 24px; }
}

/* ============================================================
   AI PAGE — badges, platform strip, approach steps, pillars
   ============================================================ */
.ai-badges { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.ai-badges .lp-chip i { width: 14px; height: 14px; color: var(--orange-400); }
.ai-strip { margin-top: 52px; padding: 28px 32px; border-radius: 18px; background: var(--bg-surface);
  border: 1px solid var(--border-subtle); display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
  justify-content: space-between; }
.ai-strip .k { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase;
  letter-spacing: .1em; color: var(--slate-500); white-space: nowrap; }
.ai-strip .row { display: flex; flex-wrap: wrap; gap: 14px; flex: 1; justify-content: flex-end; }
.ai-strip .pill { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: 12px;
  background: #fff; border: 1px solid var(--border-default); box-shadow: var(--shadow-sm);
  font-size: 14.5px; font-weight: 600; color: var(--fg1); }
.ai-strip .pill i { width: 18px; height: 18px; color: var(--blue-600); }
.ai-step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.ai-step { padding: 32px 30px; }
.ai-step .top { display: flex; align-items: center; justify-content: space-between; }
.ai-step .ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: var(--blue-600); color: #fff; }
.ai-step .ic i { width: 23px; height: 23px; }
.ai-step .num { font-family: var(--font-mono); font-size: 28px; font-weight: 600; color: var(--slate-200); }
.ai-step .h3 { margin-top: 22px; font-size: 20px; }
.ai-step p { font-size: 14.5px; line-height: 1.55; color: var(--fg2); margin: 10px 0 0; }
.ai-pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 22px; }
.ai-pillar { display: flex; gap: 18px; padding: 30px; border-radius: 18px;
  background: var(--bg-surface); border: 1px solid var(--border-subtle); }
.ai-pillar .ic { flex: none; width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: var(--orange-50); color: var(--orange-600); }
.ai-pillar .ic i { width: 24px; height: 24px; }
.ai-pillar .h3 { font-size: 19px; }
.ai-pillar p { font-size: 14.5px; line-height: 1.6; color: var(--fg2); margin: 9px 0 0; }

/* ============================================================
   CONTACT PAGE — rails, form card, direct panel
   ============================================================ */
.contact-rails { margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  max-width: 760px; margin-left: auto; margin-right: auto; }
.contact-rails a { display: flex; align-items: center; gap: 14px; text-align: left; padding: 16px 18px;
  border-radius: 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  transition: all var(--dur-base) var(--ease-standard); }
.contact-rails a:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.28); }
.contact-rails .ic { flex: none; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(242,147,35,0.16); color: var(--orange-400); }
.contact-rails .ic i { width: 20px; height: 20px; }
.contact-rails .txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.contact-rails .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-200); }
.contact-rails .v { font-size: 14.5px; font-weight: 600; color: #fff; }

.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 28px; align-items: start; }
.cf-card { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 24px;
  box-shadow: var(--shadow-lg); padding: 44px 44px 40px; }
.cf-sub { font-size: 15.5px; line-height: 1.55; color: var(--fg2); margin: 12px 0 30px; }
.cf-card form { display: flex; flex-direction: column; gap: 18px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-label { font-size: 13px; font-weight: 600; color: var(--fg2); margin-bottom: 7px; display: block; }
.cf-label span { color: var(--fg3); font-weight: 400; }
.cf-field { width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--fg1);
  padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border-default); background: #fff;
  outline: none; transition: border-color var(--dur-base), box-shadow var(--dur-base); }
.cf-field:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px var(--blue-50); }
.cf-field::placeholder { color: var(--fg3); }
textarea.cf-field { min-height: 120px; resize: vertical; line-height: 1.5; }
.cf-select { position: relative; }
.cf-select select { appearance: none; cursor: pointer; }
.cf-select select:invalid, .cf-select select option[value=""] { color: var(--fg3); }
.cf-select i { position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  pointer-events: none; color: var(--slate-400); width: 18px; height: 18px; }
.cf-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.cf-privacy { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--fg3); }
.cf-privacy i { width: 15px; height: 15px; color: var(--slate-400); }
.cf-sent { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; padding: 40px 0; }
.cf-sent .ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--success-bg); color: var(--success); }
.cf-sent .ic i { width: 28px; height: 28px; }
.cf-sent .h3 { font-size: 24px; }
.cf-sent p { font-size: 15.5px; line-height: 1.55; color: var(--fg2); max-width: 440px; margin: 0; }
/* The success panel + form set display:flex, which beats the [hidden] UA rule —
   re-assert display:none so the JS show/hide toggle actually works. */
.cf-card form[hidden], .cf-sent[hidden], .cf-error[hidden] { display: none; }
.cf-error { margin-top: 4px; padding: 11px 15px; border-radius: 12px; font-size: 14px;
  color: var(--error, #b3261e); background: var(--error-bg, #fde8e6); border: 1px solid var(--error-bd, #f5c6c2); }

.cf-side { display: flex; flex-direction: column; gap: 20px; }
.cf-direct { background: var(--blue-950); color: #fff; border-radius: 24px; padding: 36px 32px;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cf-direct .dotgrid { position: absolute; inset: 0; opacity: 0.3; pointer-events: none; }
.cf-direct .inner { position: relative; }
.cf-direct .rows { margin-top: 24px; display: flex; flex-direction: column; gap: 22px; }
.cf-direct .row { display: flex; gap: 14px; align-items: flex-start; }
.cf-direct .row .ic { flex: none; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); color: var(--orange-400); }
.cf-direct .row .ic i { width: 19px; height: 19px; }
.cf-direct .txt { display: flex; flex-direction: column; gap: 3px; }
.cf-direct .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-300); }
.cf-direct .v { font-size: 15px; font-weight: 500; color: #fff; line-height: 1.45; }
.cf-direct a.row:hover .v { color: var(--orange-400); }
.cf-direct .follow { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.cf-direct .follow .icons { display: flex; gap: 10px; margin-top: 14px; }
.cf-direct .follow .icons a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08);
  display: grid; place-items: center; color: var(--blue-100); transition: all var(--dur-base) var(--ease-standard); }
.cf-direct .follow .icons a:hover { background: var(--orange-500); color: var(--fg-on-accent); }
.cf-assure { display: flex; align-items: center; gap: 14px; background: var(--bg-surface);
  border: 1px solid var(--border-subtle); border-radius: 18px; padding: 20px 22px; box-shadow: var(--shadow-sm); }
.cf-assure .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--success-bg); color: var(--success); }
.cf-assure .ic i { width: 21px; height: 21px; }
.cf-assure .t { font-size: 15px; font-weight: 600; color: var(--fg1); }
.cf-assure .d { font-size: 13.5px; color: var(--fg2); margin-top: 2px; }

/* ============================================================
   PLATFORM PAGES — cert badge, canvas heroes, why grids, stats
   ============================================================ */
.pf-cert-badge { margin-top: 18px; display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 12px; border-radius: 999px; background: rgba(242,147,35,0.12);
  border: 1px solid rgba(242,147,35,0.35); }
.pf-cert-badge .ic { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  background: var(--orange-500); color: var(--fg-on-accent); flex: none; }
.pf-cert-badge .ic i { width: 18px; height: 18px; }
.pf-cert-badge .txt { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.pf-cert-badge .k { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--orange-200); }
.pf-cert-badge .v { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff; }

.pf-canvas-card { margin-top: 34px; max-width: 920px; margin-left: auto; margin-right: auto;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); border-radius: 18px;
  padding: 18px 20px 22px; box-shadow: var(--shadow-xl); }
.pf-canvas-card .bar { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.pf-canvas-card .bar .dot { width: 9px; height: 9px; border-radius: 9px; flex: none; }
.pf-canvas-card .bar .name { font-family: var(--font-mono); font-size: 12.5px; color: var(--blue-200); letter-spacing: .02em; }
.pf-canvas-card .bar .run { margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11px; color: var(--blue-100);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 4px 11px; border-radius: 999px; }
.pf-canvas-card .scroll { overflow-x: auto; }
.pf-canvas { position: relative; margin: 0 auto; border-radius: 12px;
  background-image: radial-gradient(rgba(255,255,255,0.13) 1.2px, transparent 1.2px);
  background-size: 22px 22px; background-position: 6px 6px; }
.pf-canvas .node { position: absolute; width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid #fff; display: grid; place-items: center; box-shadow: var(--shadow-md); }
.pf-canvas .node i { width: 17px; height: 17px; }
.pf-canvas .node-label { position: absolute; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 9.5px; color: var(--blue-200); white-space: nowrap; }
.n8n-node { position: absolute; width: 58px; height: 58px; border-radius: 14px; background: #fff;
  border: 1px solid var(--border-default); box-shadow: var(--shadow-md); display: grid; place-items: center; }
.n8n-node i { width: 25px; height: 25px; }
.n8n-node .retry { position: absolute; top: -7px; right: -7px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--slate-100); border: 1px solid var(--border-default); display: grid; place-items: center; color: var(--slate-500); }
.n8n-node .retry i { width: 10px; height: 10px; }
.n8n-label { position: absolute; transform: translateX(-50%); font-family: var(--font-display);
  font-weight: 600; font-size: 11.5px; color: #fff; white-space: nowrap; }
.n8n-sub { position: absolute; transform: translateX(-50%); font-family: var(--font-mono);
  font-size: 9px; color: var(--blue-300); white-space: nowrap; }
.n8n-port-lbl { position: absolute; font-family: var(--font-mono); font-size: 8.5px; color: var(--blue-300); }

/* monday board mockup */
.monday-board { width: 760px; max-width: 100%; margin: 0 auto; text-align: left; }
.monday-board .group-head { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.monday-board .group-head .rail { width: 3px; height: 16px; border-radius: 2px; background: #A25DDC; }
.monday-board .group-head .g { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: #fff; }
.monday-board .group-head .n { font-family: var(--font-mono); font-size: 11px; color: var(--blue-300); }
.monday-board .cols-head, .monday-board .row { display: grid; grid-template-columns: 1fr 52px 128px 64px; gap: 12px; }
.monday-board .cols-head { padding: 0 6px 8px; font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--blue-300); }
.monday-board .row { align-items: center; padding: 11px 6px; border-top: 1px solid rgba(255,255,255,0.08); }
.monday-board .item { font-size: 13.5px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.monday-board .who { justify-self: center; width: 28px; height: 28px; border-radius: 50%; color: #fff;
  display: grid; place-items: center; font-family: var(--font-mono); font-size: 11px; font-weight: 600; }
.monday-board .status { text-align: center; color: #fff; font-size: 12px; font-weight: 600; padding: 6px 0;
  border-radius: 6px; white-space: nowrap; transition: background-color .55s var(--ease-standard); }
.monday-board .due { text-align: center; font-family: var(--font-mono); font-size: 11.5px; color: var(--blue-200); }
.monday-board .recipe { margin-top: 14px; display: flex; align-items: center; gap: 10px; padding: 11px 14px;
  border-radius: 11px; background: rgba(242,147,35,0.1); border: 1px solid rgba(242,147,35,0.28); }
.monday-board .recipe i { width: 16px; height: 16px; color: var(--orange-400); flex: none; }
.monday-board .recipe span { font-size: 12.5px; color: var(--blue-100); min-width: 0; }
.monday-board .recipe .k { font-family: var(--font-mono); color: var(--orange-300); }
.monday-board .recipe b { color: #fff; }

/* zoho deluge editor */
.zoho-editor { background: rgba(0,0,0,0.22); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 16px 8px; overflow-x: auto; }
.zoho-editor .code { min-width: 440px; font-family: var(--font-mono); font-size: 13px; line-height: 1.85; text-align: left; }
.zoho-editor .ln { display: flex; gap: 16px; white-space: pre; min-height: 24px; }
.zoho-editor .no { color: var(--blue-400); width: 18px; text-align: right; flex: none; user-select: none; }
.zoho-editor .tx { flex: 1; }
.zoho-editor .tok.com { color: var(--blue-300); font-style: italic; }
.zoho-editor .tok.var { color: #fff; }
.zoho-editor .tok.key { color: var(--orange-400); }
.zoho-editor .tok.str { color: #86D9A6; }
.zoho-editor .tok.fn { color: #8AB4F8; }
.zoho-editor .tok.pun { color: var(--blue-300); }
.zoho-caret { display: inline-block; width: 8px; height: 15px; margin-left: 1px; vertical-align: -2px;
  background: var(--orange-400); }
@media (prefers-reduced-motion: no-preference) {
  .zoho-caret { animation: zoho-blink 1s steps(1) infinite; }
  @keyframes zoho-blink { 50% { opacity: 0; } }
}

/* platform why grids + stats */
.pf-why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.pf-cert-card { background: var(--blue-950); color: #fff; border-radius: 24px; padding: 48px 40px;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg); text-align: center; }
.pf-cert-card .dotgrid { position: absolute; inset: 0; opacity: 0.34; pointer-events: none; }
.pf-cert-card .inner { position: relative; }
.pf-cert-card .medal { width: 88px; height: 88px; border-radius: 50%; display: grid; place-items: center;
  margin: 0 auto; background: var(--grad-accent); color: var(--fg-on-accent); box-shadow: var(--shadow-accent); }
.pf-cert-card .medal i { width: 42px; height: 42px; }
.pf-cert-card .k { margin-top: 22px; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--orange-300); }
.pf-cert-card .t { margin-top: 8px; font-family: var(--font-display); font-weight: 800; font-size: 32px; line-height: 1.12; }
.pf-cert-card p { margin: 16px auto 0; font-size: 14.5px; line-height: 1.55; color: var(--blue-100); max-width: 320px; }
.pf-reason-grid { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.pf-reason { display: flex; flex-direction: column; gap: 10px; }
.pf-reason .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-600); }
.pf-reason .ic i { width: 21px; height: 21px; }
.pf-reason .t { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--fg1); }
.pf-reason .d { font-size: 14px; line-height: 1.5; color: var(--fg2); }
.pf-stats { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pf-stats .stat-card { padding: 26px 24px; text-align: center; }
.pf-stats .n { font-family: var(--font-display); font-weight: 800; font-size: 34px; color: var(--blue-600); letter-spacing: -0.02em; }
.pf-stats .l { font-size: 13.5px; color: var(--fg2); margin-top: 6px; }

/* ============================================================
   PRODUCT PAGES — frames, overview, chat mock, CTA band
   ============================================================ */
.prod-frame { border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow-xl); background: rgba(255,255,255,0.04); }
.prod-frame .bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  background: rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.1); }
.prod-frame .bar.light { background: var(--bg-subtle); border-bottom: 1px solid var(--border-subtle); }
.prod-frame .bar .d { width: 11px; height: 11px; border-radius: 9px; background: var(--slate-300); flex: none; }
.prod-frame .bar .addr { margin-left: 14px; font-family: var(--font-mono); font-size: 12px; color: var(--blue-200); }
.prod-frame .bar.light .addr { color: var(--fg3); }
.prod-frame .media { position: relative; display: grid; place-items: center; aspect-ratio: 16 / 9; }
.prod-frame .media.dark { background-color: var(--blue-900);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 14px); }
.prod-frame .media.light { background-color: var(--blue-50);
  background-image: repeating-linear-gradient(135deg, rgba(7,80,139,0.06) 0 2px, transparent 2px 14px); }
.prod-frame .media.yt { display: block; background-size: cover; background-position: center; }
.prod-frame .media.yt .ph { position: absolute; inset: 0; display: grid; place-items: center; }
.prod-frame .ph { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.prod-frame .play { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center;
  background: var(--orange-500); color: var(--fg-on-accent); box-shadow: var(--shadow-accent); }
.prod-frame .play i { width: 28px; height: 28px; fill: currentColor; }
.prod-frame .chipicon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--blue-600); color: #fff; }
.prod-frame .chipicon i { width: 26px; height: 26px; }
.prod-frame .cap { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .06em; color: var(--blue-200); }
.prod-frame .yt-tag { position: absolute; right: 14px; bottom: 12px; display: inline-flex; align-items: center;
  gap: 6px; font-family: var(--font-mono); font-size: 11px; color: #fff; background: rgba(6,28,48,0.55);
  padding: 5px 10px; border-radius: 999px; }
.prod-frame .yt-tag i { width: 13px; height: 13px; }

.prod-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.prod-benefits { list-style: none; padding: 0; margin: 30px 0 0; display: flex; flex-direction: column; gap: 20px; }
.prod-benefits li { display: flex; gap: 14px; align-items: flex-start; }
.prod-benefits .ic { flex: none; width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center;
  background: var(--success-bg); color: var(--success); margin-top: 1px; }
.prod-benefits .ic i { width: 18px; height: 18px; }
.prod-benefits .t { display: block; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--fg1); }
.prod-benefits .d { display: block; font-size: 14.5px; line-height: 1.5; color: var(--fg2); margin-top: 3px; }

.tc-chat { padding: 0; overflow: hidden; border-radius: 18px; max-width: 420px; justify-self: center; width: 100%; }
.tc-chat .head { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--blue-600); color: #fff; }
.tc-chat .avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.16);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.tc-chat .who { display: flex; flex-direction: column; }
.tc-chat .who .n { font-weight: 600; font-size: 15px; }
.tc-chat .who .s { font-size: 12px; color: var(--blue-100); display: inline-flex; align-items: center; gap: 6px; }
.tc-chat .call { margin-left: auto; color: var(--blue-100); }
.tc-chat .call i { width: 18px; height: 18px; }
.tc-chat .msgs { padding: 18px 16px; display: flex; flex-direction: column; gap: 10px; background: var(--bg-subtle); min-height: 300px; }
.tc-chat .msg { max-width: 78%; }
.tc-chat .msg.out { align-self: flex-end; }
.tc-chat .msg.in { align-self: flex-start; }
.tc-chat .bubble { padding: 9px 13px; border-radius: 14px; font-size: 14px; line-height: 1.45; box-shadow: var(--shadow-xs); }
.tc-chat .msg.out .bubble { border-bottom-right-radius: 4px; background: var(--blue-600); color: #fff; }
.tc-chat .msg.in .bubble { border-bottom-left-radius: 4px; background: #fff; color: var(--fg1); border: 1px solid var(--border-subtle); }
.tc-chat .time { display: block; text-align: right; font-size: 10.5px; margin-top: 4px; color: var(--fg3); }
.tc-chat .msg.out .time { color: var(--blue-100); }
.tc-chat .composer { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: #fff;
  border-top: 1px solid var(--border-subtle); }
.tc-chat .fld-ph { flex: 1; padding: 9px 14px; border-radius: 999px; background: var(--bg-subtle); color: var(--fg3); font-size: 13.5px; }
.tc-chat .send { width: 38px; height: 38px; border-radius: 50%; background: var(--orange-500);
  color: var(--fg-on-accent); display: grid; place-items: center; flex: none; }
.tc-chat .send i { width: 17px; height: 17px; }

.prod-cta { background: var(--blue-950); color: #fff; position: relative; overflow: hidden; }
.prod-cta .dotgrid { position: absolute; inset: 0; opacity: 0.4; pointer-events: none; }
.prod-cta .grad { position: absolute; inset: 0; background: var(--grad-blue); opacity: 0.5; pointer-events: none; }
.prod-cta .glow-l { position: absolute; left: -6%; bottom: -30%; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,147,35,0.18), transparent 62%); pointer-events: none; }
.prod-cta .inner { position: relative; }
.prod-assure { display: flex; gap: 28px; margin-top: 40px; justify-content: center; flex-wrap: wrap; }
.prod-assure span { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--blue-100); }
.prod-assure i { width: 18px; height: 18px; color: var(--orange-400); }

/* ============================================================
   LEGAL PAGES — hero chips, prose, sticky aside
   ============================================================ */
.legal-chip { background: rgba(255,255,255,0.07); color: var(--blue-100); border: 1px solid rgba(255,255,255,0.14);
  display: inline-flex; align-items: center; gap: 7px; }
.legal-chip i { width: 14px; height: 14px; }
.legal-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 56px; align-items: start; }
.legal-num { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--orange-600);
  letter-spacing: .04em; flex: none; }
.legal-body { margin-top: 14px; padding-left: 41px; display: flex; flex-direction: column; gap: 12px; }
.legal-body p { font-size: 16.5px; line-height: 1.7; color: var(--fg2); margin: 0; }
.legal-cta { margin-top: 48px; padding: 26px 28px; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 18px; }
.legal-aside { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 28px; }
.legal-aside .side-k { font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase;
  letter-spacing: .12em; color: var(--slate-400); margin-bottom: 14px; }
.legal-aside ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 3px; }
.legal-toc { display: flex; gap: 10px; padding: 7px 10px; border-radius: 9px; font-size: 14px; color: var(--fg2);
  transition: all var(--dur-fast) var(--ease-standard); }
.legal-toc:hover { background: var(--slate-50); color: var(--blue-700); }
.legal-toc .n { font-family: var(--font-mono); font-size: 12px; color: var(--slate-400); }
.legal-link { display: flex; align-items: center; gap: 9px; padding: 9px 11px; border-radius: 10px;
  font-size: 14.5px; font-weight: 500; color: var(--fg2); transition: all var(--dur-fast) var(--ease-standard); }
.legal-link i { width: 15px; height: 15px; color: var(--slate-400); }
.legal-link:hover { background: var(--slate-50); }
.legal-link.current { font-weight: 600; color: var(--blue-700); background: var(--blue-50); }
.legal-link.current i { color: var(--blue-600); }

/* ============================================================
   NEW PAGES — responsive
   ============================================================ */
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .prod-overview-grid { grid-template-columns: 1fr; gap: 36px; }
  .pf-why-grid { grid-template-columns: 1fr; gap: 36px; }
  .legal-layout { grid-template-columns: 1fr; gap: 40px; }
  .legal-aside { position: static; }
}
@media (max-width: 880px) {
  .ai-step-grid { grid-template-columns: 1fr; }
  .ai-pillar-grid { grid-template-columns: 1fr; }
  .pf-stats { grid-template-columns: repeat(2, 1fr); }
  .pf-reason-grid { grid-template-columns: 1fr; }
  .contact-rails { grid-template-columns: 1fr; max-width: 420px; }
  .ai-strip .row { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .cf-row { grid-template-columns: 1fr; }
  .cf-card { padding: 30px 22px 28px; }
  .pf-stats { grid-template-columns: 1fr; }
  .legal-body { padding-left: 0; }
}

/* legal list bullets + email card */
.legal-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.legal-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.5px; line-height: 1.6; color: var(--fg2); }
.legal-list .dot { flex: none; width: 7px; height: 7px; border-radius: 9px; margin-top: 9px; background: var(--orange-500); }
.legal-email { display: inline-flex; align-items: center; gap: 12px; align-self: flex-start;
  padding: 12px 16px; border-radius: 12px; background: var(--blue-50); border: 1px solid var(--border-subtle);
  transition: all var(--dur-base) var(--ease-standard); }
.legal-email:hover { border-color: var(--blue-500); }
.legal-email .ic { flex: none; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: var(--blue-600); color: #fff; }
.legal-email .ic i { width: 18px; height: 18px; }
.legal-email .addr { font-size: 16px; font-weight: 600; color: var(--blue-700); }
