/* ============================================================ CodePeko — DESIGN SYSTEM Professional SEO Agency Websit2 ============================================================ */

/* ── Google Fonts ──
   Loaded via header.php's preload+swap+noscript pattern — already async,
   not render-blocking. Do NOT re-add an @import here: an @import inside a
   stylesheet is render-blocking by nature and would duplicate the same
   request header.php already makes correctly. */

/* ── Root Tokens ── */
:root {
 --c-ink:        #0C0F1A;
  --c-navy:       #0B1D3A;
  --c-blue:       #1A3A6B;
  --c-accent:     #D94F3D;
  --c-gold:       #E8A020;
  --c-sky:        #2A7BFF;
  --c-surface:    #F5F7FB;
  --c-border:     #E2E7F0;
  --c-muted:      #6B7A99;
  --c-white:      #FFFFFF;
  --c-success:      #34D399;
  --c-success-rgb:  52,211,153;
  --c-danger:       #FF8070;
  --c-danger-rgb:   255,128,112;

  /* Avatar/icon gradient pairs — shared by .tc-avatar--* and .team-card-avatar--*
     (previously duplicated verbatim as two independent copies). */
  --grad-indigo: linear-gradient(135deg, #3730A3, #6366F1);
  --grad-teal:   linear-gradient(135deg, #0F766E, var(--c-success));
  --grad-amber:  linear-gradient(135deg, #B45309, #F59E0B);
  --grad-rose:   linear-gradient(135deg, #9F1239, #FB7185);
/* --ff-display/--ff-body must match the families actually loaded in header.php
   (Fraunces + Plus Jakarta Sans). Previously pointed to 'Sora'/'Inter', which
   are never loaded anywhere on the site — every heading and most body text
   was silently rendering in the browser's fallback sans-serif instead of the
   intended brand typefaces. Fixed here, not a typography change. */
--ff-display: 'Fraunces', serif;
--ff-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --fs-xs:   14px;   /* 12px */
  --fs-sm:   16px; /* 13px */
  --fs-base: 0.9375rem; /* 15px */
  --fs-md:   1.0625rem; /* 17px */
  --fs-lg:   1.25rem;   /* 20px */
  --fs-xl:   1.5rem;    /* 24px */
  --fs-2xl:  2rem;      /* 32px */
  --fs-3xl:  2.625rem;  /* 42px */
  --fs-4xl:  3.5rem;    /* 56px */
  --fs-5xl:  4.5rem;    /* 72px */

  --lh-tight:  1.1;
  --lh-snug:   1.3;
  --lh-base:   1.65;
  --lh-loose:  1.85;

  --fw-light:  300;
  --fw-regular:400;
  --fw-medium: 500;
  --fw-semi:   500;
  --fw-bold:   700;
  --fw-black:  900;

  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  --shadow-xs: 0 1px 3px rgba(12,15,26,.06);
  --shadow-sm: 0 2px 8px rgba(12,15,26,.08);
  --shadow-md: 0 8px 28px rgba(12,15,26,.10);
  --shadow-lg: 0 20px 60px rgba(12,15,26,.14);
  --shadow-xl: 0 40px 100px rgba(12,15,26,.18);

  /* Accent-tinted shadows — same blur/spread/alpha as the neutral scale above,
     reserved for elements that already pair with var(--c-accent) (border, icon,
     or fill on hover/focus). Never used as a blanket replacement for the neutral
     scale, since several components intentionally pair with --c-sky or --c-gold. */
  --shadow-accent-xs: 0 1px 3px rgba(217,79,61,.06);
  --shadow-accent-sm: 0 2px 8px rgba(217,79,61,.08);
  --shadow-accent-md: 0 8px 28px rgba(217,79,61,.10);
  --shadow-accent-lg: 0 8px 28px rgba(217,79,61,.4);

  --ease:      cubic-bezier(.4,0,.2,1);
  --ease-out:  cubic-bezier(0,0,.2,1);
  --ease-back: cubic-bezier(.34,1.56,.64,1);
  --dur-fast:  160ms;
  --dur-base:  280ms;
  --dur-slow:  480ms;
}

/* ── Skip Navigation ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: .5rem 1rem;
  background: var(--c-accent);
  color: #fff;
  font-weight: var(--fw-semi);
  font-size: var(--fs-sm);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  z-index: 9999;
  transition: top var(--dur-fast);
  display: none;
}
.skip-link:focus { top: 0; }

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-base);
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; padding: 0; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.container--narrow { max-width: 820px; }
.container--wide   { max-width: 1400px; }

/* ── Section ── */
.section { padding-block: var(--space-24); }
.section--lg { padding-block: var(--space-32); }
.section--sm { padding-block: var(--space-16); }
.section--dark { background: var(--c-navy); color: var(--c-white); }
.section--surface { background: var(--c-surface); }
.section--white { background: var(--c-white); }

/* ── Section Heading ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--space-5);
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-accent);
  border-radius: var(--r-full);
}
.section-title {
  font-family: var(--ff-display);
  font-size: 46px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: -.02em;
  color: var(--c-navy);
  margin-bottom: var(--space-5);
}
.section-title em {
  font-style: normal;
  color: var(--c-accent);
}
.section-sub {
  font-size: var(--fs-md);
  color: var(--c-muted);
  line-height: var(--lh-loose);
  max-width: 580px;
}
.section-header { margin-bottom: var(--space-16); }
.section-header--center { text-align: center; }
.section-header--center .section-eyebrow { justify-content: center; }
.section-header--center .section-sub { margin-inline: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: .03em;
  border-radius: var(--r-full);
  padding: 14px 28px;
  transition: all var(--dur-base) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn[hidden] { display: none; }
.btn svg { flex-shrink: 0; transition: transform var(--dur-base) var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  background: var(--c-accent);
  color: var(--c-white);
  border: 2px solid var(--c-accent);
}
.btn--primary:hover {
     background: #c03d2c;
    border-color: #c03d2c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent-lg);
}
.btn--navy {
  background: var(--c-navy);
  color: var(--c-white);
  border: 2px solid var(--c-navy);
}
.btn--navy:hover { background: var(--c-blue); border-color: var(--c-blue); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--c-navy);
  border: 2px solid var(--c-border);
}
.btn--outline:hover { border-color: var(--c-navy); background: var(--c-navy); color: var(--c-white); }
.btn--outline-white {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn--outline-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }
.btn--lg { font-size: var(--fs-base); padding: 16px 36px; }
.btn--sm { font-size: var(--fs-xs); padding: 10px 20px; }
.btn--ghost { background: none; border: none; padding: 0; color: var(--c-accent); font-weight: var(--fw-semi); }
.btn--ghost:hover svg { transform: translateX(5px); }

/* ── Badge / Tag ── */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(217,79,61,.1);
  border: 1px solid rgba(217,79,61,.2);
  color: var(--c-accent);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--dur-base) var(--ease), background var(--dur-base) var(--ease);
}
#site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-wrapper {
  display: flex;
  align-items: center;
  height: 72px;
  gap: var(--space-8);
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--c-navy);
  flex-shrink: 0;
  line-height: 1;
}

.nav-logo img{height:45px;width:100%;}
.footer-logo img{height:45px;width:100%;}
.nav-logo span { color: var(--c-accent); }

/* Desktop nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--c-muted);
  border-radius: var(--r-sm);
  transition: all var(--dur-fast) var(--ease);
}
.nav-link:hover {  color:var(--c-accent); }
.nav-link.active { color:var(--c-accent); font-weight: var(--fw-bold); }
.nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--dur-base) var(--ease);
  flex-shrink: 0;
  margin-top: 5px;
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); }
.nav-cta-wrap { display: flex; align-items: center; gap: var(--space-3); margin-left: var(--space-4); }

/* ── Mega Dropdown ── */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-6);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-6);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease), visibility var(--dur-base);
  pointer-events: none;
}
.nav-item:hover .mega-dropdown,
.nav-item:focus-within .mega-dropdown,
.mega-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.mega-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  border-left: 1px solid var(--c-border);
  transform: translateX(-50%) rotate(45deg);
}
.mega-sidebar {
  background: var(--c-navy);
  border-radius: var(--r-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
}
.mega-sidebar-title {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-4);
}
.mega-sidebar-sub {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.55);
  line-height: var(--lh-base);
  margin-bottom: var(--space-6);
  flex: 1;
}
.mega-sidebar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-accent);
  color: var(--c-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  padding: 10px 18px;
  border-radius: var(--r-sm);
  transition: background var(--dur-base) var(--ease);
}
.mega-sidebar-cta:hover { background: var(--c-accent-hover); }

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  align-content: start;
}
.mega-service-link {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-4);
  border-radius: var(--r-md);
  transition: background var(--dur-fast) var(--ease);
}
.mega-service-link:hover { background: var(--c-surface); }
.mega-service-link:hover .msl-icon { background: var(--c-accent); color: var(--c-white); }
.msl-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--c-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--dur-base) var(--ease);
  color: var(--c-navy);
}
.msl-icon svg { width: 18px; height: 18px; }
.msl-body {}
.msl-name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  line-height: 1.3;
  margin-bottom: 3px;
}
.msl-desc {
  font-size: 11.5px;
  color: var(--c-muted);
  line-height: 1.5;
}

/* ── Mobile Toggle ── */
.nav-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border);
  color: var(--c-navy);
  margin-left: auto;
  transition: background var(--dur-fast) var(--ease);
}
.nav-mobile-toggle:hover { background: var(--c-surface); }

/* ── Offcanvas Mobile Menu ── */
.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12,15,26,.55);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-slow) var(--ease), visibility var(--dur-slow);
}
.offcanvas-overlay.open { opacity: 1; visibility: visible; }
  .sr-label {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }
.offcanvas-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 92vw);
  background: var(--c-white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
}
.offcanvas-overlay.open .offcanvas-panel { transform: translateX(0); }

.offcanvas-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--c-border);
  flex-shrink: 0;
}
.offcanvas-logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--c-navy);
}
.offcanvas-logo-img { height: 40px; width: auto; }
.offcanvas-logo span { color: var(--c-accent); }
.offcanvas-close {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: var(--c-surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-navy);
  transition: background var(--dur-fast) var(--ease);
}
.offcanvas-close:hover { background: var(--c-border); }

.offcanvas-body { padding: var(--space-4); flex: 1; }

.offcanvas-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--c-navy);
  border-radius: var(--r-sm);
  transition: background var(--dur-fast) var(--ease);
}
.offcanvas-nav-link:hover { background: var(--c-surface); }
.offcanvas-nav-link svg { transition: transform var(--dur-base) var(--ease); }
.offcanvas-nav-link.open svg { transform: rotate(180deg); }

.offcanvas-submenu {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-slow) var(--ease);
}
.offcanvas-submenu.open { max-height: 600px; }

.offcanvas-service-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  margin: 2px 0;
  border-radius: var(--r-sm);
  transition: background var(--dur-fast) var(--ease);
}
.offcanvas-service-link:hover { background: var(--c-surface); }
.osl-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(217,79,61,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--c-accent);
}
.osl-icon svg { width: 16px; height: 16px; }
.osl-name { font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--c-navy); }

.offcanvas-divider { height: 1px; background: var(--c-border); margin: var(--space-3) var(--space-4);display: none; }

.offcanvas-foot {
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--c-border);
  flex-shrink: 0;
}
.offcanvas-foot .btn { width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100svh;
  background: var(--c-navy);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-glow--1 {
  width: 700px; height: 700px;
  top: -160px; right: -120px;
  background: rgba(217,79,61,.32);
}
.hero-glow--2 {
  width: 480px; height: 480px;
  bottom: -60px; left: -100px;
  background: rgba(232,160,32,.12);
}
.hero-content { position: relative; z-index: 2; padding-block: var(--space-20); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,.12);
  border: 1px solid rgba(232,160,32,.3);
  color: var(--c-gold);
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--r-full);
  margin-bottom: var(--space-8);
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.hero-h1 {
  font-family: var(--ff-display);
  font-size: 48px;
  font-weight:600;
  line-height: var(--lh-tight);

  color: var(--c-white);
  margin-bottom: var(--space-6);
}
.hero-h1 em { font-style: normal; color: var(--c-gold); font-weight: 400; }

.hero-p {
  font-size: clamp(var(--fs-base), 1.8vw, var(--fs-md));
  color: rgba(255,255,255,.65);
  line-height: var(--lh-loose);
  max-width: 520px;
  margin-bottom: var(--space-10);
}
.hero-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-16); }

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: var(--space-10);
  padding-top: var(--space-10);
  border-top: 1px solid rgba(255,255,255,.1);
  width: fit-content;
}
.hm-val {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: var(--fw-black);
  color: var(--c-white);
  line-height: 1;
  letter-spacing: -.03em;
}
.hm-val span { color: var(--c-gold); }
.hm-label { font-size: var(--fs-xs); color: rgba(255,255,255,.45); margin-top: 4px; letter-spacing: .04em; }

/* Hero visual / dashboard card */
.hero-visual { position: relative; }
.hero-dashboard-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
  filter: drop-shadow(0 24px 60px rgba(0,0,0,.45));
}
.hero-dashboard {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  backdrop-filter: blur(24px);
}
.dash-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.dash-title { font-size: var(--fs-sm); font-weight: var(--fw-bold); color: rgba(255,255,255,.7); }
.dash-dot { width: 8px; height: 8px; border-radius: 50%; }
.dash-dot--green { background: var(--c-success); box-shadow: 0 0 8px rgba(var(--c-success-rgb),.6); }

.dash-metric { margin-bottom: var(--space-5); }
.dm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.dm-label { font-size: 11.5px; color: rgba(255,255,255,.45); }
.dm-value { font-size: var(--fs-sm); font-weight: var(--fw-bold); color: var(--c-white); }
.dm-badge {
  font-size: 10px;
  font-weight: var(--fw-bold);
  background: rgba(var(--c-success-rgb),.15);
  color: var(--c-success);
  border: 1px solid rgba(var(--c-success-rgb),.25);
  padding: 2px 8px;
  border-radius: var(--r-full);
}
.dm-bar { height: 6px; background: rgba(255,255,255,.08); border-radius: var(--r-full); overflow: hidden; }
.dm-fill { height: 100%; width: 100%; border-radius: var(--r-full); background: linear-gradient(90deg, var(--c-sky), var(--c-accent)); transform-origin: left; animation: barGrow 1.5s var(--ease-out) both; }
.dm-fill--delay1 { animation-delay: .2s; }
.dm-fill--delay2 { animation-delay: .4s; }
@keyframes barGrow { from { transform: scaleX(0); } }

.dash-keywords {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: var(--space-5);
  margin-top: var(--space-5);
}
.dk-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}
.dk-kw { font-size: 11.5px; color: rgba(255,255,255,.6); }
.dk-rank {
  font-size: 11.5px;
  font-weight: var(--fw-bold);
  padding: 2px 8px;
  border-radius: var(--r-full);
  background: rgba(42,123,255,.15);
  color: #93C5FD;
}
.dk-rank--top { background: rgba(var(--c-success-rgb),.15); color: var(--c-success); }
.dk-rank--mid { background: rgba(232,160,32,.15); color: var(--c-gold); }

/* Float cards */
.float-card {
  position: absolute;
  background: var(--c-white);
  border-radius: var(--r-md);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.float-card--1 { bottom: -20px; left: -40px; animation-delay: .5s; }
.float-card--2 { top: 30px; right: -30px; animation-delay: 1.2s; }
.fc-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fc-val { font-family: var(--ff-display); font-size: var(--fs-md); font-weight: var(--fw-black); color: var(--c-navy); line-height: 1; }
.fc-lbl { font-size: 10.5px; color: var(--c-muted); }

/* ============================================================
   TRUST BAR
   ============================================================ */
#trust-bar {
  padding-block: var(--space-5);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-white);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  justify-content: center;
}
.trust-sep {
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-muted);
  white-space: nowrap;
  opacity: .55;
}
.trust-sep::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 16px;
  background: var(--c-border);
  margin-left: var(--space-8);
  vertical-align: middle;
}
.trust-logos { display: flex; align-items: center; gap: var(--space-8); flex-wrap: wrap; justify-content: center; }
.trust-logo {
  font-family: var(--ff-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-black);
  color: var(--c-navy);
  letter-spacing: -.03em;
  opacity: .22;
  transition: opacity var(--dur-base) var(--ease);
  user-select: none;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.trust-logo:hover { opacity: .5; }
.trust-logo img {
  display: block;
  height: 26px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1) brightness(0);
  opacity: 1;
  transition: filter var(--dur-base) var(--ease);
}
.trust-logo:hover img { filter: grayscale(0.4) brightness(0.6); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur-base) var(--ease-back),
    box-shadow var(--dur-base) var(--ease),
    border-color var(--dur-base) var(--ease);
}

.service-card:hover {
  border-color: rgba(42, 123, 255, 0.18);
  transform: translateY(-6px);
  box-shadow:
    0 24px 64px rgba(12, 15, 26, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.sc-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sc-icon svg { width: 26px; height: 26px; }
.sc-num {
  position: absolute;
  top: var(--space-6); right: var(--space-6);
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: var(--fw-black);
  color: var(--c-border);
  line-height: 1;
  letter-spacing: -.05em;
}
.sc-title {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  letter-spacing: -.02em;
  line-height: var(--lh-snug);
}
.sc-desc { font-size: var(--fs-sm); color: var(--c-muted); line-height: var(--lh-loose); flex: 1; }
.sc-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: var(--space-4);
  border-top: 1px solid var(--c-border);
  min-height: 180px;
}
.sc-feat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  color: var(--c-navy);
}
.sc-feat::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(217,79,61,.1);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23D94F3D' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  position: relative;
  top:4px;
}
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--c-accent);
  letter-spacing: .04em;
  margin-top: auto;
  transition: gap var(--dur-base) var(--ease);
}
.sc-link:hover { gap: 10px; }

/* ============================================================
   PROCESS
   ============================================================ */
/* ============================================================
   PROCESS SECTION — CSS Sticky
   ============================================================ */
.process-section-sticky {
  padding-block: 0;
}
.process-section-sticky .process-layout {
  align-items: start;
}

.process-left {
  position: sticky;
  top: calc(72px + var(--space-16));
  align-self: start;
  padding-block: var(--space-24);
}

.process-timeline {
  padding-block: var(--space-24);
  display: flex;
  flex-direction: column;
}

.process-step-v2 {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: var(--space-5);
}
.psv2-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.psv2-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-navy);
  border: 3px solid var(--c-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 1px var(--c-border);
}
.psv2-circle span {
  font-family: var(--ff-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-black);
  color: var(--c-white);
  letter-spacing: -.02em;
}
.psv2-line {
  width: 1px;
  flex: 1;
  min-height: var(--space-5);
  background: linear-gradient(180deg, rgba(11,29,58,.2) 0%, rgba(11,29,58,.05) 100%);
  margin: 4px 0;
}
.psv2-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--space-6) var(--space-8);
  margin-bottom: var(--space-6);
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: none;
  transition:
    transform var(--dur-base) var(--ease-back),
    box-shadow var(--dur-base) var(--ease),
    border-color var(--dur-base) var(--ease);
}
.psv2-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--c-accent), var(--c-sky));
  border-radius: var(--r-lg) 0 0 var(--r-lg);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
}
.psv2-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(12,15,26,.10),
              inset 0 1px 0 rgba(255,255,255,.7);
  border-color: rgba(42,123,255,.18);
}
.psv2-card:hover::before { opacity: 1; }
.psv2-tag {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--space-2);
}
.psv2-title {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  letter-spacing: -.02em;
  line-height: var(--lh-snug);
  margin-bottom: var(--space-3);
}
.psv2-desc {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: var(--lh-loose);
}

/* Responsive */
@media (max-width: 991px) {
  .process-left {
    position: static;
    padding-bottom: 0;
  }
  .process-timeline {
    padding-top: 0;
  }
}
/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: end;
}
.pricing-card {
  border: 2px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--dur-base) var(--ease);
  background: var(--c-white);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card--featured {
  border-color: var(--c-navy);
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-4px); }
.pc-top {
  padding: var(--space-6);
  border-bottom: 1px solid var(--c-border);
}
.pricing-card--featured .pc-top { background: var(--c-navy); border-bottom-color: rgba(255,255,255,.1); }
.pc-badge {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--space-4);
}
.pc-plan {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: var(--space-4);
}
.pricing-card--featured .pc-plan { color: rgba(255,255,255,.5); }
.pc-price {
  font-family: var(--ff-display);
  font-size: 3.25rem;
  font-weight: var(--fw-black);
  color: var(--c-navy);
  letter-spacing: -.04em;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
.pricing-card--featured .pc-price { color: var(--c-white); }
.pc-price-currency { font-size: var(--fs-lg); margin-top: 8px; font-weight: var(--fw-semi); }
.pc-price-period { font-size: var(--fs-sm); font-weight: var(--fw-regular); color: var(--c-muted); margin-top: auto; margin-bottom: 8px; margin-left: 2px;letter-spacing:normal; }
.pricing-card--featured .pc-price-period { color: rgba(255,255,255,.5); }
.pc-desc { font-size: var(--fs-sm); color: var(--c-muted); margin-top: var(--space-3); }
.pricing-card--featured .pc-desc { color: rgba(255,255,255,.55); }

.pc-body { padding: var(--space-6); a}
.pc-features { margin-bottom: var(--space-6); }
.pc-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--c-surface);
  font-size: var(--fs-sm);
  color: var(--c-ink);
}
.pc-feature:last-child { border-bottom: none; }
.pc-feature-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--c-accent); margin-top: 1px; }
.pc-feature-icon--x { color: var(--c-muted); }
.pc-btn { width: 100%; justify-content: center; }

/* ============================================================
   RESULTS / STATS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat-cell {
  padding: var(--space-10) var(--space-8);
  text-align: center;
  background: var(--c-navy);
  transition: background var(--dur-base) var(--ease);
}
.stat-cell:hover { background: var(--c-blue); }
.stat-val {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: var(--fw-black);
  color: var(--c-white);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-val span { color: var(--c-gold); }
.stat-label { font-size: var(--fs-xs); color: rgba(255,255,255,.5); letter-spacing: .06em; text-transform: uppercase; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: all var(--dur-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.testimonial-card:hover::before { transform: scaleX(1); }
.tc-stars { display: flex; gap: 3px; color: var(--c-gold); }
.tc-stars svg { width: 16px; height: 16px; }
.tc-quote {
  font-size: var(--fs-base);
  color: var(--c-ink);
  line-height: var(--lh-loose);
  flex: 1;
}
.tc-quote::before { content: '\201C'; font-family: var(--ff-display); font-size: 2rem; color: var(--c-accent); line-height: 0; vertical-align: -12px; margin-right: 4px; }
.tc-author { display: flex; align-items: center; gap: var(--space-4); }
.tc-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-navy), var(--c-blue));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-weight: var(--fw-black);
  font-size: var(--fs-sm);
  color: var(--c-white);
  flex-shrink: 0;
  letter-spacing: .03em;
}
.tc-avatar--indigo { background: var(--grad-indigo); }
.tc-avatar--teal   { background: var(--grad-teal); }
.tc-avatar--amber  { background: var(--grad-amber); }
.tc-name { font-size: var(--fs-sm); font-weight: var(--fw-bold); color: var(--c-navy); }
.tc-role { font-size: var(--fs-xs); color: var(--c-muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease);
}
.faq-item.open { border-color: var(--c-navy); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--c-navy);
  text-align: left;
  background: var(--c-white);
  transition: background var(--dur-fast) var(--ease);
}
/* .faq-question:hover { background: var(--c-surface); } */
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--dur-base) var(--ease);
  color: var(--c-muted);
}
.faq-item.open .faq-icon { background: var(--c-navy); border-color: var(--c-navy); color: var(--c-white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease);
}
.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: var(--lh-loose);
}
.faq-item.open .faq-answer { max-height: 300px; }



/* ============================================================
   CTA SECTION
   ============================================================ */
#cta-section {
  background: var(--c-accent);
  position: relative;
  overflow: hidden;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-content { position: relative; z-index: 2; }
.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--fw-black);
  color: var(--c-white);
  letter-spacing: -.03em;
  line-height: var(--lh-tight);
  margin-bottom: var(--space-5);
}
.cta-sub { font-size: var(--fs-md); color: rgba(255,255,255,.75); margin-bottom: var(--space-10); max-width: 500px; line-height: var(--lh-loose); }
.cta-form {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.cta-input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border-radius: var(--r-sm);
  border: none;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  color: var(--c-navy);
  outline: none;
  background: rgba(255,255,255,.95);
}
.cta-input::placeholder { color: var(--c-muted); }
.btn--white {
  background: var(--c-white);
  color: var(--c-accent);
  border: 2px solid var(--c-white);
}
.btn--white:hover { background: var(--c-ink); border-color: var(--c-ink); color: var(--c-white); }
.cta-note { font-size: var(--fs-xs); color: rgba(255,255,255,.5); margin-top: var(--space-4); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); margin-top: var(--space-10); }
.value-card {
  padding: var(--space-5);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: all var(--dur-base) var(--ease);
}
.value-card:hover { border-color: var(--c-accent); box-shadow: var(--shadow-accent-sm); }
.vc-icon { font-size: 1.5rem; margin-bottom: var(--space-3); }
.vc-title { font-weight: var(--fw-bold); color: var(--c-navy); font-size: var(--fs-sm); margin-bottom: 4px; }
.vc-desc { font-size: var(--fs-xs); color: var(--c-muted); line-height: var(--lh-base); }

.about-visual {
  position: relative;
}
.about-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-blue) 100%);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-img-graphic {
  text-align: center;
}
.aig-num {
  font-family: var(--ff-display);
  font-size: 5rem;
  font-weight: var(--fw-black);
  color: rgba(255,255,255,.15);
  line-height: 1;
}
.aig-label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.5);
  margin-top: var(--space-2);
}
.about-badge-float {
  position: absolute;
  background: var(--c-white);
  border-radius: var(--r-md);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.about-badge-float--1 { bottom: var(--space-8); right: -var(--space-8); }
.about-badge-float--2 { top: var(--space-8); left: -var(--space-8); }
.abf-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}
.abf-val { font-family: var(--ff-display); font-size: var(--fs-lg); font-weight: var(--fw-black); color: var(--c-navy); line-height: 1; }
.abf-lbl { font-size: var(--fs-xs); color: var(--c-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {background: var(--c-ink);padding-top: var(--space-20);padding-bottom: var(--space-8);}
.footer-grid {display: grid;grid-template-columns: 2fr 1fr 1fr 1fr;gap: var(--space-10);padding-bottom: var(--space-12);border-bottom: 1px solid rgba(255,255,255,.07);margin-bottom: var(--space-8);}
.footer-logo {
  display: inline-block;
  margin-bottom: var(--space-5);
}
.footer-logo-img {
  display: block;
  height: auto;

}
.footer-logo:hover .footer-logo-img { opacity: 1; }
.footer-desc { font-size: var(--fs-sm); color: rgba(255,255,255,.45); line-height: var(--lh-loose); max-width: 280px; margin-bottom: var(--space-6); }
.footer-socials { display: flex; gap: var(--space-3); }
.footer-social {width: 36px; height: 36px;border-radius: var(--r-sm);border: 1px solid rgba(255,255,255,.12);display: flex; align-items: center; justify-content: center;color: rgba(255,255,255,.45);transition: all var(--dur-base) var(--ease);}
.footer-social:hover { background: var(--c-accent); border-color: var(--c-accent); color: var(--c-white); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col-title {font-size: var(--fs-xs);font-weight: var(--fw-bold);letter-spacing: .16em;text-transform: uppercase;color: rgba(255,255,255,.5);margin-bottom: var(--space-5);}
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-address { font-style: normal; }
.footer-link {font-size: var(--fs-sm); color: rgba(255,255,255,.45);transition: color var(--dur-base) var(--ease);}
.footer-link:hover { color: var(--c-white); }
.footer-bottom {display: flex; justify-content: space-between;align-items: center; gap: var(--space-4);flex-wrap: wrap;}
.footer-copy { font-size: var(--fs-xs); color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: var(--space-6); }
.footer-legal a { font-size: var(--fs-xs); color: rgba(255,255,255,.3); transition: color var(--dur-base) var(--ease); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }
.footer-powered {display: flex; align-items: center;gap: var(--space-2);}
.footer-powered span {font-size: var(--fs-xs);color: rgba(255,255,255,.3);white-space: nowrap;}
.footer-powered-logo { height: 18px; width: auto;}
.footer-link { line-height: 1.6; }


/* ============================================================
   ABOUT PAGE
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.team-card {
  text-align: center;
}
.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: var(--fw-black);
  color: rgba(255,255,255,.3);
  margin-bottom: var(--space-4);
}
.team-name { font-weight: var(--fw-bold); font-size: var(--fs-base); color: var(--c-navy); }
.team-role { font-size: var(--fs-xs); color: var(--c-muted); margin-top: 3px; }
/* ── About Page Specific Styles ── */
    .about-hero {
      background: var(--c-navy);
      padding-top: calc(72px + var(--space-20));
      padding-bottom: var(--space-20);
      position: relative;
      overflow: hidden;
    }
    .about-hero-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 100%);
    }
    .about-hero-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      pointer-events: none;
    }
    .about-hero-glow--1 {
      width: 500px; height: 500px;
      top: -80px; right: -60px;
      background: rgba(217,79,61,.28);
    }
    .about-hero-glow--2 {
      width: 300px; height: 300px;
      bottom: -40px; left: -40px;
      background: rgba(232,160,32,.1);
    }
    .about-hero-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-16);
      align-items: center;
    }
    .about-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: var(--space-2);
      font-size: var(--fs-xs);
      font-weight: var(--fw-bold);
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--c-gold);
      margin-bottom: var(--space-5);
    }
    .about-hero-eyebrow::before {
      content: '';
      display: block;
      width: 24px; height: 2px;
      background: var(--c-gold);
      border-radius: var(--r-full);
    }
    .about-hero-h1 {
      font-family: var(--ff-display);
      font-size: 48px;
      font-weight: var(--fw-bold);
      color: var(--c-white);
      letter-spacing: -.03em;
      line-height: var(--lh-tight);
      margin-bottom: var(--space-6);
    }
    .about-hero-h1 em { font-style: normal; color: var(--c-gold); }
    .about-hero-p {
      font-size: var(--fs-md);
      color: rgba(255,255,255,.6);
      line-height: var(--lh-loose);
      margin-bottom: var(--space-8);
    }
    .about-hero-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; }

    /* Hero right - stats card */
    .about-hero-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--r-xl);
      padding: var(--space-8);
      backdrop-filter: blur(20px);
    }
    .ahc-label {
      font-size: var(--fs-xs);
      font-weight: var(--fw-bold);
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255,255,255,.4);
      margin-bottom: var(--space-6);
    }
    .ahc-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-6);
      margin-bottom: var(--space-6);
    }
    .ahc-stat-val {
      font-family: var(--ff-display);
      font-size: 2.8rem;
      font-weight: var(--fw-black);
      color: var(--c-white);
      letter-spacing: -.04em;
      line-height: 1;
    }
    .ahc-stat-val span { color: var(--c-accent); }
    .ahc-stat-label { font-size: var(--fs-xs); color: rgba(255,255,255,.45); margin-top: 6px; }
    .ahc-divider { height: 1px; background: rgba(255,255,255,.08); margin-bottom: var(--space-6); }
    .ahc-team-row {
      display: flex;
      align-items: center;
      gap: var(--space-3);
    }
    .ahc-avatars { display: flex; }
    .ahc-avatar {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--c-navy);
      border: 2px solid rgba(255,255,255,.15);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--ff-display);
      font-size: 11px;
      font-weight: var(--fw-black);
      color: rgba(255,255,255,.7);
      margin-right: -10px;
    }
    .ahc-avatar:nth-child(1) { background: #1A3A6B; }
    .ahc-avatar:nth-child(2) { background: var(--c-accent); }
    .ahc-avatar:nth-child(3) { background: #2A7BFF; }
    .ahc-avatar:nth-child(4) { background: #E8A020; }
    .ahc-team-text { font-size: var(--fs-xs); color: rgba(255,255,255,.5); margin-left: var(--space-5); }
    .ahc-team-text strong { color: var(--c-white); }

    /* Story Section */
    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-16);
      align-items: center;
    }
    .story-visual {
      position: relative;
    }
    .story-img-block {
      background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-blue) 100%);
      border-radius: var(--r-xl);
      aspect-ratio: 4/3;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .story-img-pattern {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 32px 32px;
    }
    .story-img-center {
      position: relative;
      z-index: 2;
      text-align: center;
    }
    .story-img-year {
      font-family: var(--ff-display);
      font-size: 7rem;
      font-weight: var(--fw-black);
      color: rgba(255,255,255,.07);
      line-height: 1;
      letter-spacing: -.06em;
    }
    .story-img-founded {
      font-size: var(--fs-xs);
      font-weight: var(--fw-bold);
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255,255,255,.3);
      margin-top: -var(--space-4);
    }
    .story-float-badge {
      position: absolute;
      background: var(--c-white);
      border-radius: var(--r-md);
      padding: var(--space-4) var(--space-5);
      box-shadow: var(--shadow-xl);
      display: flex;
      align-items: center;
      gap: var(--space-3);
    }
    .story-float-badge--1 {
      bottom: var(--space-6);
      left: -var(--space-8);
      animation: float 3.5s ease-in-out infinite;
    }
    .story-float-badge--2 {
      top: var(--space-6);
      right: -var(--space-6);
      animation: float 4s ease-in-out infinite;
      animation-delay: .8s;
    }
    .sfb-icon {
      width: 38px; height: 38px;
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .sfb-icon--green { background: rgba(var(--c-success-rgb),.15); color: var(--c-success); }
    .sfb-icon--blue  { background: rgba(42,123,255,.12); color: var(--c-sky); }
    .sfb-val { font-family: var(--ff-display); font-size: var(--fs-lg); font-weight: var(--fw-black); color: var(--c-navy); line-height: 1; }
    .sfb-lbl { font-size: 11px; color: var(--c-muted); }

    .story-text {}
    .story-lead {
      font-family: var(--ff-display);
      font-size: var(--fs-xl);
      font-weight: var(--fw-bold);
      color: var(--c-navy);
      line-height: var(--lh-snug);
      letter-spacing: -.02em;
      margin-bottom: var(--space-5);
    }
    .story-lead em { font-style: normal; color: var(--c-accent); }
    .story-body {
      font-size: var(--fs-base);
      color: var(--c-muted);
      line-height: var(--lh-loose);
      margin-bottom: var(--space-4);
    }
    .story-milestones {
      display: flex;
      flex-direction: column;
      gap: var(--space-4);
      margin-top: var(--space-8);
      padding-top: var(--space-8);
      border-top: 1px solid var(--c-border);
    }
    .milestone {
      display: flex;
      align-items: flex-start;
      gap: var(--space-4);
    }
    .milestone-year {
      font-family: var(--ff-display);
      font-size: var(--fs-sm);
      font-weight: var(--fw-black);
      color: var(--c-accent);
      min-width: 44px;
      padding-top: 2px;
    }
    .milestone-text {
      font-size: var(--fs-sm);
      color: var(--c-muted);
      line-height: var(--lh-base);
    }
    .milestone-text strong { color: var(--c-navy); }

    /* Values Section */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-6);
    }
    .value-card-lg {
      padding: var(--space-8);
      border: 1px solid var(--c-border);
      border-radius: var(--r-lg);
      position: relative;
      overflow: hidden;
      transition: all var(--dur-base) var(--ease);
      background: var(--c-white);
    }
    .value-card-lg::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--c-accent), var(--c-sky));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--dur-slow) var(--ease);
    }
    .value-card-lg:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
    .value-card-lg:hover::before { transform: scaleX(1); }
    .vcl-icon {
      width: 52px; height: 52px;
      border-radius: var(--r-md);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: var(--space-5);
      transition: all var(--dur-base) var(--ease);
    }
    .vcl-icon svg { width: 24px; height: 24px; }
    .value-card-lg:hover .vcl-icon { background: var(--c-accent) !important; color: var(--c-white) !important; }
    .vcl-title {
      font-family: var(--ff-display);
      font-size: var(--fs-lg);
      font-weight: var(--fw-bold);
      color: var(--c-navy);
      letter-spacing: -.02em;
      margin-bottom: var(--space-3);
    }
    .vcl-desc { font-size: var(--fs-sm); color: var(--c-muted); line-height: var(--lh-loose); }

    /* Team Section */
    .team-grid-lg {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-6);
    }
    .team-card-lg {
      background: var(--c-white);
      border: 1px solid var(--c-border);
      border-radius: var(--r-lg);
      overflow: hidden;
      transition: all var(--dur-base) var(--ease);
    }
    .team-card-lg:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .team-card-avatar {
      aspect-ratio: 1;
      background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-blue) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-display);
      font-size: 3rem;
      font-weight: var(--fw-black);
      color: rgba(255,255,255,.25);
      position: relative;
      overflow: hidden;
    }
    .team-card-avatar::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 50%;
      background: linear-gradient(transparent, rgba(0,0,0,.3));
    }
    .team-card-avatar--indigo { background: var(--grad-indigo); }
    .team-card-avatar--teal   { background: var(--grad-teal); }
    .team-card-avatar--amber  { background: var(--grad-amber); }
    .team-card-avatar--rose   { background: var(--grad-rose); }
    .team-card-body { padding: var(--space-5); }
    .team-card-name { font-weight: var(--fw-bold); font-size: var(--fs-base); color: var(--c-navy); margin-bottom: 3px; }
    .team-card-role { font-size: var(--fs-xs); color: var(--c-accent); font-weight: var(--fw-semi); margin-bottom: var(--space-3); }
    .team-card-bio { font-size: var(--fs-xs); color: var(--c-muted); line-height: var(--lh-base); }

    /* Stats bar */
    .stats-bar {
      background: var(--c-navy);
      border-radius: var(--r-xl);
      padding: var(--space-10) var(--space-12);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      position: relative;
      overflow: hidden;
    }
    .stats-bar::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 24px 24px;
    }
    .sb-cell {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 var(--space-6);
    }
    .sb-cell:not(:last-child) {
      border-right: 1px solid rgba(255,255,255,.08);
    }
    .sb-val {
      font-family: var(--ff-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: var(--fw-black);
      color: var(--c-white);
      letter-spacing: -.04em;
      line-height: 1;
      margin-bottom: var(--space-2);
    }
    .sb-val span { color: var(--c-gold); }
    .sb-label { font-size: var(--fs-xs); color: rgba(255,255,255,.45); letter-spacing: .08em; text-transform: uppercase; }

    /* Clients / Tools row */
    .tool-logos {
      display: flex;
      align-items: center;
      gap: var(--space-8);
      flex-wrap: wrap;
      justify-content: center;
    }
    .tool-logo-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-2);
      opacity: 1;
      transition: opacity var(--dur-base) var(--ease);
    }
    .tool-logo-item:hover { opacity: 1; }
    .tl-icon {
      width: 48px; height: 48px;
      border-radius: var(--r-md);
      background: var(--c-surface);
      border: 1px solid var(--c-border);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--ff-display);
      font-size: var(--fs-xs);
      font-weight: var(--fw-black);
      color: var(--c-navy);
    }
    .tl-name { font-size: 11px; font-weight: var(--fw-semi); color: var(--c-muted); }

    .tools-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(120px,1fr));gap:14px;padding:1rem 0}
.tool-card{background:var(--color-background-primary);border:0.5px solid var(--color-border-tertiary);border-radius:var(--border-radius-lg);padding:18px 12px 14px;display:flex;flex-direction:column;align-items:center;gap:10px;transition:border-color .2s,transform .15s}
.tool-card:hover{border-color:var(--color-border-primary);transform:translateY(-2px)}
.tl-img{width:44px;height:44px;display:flex;align-items:center;justify-content:center}
.tl-img img,.tl-img svg{width:44px;height:44px;object-fit:contain}
.tl-name{font-size:11.5px;color:var(--color-text-secondary);text-align:center;line-height:1.3}

    /* CTA strip */
    .about-cta-strip {
      background: var(--c-accent);
      border-radius: var(--r-xl);
      padding: var(--space-12) var(--space-12);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-8);
      position: relative;
      overflow: hidden;
    }
    .about-cta-strip::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
      background-size: 22px 22px;
    }
    .acs-content { position: relative; z-index: 2; }
    .acs-title {
      font-family: var(--ff-display);
      font-size: clamp(1.5rem, 3vw, 2.4rem);
      font-weight: var(--fw-black);
      color: var(--c-white);
      letter-spacing: -.03em;
      margin-bottom: var(--space-2);
    }
    .acs-sub { font-size: var(--fs-base); color: rgba(255,255,255,.75); }
    .acs-actions { position: relative; z-index: 2; display: flex; gap: var(--space-3); flex-shrink: 0; }


    /* Responsive */
    @media (max-width: 991px) {
      .about-hero-content { grid-template-columns: 1fr; }
      .story-grid { grid-template-columns: 1fr; }
      .values-grid { grid-template-columns: 1fr 1fr; }
      .team-grid-lg { grid-template-columns: repeat(2, 1fr); }
      .stats-bar { grid-template-columns: repeat(2, 1fr); gap: var(--space-6);justify-content: center; }
      .sb-cell:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: var(--space-6); }
      .sb-cell:nth-child(2) { border-bottom: none; }
      .about-cta-strip { flex-direction: column; text-align: center; }
      .acs-actions { flex-direction: column; width: 100%; }
      .acs-actions .btn { justify-content: center; }
    }
    @media (max-width: 767px) {
      .values-grid { grid-template-columns: 1fr; }
      .ahc-stats { grid-template-columns: 1fr 1fr; }
      .story-float-badge { display: none; }
      .about-cta-strip { padding: var(--space-8); border-radius: var(--r-lg); }
    }
	/* ── Contact Page Specific Styles ── */

    /* Hero */
    .contact-hero {
      background: var(--c-navy);
      padding-top: calc(72px + var(--space-16));
      padding-bottom: var(--space-16);
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .contact-hero-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    }
    .contact-hero-glow {
      position: absolute; border-radius: 50%;
      filter: blur(130px); pointer-events: none;
    }
    .contact-hero-glow--1 { width: 500px; height: 500px; top: -100px; right: -80px; background: rgba(217,79,61,.28); }
    .contact-hero-glow--2 { width: 400px; height: 400px; bottom: -80px; left: -60px; background: rgba(232,160,32,.1); }
    .contact-hero-content { position: relative; z-index: 2; max-width: 680px; margin-inline: auto; }
    .contact-hero-eyebrow {
      display: inline-flex; align-items: center; gap: var(--space-2);
      font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: .2em;
      text-transform: uppercase; color: var(--c-gold);
      margin-bottom: var(--space-5); justify-content: center;
    }
    .contact-hero-eyebrow::before {
      content: ''; display: block; width: 24px; height: 2px;
      background: var(--c-gold); border-radius: var(--r-full);
    }
    .contact-hero-h1 {
      font-family: var(--ff-display);
      font-size: 48px;
      font-weight: var(--fw-bold);
      color: var(--c-white);
      letter-spacing: -.03em;
      line-height: var(--lh-tight);
      margin-bottom: var(--space-5);
    }
    .contact-hero-h1 em { font-style: normal; color: var(--c-gold); }
    .contact-hero-p { font-size: var(--fs-md); color: rgba(255,255,255,.6); line-height: var(--lh-loose); }

    /* Trust pills */
    .contact-trust-pills {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-4);
      flex-wrap: wrap;
      margin-top: var(--space-8);
    }
    .ctp {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.1);
      color: rgba(255,255,255,.65);
      font-size: var(--fs-xs);
      font-weight: var(--fw-semi);
      padding: 7px 16px;
      border-radius: var(--r-full);
    }
    .ctp-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-success); }

    /* Main contact layout */
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 440px;
      gap: var(--space-12);
      align-items: start;
    }

    /* Contact form card */
    .contact-form-card {
      background: var(--c-white);
      border: 1px solid var(--c-border);
      border-radius: var(--r-xl);
      padding: var(--space-10);
      box-shadow: var(--shadow-md);
    }
    .cfc-title {
      font-family: var(--ff-display);
      font-size: var(--fs-2xl);
      font-weight: var(--fw-bold);
      color: var(--c-navy);
      letter-spacing: -.02em;
      margin-bottom: var(--space-2);
    }
    .cfc-sub { font-size: var(--fs-sm); color: var(--c-muted); margin-bottom: var(--space-8); }

    /* Form fields */
    .form-group { margin-bottom: var(--space-5); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
    .form-label {
      display: block;
      font-size: var(--fs-xs);
      font-weight: var(--fw-bold);
      color: var(--c-navy);
      letter-spacing: .04em;
      margin-bottom: var(--space-2);
    }
    .form-label span { color: var(--c-accent); }
    .form-input, .form-select, .form-textarea {
      width: 100%;
      padding: 13px 16px;
      border: 1.5px solid var(--c-border);
      border-radius: var(--r-sm);
      font-family: var(--ff-body);
      font-size: var(--fs-sm);
      color: var(--c-navy);
      background: var(--c-white);
      outline: none;
      transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
      appearance: none;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--c-accent);
      box-shadow: 0 0 0 3px rgba(217,79,61,.1);
    }
    .form-input::placeholder, .form-textarea::placeholder { color: #B0BAD0; }
    .form-textarea { resize: vertical; min-height: 130px; line-height: var(--lh-base); }
    .form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7A99' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 42px; cursor: pointer; }
    .form-select option { color: var(--c-navy); }
    .form-checkbox-group { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-2); }
    .form-checkbox-label {
      display: flex; align-items: center; gap: 8px;
      font-size: var(--fs-xs); font-weight: var(--fw-semi); color: var(--c-muted);
      cursor: pointer; padding: 6px 12px;
      border: 1.5px solid var(--c-border); border-radius: var(--r-full);
      transition: all var(--dur-fast) var(--ease);
      user-select: none;
    }
    .form-checkbox-label:has(input:checked) {
      border-color: var(--c-accent);
      background: rgba(217,79,61,.06);
      color: var(--c-accent);
    }
    .form-checkbox-label input { display: none; }
    .form-submit {
      width: 100%;
      justify-content: center;
      margin-top: var(--space-6);
      font-size: var(--fs-base);
      padding: 16px 36px;
    }
    .form-note {
      font-size: var(--fs-xs);
      color: var(--c-muted);
      text-align: center;
      margin-top: var(--space-4);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }
    .form-note svg { color: var(--c-success); flex-shrink: 0; }

    /* Right sidebar */
    .contact-sidebar { display: flex; flex-direction: column; gap: var(--space-5); }

    /* Info card */
    .contact-info-card {
      background: var(--c-navy);
      border-radius: var(--r-xl);
      padding: var(--space-8);
      color: var(--c-white);
    }
    .cic-title {
      font-family: var(--ff-display);
      font-size: var(--fs-lg);
      font-weight: var(--fw-bold);
      color: var(--c-white);
      margin-bottom: var(--space-6);
    }
    .cic-items { display: flex; flex-direction: column; gap: var(--space-5); }
    .cic-item { display: flex; align-items: flex-start; gap: var(--space-4); }
    .cic-item-icon {
      width: 42px; height: 42px;
      border-radius: var(--r-sm);
      background: rgba(255,255,255,.08);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; color: rgba(255,255,255,.7);
    }
    .cic-item-icon svg { width: 18px; height: 18px; }
    .cic-item-label { font-size: 11px; font-weight: var(--fw-bold); letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 4px; }
    .cic-item-val { font-size: var(--fs-sm); color: rgba(255,255,255,.8); font-weight: var(--fw-semi); }
    .cic-item-val a { color: inherit; transition: color var(--dur-base); }
    .cic-item-val a:hover { color: var(--c-white); }
    .cic-divider { height: 1px; background: rgba(255,255,255,.08); margin: var(--space-5) 0; }
    .cic-hours-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; }
    .cic-hours-day { font-size: var(--fs-xs); color: rgba(255,255,255,.5); }
    .cic-hours-time { font-size: var(--fs-xs); font-weight: var(--fw-semi); color: rgba(255,255,255,.75); }
    .cic-hours-closed { font-size: var(--fs-xs); font-weight: var(--fw-semi); color: rgba(255,255,255,.3); }

    /* Audit card */
    .audit-card {
      background: var(--c-surface);
      border: 1px solid var(--c-border);
      border-radius: var(--r-xl);
      padding: var(--space-6);
    }
    .ac-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(217,79,61,.1); border: 1px solid rgba(217,79,61,.2);
      color: var(--c-accent); font-size: var(--fs-xs); font-weight: var(--fw-bold);
      padding: 5px 12px; border-radius: var(--r-full); margin-bottom: var(--space-4);
    }
    .ac-title { font-family: var(--ff-display); font-size: var(--fs-lg); font-weight: var(--fw-bold); color: var(--c-navy); letter-spacing: -.02em; margin-bottom: var(--space-3); }
    .ac-list { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-5); }
    .ac-item { display: flex; align-items: center; gap: var(--space-3); font-size: var(--fs-xs); font-weight: var(--fw-semi); color: var(--c-ink); }
    .ac-item-check { width: 20px; height: 20px; border-radius: 50%; background: rgba(var(--c-success-rgb),.12); border: 1px solid rgba(var(--c-success-rgb),.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--c-success); }
    .ac-item-check svg { width: 10px; height: 10px; }

    /* Social links */
    .social-card {
      background: var(--c-white);
      border: 1px solid var(--c-border);
      border-radius: var(--r-xl);
      padding: var(--space-6);
    }
    .sc-title { font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: .14em; text-transform: uppercase; color: var(--c-muted); margin-bottom: var(--space-5); }
    .sc-socials { display: flex; gap: var(--space-3); }
    .sc-social-btn {
      flex: 1;
      display: flex; align-items: center; justify-content: center; gap: var(--space-2);
      padding: var(--space-3);
      border: 1.5px solid var(--c-border);
      border-radius: var(--r-sm);
      font-size: var(--fs-xs); font-weight: var(--fw-semi); color: var(--c-navy);
      transition: all var(--dur-base) var(--ease);
    }
    .sc-social-btn svg { width: 16px; height: 16px; }
    .sc-social-btn:hover { background: var(--c-navy); color: var(--c-white); border-color: var(--c-navy); }

    /* FAQ mini */
    .contact-faq { margin-top: var(--space-16); }
    .cfaq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
    .cfaq-item {
      padding: var(--space-6);
      background: var(--c-white);
      border: 1px solid var(--c-border);
      border-radius: var(--r-lg);
      transition: all var(--dur-base) var(--ease);
    }
    .cfaq-item:hover { box-shadow: var(--shadow-accent-sm); border-color: rgba(217,79,61,.25); }
    .cfaq-q { font-size: var(--fs-sm); font-weight: var(--fw-bold); color: var(--c-navy); margin-bottom: var(--space-2); }
    .cfaq-a { font-size: var(--fs-xs); color: var(--c-muted); line-height: var(--lh-base); }



/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal{opacity:1;transform:translateY(24px);transition:opacity var(--dur-slow) var(--ease-out),transform var(--dur-slow) var(--ease-out)}
.reveal.in-view{opacity:1;transform:none}
.reveal--delay-1{transition-delay:80ms}
.reveal--delay-2{transition-delay:160ms}
.reveal--delay-3{transition-delay:240ms}
.reveal--delay-4{transition-delay:320ms}

/* ============================================================
   SECTION EYEBROW  (shared)
   ============================================================ */
.eyebrow{display:inline-flex;align-items:center;gap:var(--space-2);font-size:var(--fs-xs);font-weight:var(--fw-bold);letter-spacing:.2em;text-transform:uppercase;color:var(--c-accent);margin-bottom:var(--space-5)}
.eyebrow::before{content:'';display:block;width:24px;height:2px;background:var(--c-accent);border-radius:var(--r-full)}
.eyebrow--gold{color:var(--c-gold)}
.eyebrow--gold::before{background:var(--c-gold)}
.eyebrow--white{color:rgba(255,255,255,.6)}
.eyebrow--white::before{background:rgba(255,255,255,.4)}

/* ============================================================
   1. PAGE HERO
   `.page-hero` is now a bare identity marker (intentionally carries
   NO properties) plus a `.page-hero--home`/`--about`/`--contact`/
   `--service` modifier — added to all 4 hero variants (index.php,
   about-us.php, connect-us.php, the 6 service pages) so they're
   recognizable as one component family. See docs/FEATURE_BACKLOG.md
   #63. `.page-hero` MUST stay property-free: giving it properties
   would cascade-collide with `.about-hero`/`.contact-hero` (equal
   specificity, defined earlier in this file with different values —
   caught this exact bug while making this change). Each variant's
   own class prefix (`.hero-*`, `.about-hero-*`, `.contact-hero-*`,
   `.ph-*`) still owns its actual styling — full child-element
   consolidation was scoped out as too high-risk to do blind (values
   are scattered across 5 locations per variant, including 2 separate
   un-merged `@media (max-width:991px)` blocks).
   ============================================================ */
.page-hero{}
.page-hero--service{background:var(--c-navy);padding-top:calc(72px + var(--space-20));padding-bottom:var(--space-20);position:relative;overflow:hidden}
.ph-grid-bg{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);background-size:56px 56px;mask-image:radial-gradient(ellipse 80% 80% at 50% 40%,black 20%,transparent 100%)}
.ph-glow{position:absolute;border-radius:50%;filter:blur(130px);pointer-events:none}
.ph-glow--1{width:700px;height:700px;top:-160px;right:-140px;background:rgba(217,79,61,.3)}
.ph-glow--2{width:340px;height:340px;bottom:-40px;left:-60px;background:rgba(232,160,32,.1)}

.ph-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr 400px;gap:var(--space-16);align-items:center}

/* breadcrumb */
.ph-breadcrumb{display:flex;align-items:center;gap:var(--space-2);font-size:var(--fs-xs);color:rgba(255,255,255,.38);margin-bottom:var(--space-6)}
.ph-breadcrumb a{color:rgba(255,255,255,.38);transition:color var(--dur-base) var(--ease)}
.ph-breadcrumb a:hover{color:rgba(255,255,255,.75)}
.ph-breadcrumb-sep{color:rgba(255,255,255,.18)}

/* heading block */
.ph-h1{font-family:var(--ff-display);font-size:clamp(2rem,4.5vw,3.5rem);color:var(--c-white);letter-spacing:-.03em;line-height:var(--lh-tight);margin-bottom:var(--space-5);max-width:640px}
.ph-h1 em{font-style: normal;color:var(--c-gold)}
.ph-p{font-size:var(--fs-md);color:rgba(255,255,255,.58);line-height:var(--lh-loose);max-width:560px;margin-bottom:var(--space-8)}
.ph-actions{display:flex;gap:var(--space-4);flex-wrap:wrap;margin-bottom:var(--space-10)}

/* tag pills */
.ph-tags{display:flex;gap:var(--space-3);flex-wrap:wrap}
.ph-tag{display:inline-flex;align-items:center;gap:6px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);color:rgba(255,255,255,.6);font-size:11.5px;font-weight:var(--fw-semi);padding:6px 14px;border-radius:var(--r-full)}
.ph-tag svg{color:var(--c-success)}

/* Score card (right) */
.ph-score-card{background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.1);border-radius:var(--r-xl);padding:var(--space-8);backdrop-filter:blur(28px)}
.psc-label{font-size:var(--fs-xs);font-weight:var(--fw-bold);letter-spacing:.16em;text-transform:uppercase;color:rgba(255,255,255,.38);margin-bottom:var(--space-6)}

/* ring */
.psc-ring-row{display:flex;align-items:center;gap:var(--space-5);margin-bottom:var(--space-6)}
.psc-ring{position:relative;width:84px;height:84px;flex-shrink:0}
.psc-ring svg{width:84px;height:84px;transform:rotate(-90deg)}
.psc-ring-bg{fill:none;stroke:rgba(255,255,255,.08);stroke-width:6}
.psc-ring-fill{fill:none;stroke:var(--c-success);stroke-width:6;stroke-linecap:round;stroke-dasharray:226;stroke-dashoffset:32;transition:stroke-dashoffset 1.5s var(--ease-out)}
.psc-ring-num{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;font-family:var(--ff-display);font-size:1.5rem;font-weight:900;color:var(--c-white)}
.psc-ring-label{font-size:var(--fs-sm);font-weight:var(--fw-bold);color:var(--c-success)}
.psc-ring-sub{font-size:var(--fs-xs);color:rgba(255,255,255,.4);margin-top:4px}

/* check rows */
.psc-checks{display:flex;flex-direction:column;gap:10px}
.psc-row{display:flex;align-items:center;justify-content:space-between}
.psc-name{font-size:11.5px;color:rgba(255,255,255,.52)}
.psc-badge{font-size:10px;font-weight:var(--fw-bold);padding:2px 10px;border-radius:var(--r-full)}
.psc-badge--pass{background:rgba(var(--c-success-rgb),.15);color:var(--c-success);border:1px solid rgba(var(--c-success-rgb),.2)}
.psc-badge--warn{background:rgba(232,160,32,.15);color:var(--c-gold);border:1px solid rgba(232,160,32,.2)}
.psc-badge--fail{background:rgba(var(--c-danger-rgb),.15);color:var(--c-danger);border:1px solid rgba(217,79,61,.2)}

/* divider + stats */
.psc-divider{height:1px;background:rgba(255,255,255,.08);margin:var(--space-5) 0}
.psc-stats{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-4)}
.psc-sv{font-family:var(--ff-display);font-size:var(--fs-xl);font-weight:900;color:var(--c-white);line-height:1}
.psc-sv span{color:var(--c-accent)}
.psc-sl{font-size:11px;color:rgba(255,255,255,.38);margin-top:4px}

/* ============================================================
   2. PROBLEM STATEMENT SECTION
   ============================================================ */
.problem-section{padding:var(--space-24) 0;background:var(--c-white)}
.problem-split{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-16);align-items:center}
.problem-text .section-h2{font-family:var(--ff-display);font-size:clamp(var(--fs-2xl),3.5vw,var(--fs-3xl));font-weight:var(--fw-bold);color:var(--c-navy);letter-spacing:-.025em;line-height:var(--lh-snug);margin-bottom:var(--space-5)}
.problem-text .section-h2 em{font-style: normal;color:var(--c-accent)}
.problem-text p{font-size:var(--fs-base);color:var(--c-muted);line-height:var(--lh-loose);margin-bottom:var(--space-4)}
.problem-text p:last-child{margin-bottom:0}

/* Signal bars — signature element */
.signal-bars{display:flex;flex-direction:column;gap:var(--space-4)}
.sb-row{display:grid;grid-template-columns:160px 1fr 52px;align-items:center;gap:var(--space-4)}
.sb-label{font-size:var(--fs-xs);font-weight:var(--fw-semi);color:var(--c-muted)}
.sb-track{height:8px;background:var(--c-surface);border-radius:var(--r-full);overflow:hidden}
.sb-fill{height:100%;border-radius:var(--r-full);background:linear-gradient(90deg,var(--c-accent),var(--c-sky));transform-origin:left;animation:sbGrow 1.2s var(--ease-out) both}
.sb-fill.d1{animation-delay:.1s}
.sb-fill.d2{animation-delay:.25s}
.sb-fill.d3{animation-delay:.4s}
.sb-fill.d4{animation-delay:.55s}
.sb-fill.d5{animation-delay:.7s}
@keyframes sbGrow{from{transform:scaleX(0)}}
.sb-pct{font-family:var(--ff-display);font-size:var(--fs-sm);font-weight:900;color:var(--c-navy);text-align:right}
.sb-title{font-size:var(--fs-sm);font-weight:var(--fw-bold);color:var(--c-navy);margin-bottom:var(--space-5)}

/* ============================================================
   3. SERVICES / AUDIT AREAS SECTION
   ============================================================ */
.audit-areas-section{padding:var(--space-24) 0;background:var(--c-surface)}
.section-header-center{text-align:center;margin-bottom:var(--space-16)}
.section-header-center .eyebrow{justify-content:center}
.section-h2-center{font-family:var(--ff-display);font-size:clamp(var(--fs-2xl),4vw,var(--fs-3xl));font-weight:var(--fw-bold);color:var(--c-navy);letter-spacing:-.025em;line-height:var(--lh-snug);margin-bottom:var(--space-5)}
.section-h2-center em{font-style: normal;color:var(--c-accent)}
.section-sub-center{font-size:var(--fs-md);color:var(--c-muted);line-height:var(--lh-loose);max-width:560px;margin-inline:auto}

.audit-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--space-5)}
.audit-card{background:var(--c-white);border:1px solid var(--c-border);border-radius:var(--r-lg);padding:var(--space-8);position:relative;overflow:hidden;transition:all var(--dur-base) var(--ease)}
.audit-card::after{content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--c-accent),var(--c-sky));transform:scaleX(0);transform-origin:left;transition:transform var(--dur-slow) var(--ease)}
.audit-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-4px);border-color:transparent}
.audit-card:hover::after{transform:scaleX(1)}
.ac-icon{width:52px;height:52px;border-radius:var(--r-md);display:flex;align-items:center;justify-content:center;margin-bottom:var(--space-5);transition:all var(--dur-base) var(--ease)}
.ac-icon svg{width:24px;height:24px}
.audit-card:hover .ac-icon{background:var(--c-accent)!important;color:var(--c-white)!important}
.ac-title{font-family:var(--ff-display);font-size:var(--fs-lg);font-weight:var(--fw-bold);color:var(--c-navy);letter-spacing:-.02em;margin-bottom:var(--space-3)}
.ac-desc{font-size:var(--fs-sm);color:var(--c-muted);line-height:var(--lh-loose)}

/* ============================================================
   4. WHAT'S INCLUDED SECTION
   ============================================================ */
.includes-section{padding:var(--space-24) 0;background:var(--c-white)}
.includes-layout{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-16);align-items:start}
.includes-left .section-h2{font-family:var(--ff-display);font-size:clamp(var(--fs-2xl),3.5vw,var(--fs-3xl));font-weight:var(--fw-bold);color:var(--c-navy);letter-spacing:-.025em;line-height:var(--lh-snug);margin-bottom:var(--space-5)}
.includes-left .section-h2 em{font-style: normal;color:var(--c-accent)}
.includes-left p{font-size:var(--fs-base);color:var(--c-muted);line-height:var(--lh-loose);margin-bottom:var(--space-8)}

/* Deliverable list */
.deliverable-list{display:flex;flex-direction:column;gap:var(--space-3)}
.deliverable{display:flex;align-items:flex-start;gap:var(--space-4);padding:var(--space-5) var(--space-6);border:1px solid var(--c-border);border-radius:var(--r-md);background:var(--c-white);transition:all var(--dur-base) var(--ease);cursor:default}
.deliverable:hover{border-color:rgba(217,79,61,.3);box-shadow:var(--shadow-accent-xs)}
.del-icon{width:42px;height:42px;border-radius:var(--r-sm);background:rgba(217,79,61,.08);display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--c-accent);transition:all var(--dur-base) var(--ease)}
.del-icon svg{width:18px;height:18px}
.deliverable:hover .del-icon{background:var(--c-accent);color:var(--c-white)}
.del-title{font-size:var(--fs-sm);font-weight:var(--fw-bold);color:var(--c-navy);margin-bottom:4px}
.del-desc{font-size:var(--fs-xs);color:var(--c-muted);line-height:var(--lh-base)}

/* Pricing sticky card */
.price-card{background:var(--c-white);border:1px solid var(--c-border);border-radius:var(--r-xl);overflow:hidden;box-shadow:var(--shadow-md);position:sticky;top:calc(72px + var(--space-6))}
.price-card-head{background:var(--c-navy);padding:var(--space-8)}
.pch-eyebrow{font-size:var(--fs-xs);font-weight:var(--fw-bold);letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.38);margin-bottom:var(--space-3)}
.pch-price{font-family:var(--ff-display);font-size:2.8rem;font-weight:900;color:var(--c-white);letter-spacing:-.04em;line-height:1}
.pch-price sup{font-size:1.2rem;font-weight:var(--fw-semi);vertical-align:super}
.pch-price sub{font-size:var(--fs-sm);font-weight:var(--fw-regular);color:rgba(255,255,255,.45)}
.pch-note{font-size:var(--fs-xs);color:rgba(255,255,255,.4);margin-top:var(--space-2)}
.price-card-body{padding:var(--space-6)}
.pc-feat-list{margin-bottom:var(--space-6)}
.pc-feat{display:flex;align-items:center;gap:var(--space-3);padding:10px 0;border-bottom:1px solid var(--c-surface);font-size:var(--fs-sm);color:var(--c-ink)}
.pc-feat:last-child{border-bottom:none}
.pc-feat svg{color:var(--c-accent);flex-shrink:0;width:16px;height:16px}
.pc-cta{width:100%;justify-content:center;margin-bottom:var(--space-4)}
.pc-call{width:100%;justify-content:center;font-size:var(--fs-xs);font-weight:var(--fw-semi);color:var(--c-muted);display:flex;align-items:center;gap:6px}
.pc-call:hover{color:var(--c-navy)}
.pc-trust{display:flex;flex-direction:column;gap:8px;margin-top:var(--space-5);padding-top:var(--space-5);border-top:1px solid var(--c-border)}
.pc-trust-row{display:flex;align-items:center;gap:8px;font-size:var(--fs-xs);color:var(--c-muted)}
.pc-trust-row svg{color:var(--c-success);flex-shrink:0}

/* ============================================================
   5. PROCESS SECTION
   ============================================================ */
.process-section{padding:var(--space-24) 0;background:var(--c-navy);position:relative;overflow:hidden}
.process-bg{position:absolute;inset:0;background-image:radial-gradient(rgba(255,255,255,.025) 1px,transparent 1px);background-size:26px 26px}
.process-section .eyebrow{color:var(--c-gold)}
.process-section .eyebrow::before{background:var(--c-gold)}
.process-section .process-h2{font-family:var(--ff-display);font-size:clamp(var(--fs-2xl),4vw,var(--fs-3xl));font-weight:var(--fw-bold);color:var(--c-white);letter-spacing:-.025em;line-height:var(--lh-snug);margin-bottom:var(--space-5)}
.process-section .process-h2 em{font-style: normal;color:var(--c-gold)}
.process-section .process-sub{font-size:var(--fs-md);color:rgba(255,255,255,.5);line-height:var(--lh-loose);max-width:500px;margin-bottom:var(--space-16)}
.process-section .process-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:0;position:relative}
.process-section .process-steps::before{content:'';position:absolute;top:36px;left:10%;right:10%;height:1px;background:linear-gradient(90deg,transparent,rgba(255,255,255,.12) 20%,rgba(255,255,255,.12) 80%,transparent)}
.process-section .process-step{position:relative;padding:0 var(--space-6)}
.process-section .ps-circle{width:72px;height:72px;border-radius:50%;background:var(--c-blue);border:2px solid rgba(255,255,255,.12);display:flex;align-items:center;justify-content:center;margin-bottom:var(--space-6);position:relative;z-index:2}
.process-section .ps-circle-num{font-family:var(--ff-display);font-size:var(--fs-xl);font-weight:900;color:var(--c-white)}
.process-section .ps-wk{font-size:var(--fs-xs);font-weight:var(--fw-bold);letter-spacing:.16em;text-transform:uppercase;color:var(--c-gold);margin-bottom:var(--space-2)}
.process-section .ps-title{font-family:var(--ff-display);font-size:18px;font-weight:var(--fw-bold);color:var(--c-white);letter-spacing:-.02em;margin-bottom:var(--space-3)}
.process-section .ps-desc{font-size:var(--fs-sm);color:rgba(255,255,255,.45);line-height:var(--lh-loose)}

/* ============================================================
   6. RESULTS SECTION
   ============================================================ */
.results-section{padding:var(--space-24) 0;background:var(--c-white)}
.results-top{margin-bottom:var(--space-16)}
.results-h2{font-family:var(--ff-display);font-size:clamp(var(--fs-2xl),4vw,var(--fs-3xl));font-weight:var(--fw-bold);color:var(--c-navy);letter-spacing:-.025em;line-height:var(--lh-snug);margin-bottom:var(--space-5)}
.results-h2 em{font-style: normal;color:var(--c-accent)}
.results-sub{font-size:var(--fs-md);color:var(--c-muted);line-height:var(--lh-loose);max-width:520px;margin:0 auto;}
.text-center{text-align:center}
.process-sub{margin:0 auto; margin-bottom:var(--space-12)}
/* stats row */
.results-top{text-align:center}
.results-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--c-navy);border-radius:var(--r-xl);overflow:hidden;margin-bottom:var(--space-12)}
.rs-cell{background:var(--c-navy);padding:var(--space-10) var(--space-8);text-align:center;position:relative;transition:background var(--dur-base) var(--ease)}
.rs-cell:hover{background:var(--c-blue)}
.rs-val{font-family:var(--ff-display);font-size:clamp(1.8rem,3vw,2.6rem);font-weight:900;color:var(--c-white);letter-spacing:-.04em;line-height:1;margin-bottom:var(--space-2)}
.rs-val span{color:var(--c-gold)}
.rs-label{font-size:var(--fs-xs);color:rgba(255,255,255,.42);letter-spacing:.06em;text-transform:uppercase}

/* case studies */
.case-grid{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-5)}
.case-card{background:var(--c-surface);border:1px solid var(--c-border);border-radius:var(--r-lg);padding:var(--space-8);transition:all var(--dur-base) var(--ease)}
.case-card:hover{box-shadow:var(--shadow-accent-md);border-color:rgba(217,79,61,.25)}
.case-industry{font-size:var(--fs-xs);font-weight:var(--fw-bold);letter-spacing:.12em;text-transform:uppercase;color:var(--c-accent);margin-bottom:var(--space-3)}
.case-title{font-family:var(--ff-display);font-size:var(--fs-lg);font-weight:var(--fw-bold);color:var(--c-navy);letter-spacing:-.02em;margin-bottom:var(--space-3)}
.case-body{font-size:var(--fs-sm);color:var(--c-muted);line-height:var(--lh-base);margin-bottom:var(--space-6)}
.case-metrics{display:flex;gap:var(--space-8)}
.cm-val{font-family:var(--ff-display);font-size:var(--fs-xl);font-weight:900;color:var(--c-navy);line-height:1}
.cm-label{font-size:11px;color:var(--c-muted);margin-top:3px}

/* ============================================================
   7. TOOLS SECTION
   ============================================================ */
.tools-section{padding:var(--space-20) 0;border-top:1px solid var(--c-border);background:var(--c-surface)}
.tools-inner{display:flex;flex-direction:column;align-items:center;text-align:center}
.tools-sub{font-size:var(--fs-sm);color:var(--c-muted);max-width:500px;margin-top:var(--space-3);margin-bottom:var(--space-12);line-height:var(--lh-loose)}
.tools-grid{display:flex;gap:var(--space-4);flex-wrap:wrap;justify-content:center}
.tool-chip{display:flex;flex-direction:column;align-items:center;gap:var(--space-2);padding:var(--space-5) var(--space-6);background:var(--c-white);border:1px solid var(--c-border);border-radius:var(--r-lg);transition:all var(--dur-base) var(--ease);min-width:110px}
.tool-chip:hover{border-color:var(--c-accent);box-shadow:var(--shadow-accent-sm);transform:translateY(-2px)}
.tc-abbr{width:44px;height:44px;border-radius:var(--r-sm);background:var(--c-surface);border:1px solid var(--c-border);display:flex;align-items:center;justify-content:center;font-family:var(--ff-display);font-size:var(--fs-xs);font-weight:900;color:var(--c-navy)}
.tc-name{font-size:11px;font-weight:var(--fw-semi);color:var(--c-muted)}

/* ============================================================
   8. FAQ SECTION
   ============================================================ */
.faq-section{padding:var(--space-24) 0;background:var(--c-white)}
.faq-layout{display:grid;grid-template-columns:380px 1fr;gap:var(--space-16);align-items:start}
.faq-left .section-h2{font-family:var(--ff-display);font-size:clamp(var(--fs-2xl),3vw,var(--fs-3xl));font-weight:var(--fw-bold);color:var(--c-navy);letter-spacing:-.025em;line-height:var(--lh-snug);margin-bottom:var(--space-5)}
.faq-left .section-h2 em{font-style: normal;color:var(--c-accent)}
.faq-left p{font-size:var(--fs-sm);color:var(--c-muted);line-height:var(--lh-loose);margin-bottom:var(--space-8)}
.faq-contact-nudge{display:flex;align-items:center;gap:var(--space-4);padding:var(--space-5);background:var(--c-surface);border:1px solid var(--c-border);border-radius:var(--r-md)}
.fcn-icon{width:42px;height:42px;border-radius:var(--r-sm);background:rgba(217,79,61,.08);display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--c-accent)}
.fcn-icon svg{width:18px;height:18px}
.fcn-text{font-size:var(--fs-xs);color:var(--c-muted);line-height:var(--lh-base)}
.fcn-text strong{color:var(--c-navy);display:block;margin-bottom:2px}
.fcn-text a{color:var(--c-accent);font-weight:var(--fw-semi)}

.faq-list{display:flex;flex-direction:column;gap:var(--space-3)}
.faq-item{border:1px solid var(--c-border);border-radius:var(--r-md);overflow:hidden;transition:border-color var(--dur-base) var(--ease)}
.faq-item.open{border-color:var(--c-navy)}
.faq-question{width:100%;display:flex;justify-content:space-between;align-items:center;gap:var(--space-4);padding:var(--space-5) var(--space-6);font-size:var(--fs-base);font-weight:var(--fw-semi);color:var(--c-navy);text-align:left;background:var(--c-white);transition:background var(--dur-fast) var(--ease)}
/* .faq-question:hover{background:var(--c-surface)} */
.faq-icon{width:28px;height:28px;border-radius:50%;border:1.5px solid var(--c-border);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all var(--dur-base) var(--ease);color:var(--c-muted)}
.faq-item.open .faq-icon{background:var(--c-navy);border-color:var(--c-navy);color:var(--c-white);transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height var(--dur-slow) var(--ease)}
.faq-answer-inner{padding:0 var(--space-6) var(--space-5);font-size:var(--fs-sm);color:var(--c-muted);line-height:var(--lh-loose)}
.faq-item.open .faq-answer{max-height:300px}

.section-sub-p{font-size:var(--fs-base);color:var(--c-muted);line-height:var(--lh-loose);margin-bottom:var(--space-8);}

/* ── Blog post FAQ (in-article, prefixed .post-faq-* to avoid colliding with
   the .faq-* homepage/service-page FAQ component above — different markup,
   different visual treatment, used by 5 blog-*.php posts) ── */
.post-faq-section{margin-top:var(--space-12);max-width:720px;}
.post-faq-item{border:1px solid var(--c-border);border-radius:var(--r-md);margin-bottom:var(--space-3);overflow:hidden;}
.post-faq-q{width:100%;text-align:left;padding:var(--space-5) var(--space-6);font-size:var(--fs-sm);font-weight:var(--fw-bold);color:var(--c-navy);background:var(--c-white);cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:var(--space-4);}
.post-faq-q:hover{background:var(--c-surface);}
.post-faq-icon{width:20px;height:20px;flex-shrink:0;color:var(--c-accent);transition:transform var(--dur-base) var(--ease);}
.post-faq-item.open .post-faq-icon{transform:rotate(45deg);}
.post-faq-a{font-size:var(--fs-sm);color:var(--c-muted);line-height:var(--lh-loose);padding:0 var(--space-6) var(--space-5);display:none;}
.post-faq-item.open .post-faq-a{display:block;}


/* ============================================================
   9. CTA SECTION
   ============================================================ */
.cta-section{background:var(--c-accent);position:relative;overflow:hidden;padding:var(--space-24) 0}
.cta-bg-dots{position:absolute;inset:0;background-image:radial-gradient(rgba(255,255,255,.08) 1px,transparent 1px);background-size:28px 28px}
.cta-inner{position:relative;z-index:2}
.cta-h2{font-family:var(--ff-display);font-size:clamp(2rem,5vw,3.5rem);font-weight:900;color:var(--c-white);letter-spacing:-.03em;line-height:var(--lh-tight);margin-bottom:var(--space-5)}
.cta-p{font-size:var(--fs-md);color:rgba(255,255,255,.75);margin-bottom:var(--space-10);max-width:500px;line-height:var(--lh-loose)}
.cta-form{display:flex;gap:var(--space-3);flex-wrap:wrap}
.cta-input{flex:1;min-width:200px;padding:14px 20px;border-radius:var(--r-sm);border:none;font-family:var(--ff-body);font-size:var(--fs-sm);color:var(--c-navy);outline:none;background:rgba(255,255,255,.95)}
.cta-input::placeholder{color:var(--c-muted)}
.cta-note{font-size:var(--fs-xs);color:rgba(255,255,255,.48);margin-top:var(--space-4)}


.cta{display:grid;grid-template-columns:1fr 1fr;min-height:520px;}

.cta-l{
  background:#0B1D3A;
  padding:64px 56px;
  display:flex;flex-direction:column;justify-content:center;
  position:relative;overflow:hidden;
}
.cta-l-noise{
  position:absolute;inset:0;pointer-events:none;
  background-image:radial-gradient(rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:22px 22px;
}
.cta-eyebrow{
  font-size:11px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  color:#E8A020;margin-bottom:20px;
}
.cta-h2{
  font-family:var(--ff-display);
  font-size:clamp(1.8rem,3vw,2.6rem);font-weight:900;
  color:#fff;letter-spacing:-.03em;line-height:1.12;
  margin-bottom:20px;
}
.cta-h2 em{font-style: normal;color:#E8A020;}
.cta-desc{
  font-size:15px;color:rgba(255,255,255,.6);
  line-height:1.75;margin-bottom:36px;max-width:380px;
}

.cta-stats{
  display:grid;grid-template-columns:1fr 1fr 1fr;
  gap:1px;background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);border-radius:10px;overflow:hidden;
  margin-top:auto;
}
.stat{
  background:#0B1D3A;
  padding:18px 16px;text-align:center;
}
.stat-num{
  font-family:var(--ff-display);
  font-size:22px;font-weight:900;color:#fff;letter-spacing:-.02em;display:block;
}
.stat-lbl{
  font-size:11px;color:rgba(255,255,255,.45);
  margin-top:3px;display:block;line-height:1.4;
}

.cta-r{
  background:var(--c-accent);
  padding:64px 52px;
  display:flex;flex-direction:column;justify-content:center;
  position:relative;overflow:hidden;
}
.cta-r-noise{
  position:absolute;inset:0;pointer-events:none;
  background-image:radial-gradient(rgba(0,0,0,.06) 1px,transparent 1px);
  background-size:20px 20px;
}

.cta-r-label{
  font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:rgba(255,255,255,.55);margin-bottom:8px;
}
.cta-r-title{
  font-family:var(--ff-display);
  font-size:26px;font-weight:900;color:#fff;
  letter-spacing:-.025em;margin-bottom:6px;line-height:1.15;
}
.cta-r-sub{
  font-size:13px;color:rgba(255,255,255,.6);margin-bottom:28px;
}

.field{margin-bottom:14px;position:relative;}
.field input{
  width:100%;padding:13px 16px;
  border:1.5px solid rgba(255,255,255,.2);
  border-radius:8px;
  font-family:'Plus Jakarta Sans',sans-serif;font-size:14px;
  color:#fff;background:rgba(255,255,255,.1);outline:none;
  transition:border-color .2s,background .2s;
}
.field input::placeholder{color:rgba(255,255,255,.4);}
.field input:focus{
  border-color:rgba(255,255,255,.6);
  background:rgba(255,255,255,.16);
}

.cta-btn{
  width:100%;padding:14px;margin-top:4px;
  border:none;border-radius:8px;cursor:pointer;
  font-family:'Plus Jakarta Sans',sans-serif;font-size:15px;font-weight:700;
  color:var(--c-accent);background:#fff;
  display:flex;align-items:center;justify-content:center;gap:8px;
  transition:opacity .2s,transform .18s;
}
.cta-btn:hover{opacity:.92;transform:translateY(-1px);}
.cta-btn:active{transform:translateY(0);}

.cta-divider{
  height:1px;background:rgba(255,255,255,.15);
  margin:20px 0;
}
.cta-trust{
  display:flex;flex-direction:column;gap:9px;
}
.cta-trust-row{
  display:flex;align-items:center;gap:8px;
  font-size:13px;color:rgba(255,255,255,.65);
}
.cta-trust-dot{
  width:5px;height:5px;border-radius:50%;
  background:#E8A020;flex-shrink:0;
}
 .form-error{
    display:none;
    color:#D94F3D;
    font-size:0.8125rem;
    margin-top:6px;
    line-height:1.4;
  }
  .form-group.has-error .form-input,
  .form-group.has-error .form-select,
  .form-group.has-error .form-textarea{
    border-color:#D94F3D !important;
    box-shadow:0 0 0 3px rgba(217,79,61,0.12);
  }
  .form-group.has-error .form-error{
    display:block;
  }
  .form-word-count{
    text-align:right;
    font-size:0.8125rem;
    color:#8a8f98;
    margin-top:6px;
  }
  .form-word-count--limit{
    color:#D94F3D;
  }
 /* ==================================Technical Seo Page Css End==========================  */


 /* ============================================================
   CASE STUDIES
   Drop into your main stylesheet — uses existing design tokens
   (--c-navy, --c-accent, --c-gold, --c-surface, --c-border etc.)
   ============================================================ */

.cs-section { overflow: hidden; }

/* ── Tab switcher: compact pill group, not stretched underline tabs ──
   Each tab now leads with an industry icon and closes with the headline
   result (+520%, Top 3, #1) so the punchline is scannable before a visitor
   ever clicks — the switcher itself becomes proof, not just navigation. ── */
.cs-tabs {
  display: inline-flex;
  gap: 4px;
  margin: 0 auto var(--space-10);
  padding: 6px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  box-shadow: var(--shadow-xs);
  flex-wrap: wrap;
}
.cs-tabs-wrap { display: flex; justify-content: center; }
.cs-tab {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 8px 16px 8px 10px;
  border-radius: var(--r-full);
  transition: all var(--dur-base) var(--ease);
  text-align: left;
}
.cs-tab:hover { background: rgba(11,29,58,.05); }
.cs-tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(11,29,58,.06);
  color: var(--c-navy);
  flex-shrink: 0;
  transition: all var(--dur-base) var(--ease);
}
.cs-tab-icon svg { width: 16px; height: 16px; }
.cs-tab-copy { display: flex; flex-direction: column; gap: 2px; }
.cs-tab-industry {
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-muted);
  transition: color var(--dur-base) var(--ease);
}
.cs-tab-name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  letter-spacing: -.005em;
  white-space: nowrap;
}
.cs-tab-result {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: var(--fw-black);
  color: var(--c-accent);
  background: rgba(217,79,61,.08);
  padding: 4px 11px;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: var(--space-2);
  transition: all var(--dur-base) var(--ease);
}
.cs-tab.active { background: var(--c-navy); box-shadow: var(--shadow-md); }
.cs-tab.active .cs-tab-icon { background: rgba(255,255,255,.12); color: var(--c-gold); }
.cs-tab.active .cs-tab-industry { color: var(--c-gold); }
.cs-tab.active .cs-tab-name { color: var(--c-white); }
.cs-tab.active .cs-tab-result { color: var(--c-navy); background: var(--c-gold); }

/* ── Panel: one unified card, not two floating boxes ── */
.cs-panel { display: none; }
.cs-panel.active { display: block; }

.cs-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Header band — spans full width, ties both columns together */
.cs-card-head {
  background: var(--c-navy);
  padding: var(--space-8) var(--space-10);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.cs-panel-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-3);
}
.cs-panel-title {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  letter-spacing: -.02em;
  line-height: var(--lh-snug);
  max-width: 560px;
}
.cs-card-head-result {
  flex-shrink: 0;
  text-align: right;
}
.cs-chr-label {
  display: block;
  font-size: 10.5px;
  font-weight: var(--fw-bold);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 6px;
}
.cs-chr-val {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  color: var(--c-gold);
  letter-spacing: -.02em;
  line-height: 1;
  white-space: nowrap;
}

/* Body — two columns inside the same card, divided by a single rule */
.cs-card-body {
  display: grid;
  grid-template-columns: 1fr 320px;
}
.cs-panel-main {
  padding: var(--space-8) var(--space-10);
  border-right: 1px solid var(--c-border);
}
.cs-panel-side { padding: var(--space-8); background: var(--c-surface); }

.cs-panel-desc {
  font-size: var(--fs-base);
  color: var(--c-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-8);
}

.cs-block { margin-bottom: var(--space-6); }
.cs-block-title {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--ff-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  letter-spacing: -.01em;
  margin-bottom: var(--space-3);
}
.cs-block-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cs-block-icon svg { width: 14px; height: 14px; }
.cs-block-icon--problem { background: rgba(217,79,61,.1); color: var(--c-accent); }
.cs-block-icon--action  { background: rgba(232,160,32,.12); color: var(--c-gold); }

.cs-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
}
.cs-list li {
  position: relative;
  padding-left: 24px;
  font-size: var(--fs-sm);
  color: var(--c-ink);
  line-height: var(--lh-base);
}
.cs-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--c-surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23D94F3D' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 9px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Pull quote ── */
.cs-quote {
  background: var(--c-surface);
  border-left: 3px solid var(--c-accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--space-5) var(--space-6);
  margin-top: var(--space-6);
}
.cs-quote p {
  font-family: var(--ff-display);
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  color: var(--c-navy);
  line-height: var(--lh-snug);
  letter-spacing: -.01em;
  margin-bottom: var(--space-3);
}
.cs-quote p::before { content: '\201C'; }
.cs-quote p::after { content: '\201D'; }
.cs-quote-author { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.cs-quote-name { font-size: var(--fs-xs); font-weight: var(--fw-bold); color: var(--c-navy); }
.cs-quote-role { font-size: var(--fs-xs); color: var(--c-muted); }
.cs-quote-role::before { content: '\2014\0020'; }

/* ── Metric stack (lives directly in the surface sidebar — no extra box) ── */
.cs-metric-eyebrow {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--c-border);
}

.cs-metric-row { margin-bottom: var(--space-5); }
.cs-metric-row:last-of-type { margin-bottom: 0; }
.cs-metric-labels { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.cs-metric-label { font-size: var(--fs-xs); font-weight: var(--fw-bold); color: var(--c-navy); letter-spacing: .01em; }
.cs-metric-delta {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-black);
  color: var(--c-accent);
  letter-spacing: -.01em;
  white-space: nowrap;
}

.cs-metric-bars { display: flex; flex-direction: column; gap: 5px; }
.cs-bar-track {
  height: 7px;
  background: var(--c-border);
  border-radius: var(--r-full);
  overflow: hidden;
}
.cs-bar-fill { height: 100%; border-radius: var(--r-full); }
.cs-bar-fill--before { background: var(--c-muted); opacity: .45; }
.cs-bar-fill--after { background: linear-gradient(90deg, var(--c-gold), var(--c-accent)); }
.cs-bar-tag {
  font-size: 9.5px;
  font-weight: var(--fw-bold);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-muted);
  width: 38px;
  flex-shrink: 0;
}
.cs-bar-row { display: flex; align-items: center; gap: 8px; }
.cs-bar-row .cs-bar-track { flex: 1; }

.cs-metric-divider { height: 1px; background: var(--c-border); margin: var(--space-6) 0; }

.cs-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.cs-stat {
  display: flex;
  flex-direction: column;
  padding: var(--space-4);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}
.cs-stat-val {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--c-navy);
  letter-spacing: -.02em;
  line-height: 1;
}
.cs-stat-val small { font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--c-muted); margin-left: 1px; }
.cs-stat-lbl { font-size: 11px; color: var(--c-muted); margin-top: 4px; line-height: 1.4; }

/* ── Bottom CTA: contained band, not floating text ── */
.cs-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  margin-top: var(--space-10);
  padding: var(--space-6) var(--space-8);
  background: var(--c-navy);
  border-radius: var(--r-lg);
  flex-wrap: wrap;
}
.cs-cta-text {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  letter-spacing: -.01em;
}

/* PT LAYOUT — exact same grid as your code */
.pt-layout{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}

/* LEFT: stacked cards */
.pt-stack{position:relative;height:620px}
.pt-card{position:absolute;top:0;left:0;width:100%;opacity:0;pointer-events:none;z-index:1;transition:transform var(--dur-slow) var(--ease-back),opacity var(--dur-base) var(--ease),box-shadow var(--dur-base) var(--ease)}

/* Fan positions — same logic as your code, slightly refined offsets */
.pt-card:nth-of-type(1){transform:translate(-24px,40px) scale(0.93);opacity:.5;z-index:1}
.pt-card:nth-of-type(2){transform:translate(16px,20px) scale(0.96);opacity:.65;z-index:2}
.pt-card:nth-of-type(3){transform:translate(-12px,32px) scale(0.93);opacity:.5;z-index:1}
.pt-card.pt-card--active{opacity:1;transform:translate(0,0) scale(1);z-index:5;pointer-events:auto;box-shadow:0 32px 80px rgba(12,15,26,.18)}

/* Featured overrides — same as your code */
.pt-card.pricing-card--featured{transform:translate(16px,20px) scale(0.96)!important}
.pt-card.pricing-card--featured.pt-card--active{transform:translate(0,0) scale(1)!important}
.pt-card:nth-of-type(1):hover{transform:translate(-24px,40px) scale(0.93)!important}
.pt-card:nth-of-type(3):hover{transform:translate(-12px,32px) scale(0.93)!important}
.pt-card.pt-card--active:hover{transform:translate(0,0) scale(1)!important}
.pt-card.pricing-card--featured:hover{transform:translate(16px,20px) scale(0.96)!important}
.pt-card.pricing-card--featured.pt-card--active:hover{transform:translate(0,0) scale(1)!important}

/* PRICING CARD — enhanced from your .pricing-card */
.pricing-card{border:1.5px solid var(--c-border);border-radius:20px;overflow:hidden;background:var(--c-white);transition:box-shadow var(--dur-base) var(--ease)}
.pricing-card--featured{border-color:var(--c-navy);box-shadow:0 24px 64px rgba(11,29,58,.18)}

/* Card top */
.pc-top{padding:28px 32px 24px;border-bottom:1px solid var(--c-border)}
.pricing-card--featured .pc-top{background:var(--c-navy);border-bottom-color:rgba(255,255,255,.08)}

.pc-badge{display:inline-block;background:var(--c-accent);color:#fff;font-size:10px;font-weight:var(--fw-bold);letter-spacing:.1em;text-transform:uppercase;padding:4px 14px;border-radius:var(--r-full);margin-bottom:14px}

.pc-plan{font-size:11px;font-weight:var(--fw-bold);letter-spacing:.2em;text-transform:uppercase;color:var(--c-muted);margin-bottom:12px}
.pricing-card--featured .pc-plan{color:rgba(255,255,255,.4)}

.pc-price{font-family:var(--ff-display);font-size:52px;font-weight:var(--fw-black);color:var(--c-navy);letter-spacing:-.04em;line-height:1;display:flex;align-items:flex-start;gap:2px}
.pricing-card--featured .pc-price{color:#fff}
.pc-price-currency{font-size:22px;font-weight:var(--fw-semi);margin-top:9px}
.pc-price-period{font-size:var(--fs-xs);font-weight:var(--fw-regular);color:var(--c-muted);margin-top:auto;margin-bottom:9px;margin-left:3px;letter-spacing:normal}
.pricing-card--featured .pc-price-period{color:rgba(255,255,255,.4)}

.pc-desc{font-size:var(--fs-xs);color:var(--c-muted);margin-top:12px;line-height:1.65;max-width:300px}
.pricing-card--featured .pc-desc{color:rgba(255,255,255,.5)}

/* Card body */
.pc-body{padding:24px 32px 28px}
.pc-features{margin-bottom:24px;display:flex;flex-direction:column;gap:0}
.pc-feature{display:flex;align-items:center;gap:10px;padding:9px 0;border-bottom:1px solid var(--c-surface);font-size:var(--fs-xs);color:var(--c-ink);font-weight:var(--fw-semi)}
.pc-feature:last-child{border-bottom:none}
.pc-feature-icon{width:17px;height:17px;flex-shrink:0;color:var(--c-accent)}
.pc-feature-icon--x{color:#C8D0E0}
.pc-feature--muted{color:var(--c-muted);font-weight:var(--fw-regular)}

.pc-btn{width:100%;justify-content:center;display:flex;align-items:center;gap:8px;font-family:var(--ff-body);font-size:var(--fs-sm);font-weight:var(--fw-bold);letter-spacing:.02em;border-radius:var(--r-sm);padding:14px 28px;cursor:pointer;border:2px solid transparent;transition:all var(--dur-base) var(--ease);white-space:nowrap}
/* .btn--primary/--navy/--outline: canonical definitions live at the top of this
   file (~line 190) and already cascade here — a byte-for-byte duplicate block
   previously lived at this exact spot and has been removed. */

/* RIGHT: info + tabs */
.pt-info{max-width:460px}
.pt-info .section-eyebrow{margin-bottom:16px}
.pt-info .section-title{margin-bottom:16px;font-size:34px}
.pt-info .section-sub{margin-bottom:32px;max-width:100%}

/* Tab buttons — same structure as your .pt-tabs */
.pt-tabs{display:inline-flex;gap:8px;flex-wrap:wrap}
.pt-tab{padding:12px 28px;border-radius:var(--r-sm);font-family:var(--ff-body);font-size:var(--fs-sm);font-weight:var(--fw-bold);color:var(--c-navy);background:var(--c-white);border:2px solid var(--c-border);cursor:pointer;transition:all var(--dur-base) var(--ease);font-size:var(--fs-xs);letter-spacing:.02em}
.pt-tab:hover{border-color:var(--c-accent);color:var(--c-accent)}
.pt-tab.pt-tab--active{background:var(--c-accent);border-color:var(--c-accent);color:#fff}
.pt-tab.pt-tab--active:hover{color:#fff}

/* What's inside each tab — plan quick-summary */
.pt-plan-detail{margin-top:28px;padding:24px;background:var(--c-white);border:1px solid var(--c-border);border-radius:var(--r-md);display:none}
.pt-plan-detail.active{display:block;animation:fadeIn .22s var(--ease)}
@keyframes fadeIn{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}
.ppd-title{font-size:var(--fs-xs);font-weight:var(--fw-bold);letter-spacing:.14em;text-transform:uppercase;color:var(--c-muted);margin-bottom:16px}
.ppd-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:20px}
.ppd-stat{display:flex;flex-direction:column;gap:4px;padding:14px 12px;background:var(--c-surface);border-radius:var(--r-sm);text-align:center}
.ppd-val{font-family:var(--ff-display);font-size:22px;font-weight:var(--fw-black);color:var(--c-navy);letter-spacing:-.02em;line-height:1}
.ppd-val span{color:var(--c-accent)}
.ppd-lbl{font-size:11px;color:var(--c-muted);line-height:1.4}
.ppd-feats{display:flex;flex-direction:column;gap:8px}
.ppd-feat{display:flex;align-items:center;gap:9px;font-size:var(--fs-xs);color:var(--c-ink);font-weight:var(--fw-semi)}
.ppd-feat::before{content:'';width:18px;height:18px;border-radius:50%;background:rgba(217,79,61,.1);background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23D94F3D' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-size:10px;background-repeat:no-repeat;background-position:center;flex-shrink:0}

.pt-footer-note{font-size:var(--fs-xs);color:var(--c-muted);margin-top:20px}
.pt-footer-note a{color:var(--c-accent);font-weight:var(--fw-bold)}

/* ============================================================
   RESPONSIVE — Pricing Toggle Widget
   ============================================================ */
@media (max-width: 1199px) {
  .pt-layout { grid-template-columns:1fr 1fr; gap: var(--space-10); }
  .pt-stack { height: 600px; }
}

@media (max-width: 991px) {
  .pt-layout { grid-template-columns: 1fr; gap: var(--space-12); }
  .pt-info { max-width: 100%; order: -1; text-align: center; }
  .pt-info .section-eyebrow { justify-content: center; }
  .pt-info .section-sub { margin-inline: auto; }
  .pt-tabs { justify-content: center; width: 100%; }
  .pt-footer-note { text-align: center; }
  .pt-stack { height: 600px; max-width: 380px; margin-inline: auto; }
}

@media (max-width: 479px) {
  .pt-stack { height: 580px; }
  .pt-tabs { flex-direction: column; width: 100%; }
  .pt-tab { width: 100%; text-align: center; }
}

/* ============================================================
   RESPONSIVE — Contact Page
   ============================================================ */
    @media (max-width: 1100px) {
      .contact-layout { grid-template-columns: 1fr 380px; gap: var(--space-8); }
    }
    @media (max-width: 991px) {
      .contact-layout { grid-template-columns: 1fr; }
      .contact-sidebar { order: -1; }
      .contact-info-card { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: start; }
      .cic-title { grid-column: 1 / -1; margin-bottom: 0; }
      .cs-card-body { grid-template-columns: 1fr; }
  .cs-panel-main { border-right: none; border-bottom: 1px solid var(--c-border); }
  .cs-card-head { padding: var(--space-6) var(--space-8); }
  .cs-panel-main, .cs-panel-side { padding: var(--space-6) var(--space-8); }
    }
    @media (max-width: 767px) {
      .contact-form-card { padding: var(--space-6); border-radius: var(--r-lg); }
      .form-row { grid-template-columns: 1fr; gap: 0; }
      .cfaq-grid { grid-template-columns: 1fr; }
      .contact-info-card { grid-template-columns: 1fr; }
       .cs-tabs-wrap { justify-content: stretch; }
  .cs-tabs { display: flex; width: 100%; border-radius: var(--r-md); }
  .cs-tab { flex: 1; flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: var(--space-3) var(--space-2); }
  .cs-tab-icon { display: none; }
  .cs-tab-name { font-size: 11px; white-space: normal; line-height: 1.25; }
  .cs-tab-result { margin-left: 0; font-size: 11px; padding: 3px 9px; }
  .cs-card-head { flex-direction: column; align-items: flex-start; gap: var(--space-4); }
  .cs-card-head-result { text-align: left; }
  .cs-panel-title { font-size: var(--fs-xl); }
  .cs-panel-main, .cs-panel-side { padding: var(--space-5) var(--space-6); }
  .cs-quote p { font-size: var(--fs-base); }
  .cs-stat-grid { grid-template-columns: 1fr 1fr; }
  .cs-cta-row { flex-direction: column; text-align: center; padding: var(--space-6); }
    }


/* ============================================================
   RESPONSIVE — Homepage General
   ============================================================ */
@media (max-width: 1199px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { gap: var(--space-4); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
  .footer-desc { max-width: 100%; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .audit-grid{grid-template-columns:repeat(2,1fr)}
  .process-steps{grid-template-columns:repeat(2,1fr);gap:var(--space-10)}
  .process-steps::before{display:none}
}
@media (max-width: 1099px) { .nav-menu { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-cta-wrap { display: none; }}

@media (max-width: 991px) {
  .hero-metrics { grid-template-columns: repeat(3, auto); gap: var(--space-8); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .float-card { display: none; }
  .ph-inner{grid-template-columns:1fr}
  .ph-score-card{display:none}
  .problem-split{grid-template-columns:1fr}
  .includes-layout{grid-template-columns:1fr}
  .price-card{position:static}
  .faq-layout{grid-template-columns:1fr}
  .results-stats{grid-template-columns:repeat(2,1fr)}
  .rs-cell:nth-child(2){border-right:none}
  .footer-grid{grid-template-columns:1fr 1fr 1fr}
  .footer-grid>*:first-child{grid-column:1/-1}
    .pt-layout {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  .pt-info {
    max-width: 100%;
    order: -1;
    text-align: center;
  }
  .pt-info .section-eyebrow { justify-content: center; }
  .pt-info .section-sub     { margin-inline: auto; }
  .pt-tabs                  { justify-content: center; }
  .pt-footer-note           { text-align: center; }

  /* Let the stack breathe at a reasonable height */
  .pt-stack { height: 560px; max-width: 400px; margin-inline: auto; }

  .pt-stack {
    height: auto;         /* drop fixed height */
    position: relative;
    max-width: 100%;
  }

  /* Hide the background "ghost" cards */
  .pt-card:not(.pt-card--active) {
    display: none;
  }

  /* Active card sits naturally in flow */
  .pt-card.pt-card--active {
    position: relative;
    top: auto; left: auto;
    transform: none !important;
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 8px 32px rgba(12,15,26,.14);
  }

  /* Tabs fill width */
  .pt-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
  }
  .pt-tab { text-align: center; }

  /* Plan detail box full width */
  .pt-plan-detail { padding: 16px; }
  .ppd-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .pt-plan-detail{display: none!important;}
}



@media (max-width: 767px) {
  :root {
    --space-24: 64px;
    --space-20: 56px;
    --space-16: 48px;
  }
  .services-grid { grid-template-columns: 1fr; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
  .content-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-form { flex-direction: column; }
  .cta-input { min-width: auto; }
  .process-step { grid-template-columns: 60px 1fr; gap: var(--space-5); }
  .ps-num { width: 60px; height: 60px; font-size: var(--fs-lg); }
  .audit-grid{grid-template-columns:1fr}
  .process-steps{grid-template-columns:1fr}
  .case-grid{grid-template-columns:1fr}
  .sb-row{grid-template-columns:100px 1fr 40px}
  .eyebrow{display: flex;justify-content: center;}
  .ph-h1{text-align: center;}
  .ph-p{text-align: center;}
  .problem-text .section-h2{text-align: center;}
  .section-h2 {text-align: center;}
  .deliverable{flex-direction: column;}
  .process-section .process-steps{grid-template-columns:auto;gap:20px;}
  .process-section .ps-circle { width: 55px; height: 55px;}
  .section-sub-p{text-align:center;margin-top:10px;}
  .cta {grid-template-columns:auto;}
  .cta-l{padding:64px 24px;text-align:center}
  .cta-r{padding:64px 24px;}
  .cta-h2 br{display:none}
  .cta-desc {margin-left: auto;margin-right: auto;}
  .process-step-v2 {grid-template-columns:auto;}
  .psv2-line {  background: linear-gradient(180deg, rgba(11, 29, 58, .6) 0%, rgb(11 29 58 / 94%) 100%);}
.hero-h1{text-align:center;font-size:clamp(1.8rem,4vw,2.8rem);}
.about-hero-h1{font-size:clamp(1.8rem,4vw,2.8rem);line-height: 36px;}
.ph-h1{font-size:clamp(1.8rem,4vw,2.8rem);line-height: 36px;}
.section-h2-center br{display:none;}
.hero-p{text-align:center;font-size:16px;}
.section-title br{display:none;}
.section-eyebrow{justify-content:center;display:flex}
.section-sub{text-align:center;}
.process-left div{text-align:center}
.hero-badge{font-size: 9px;}
.section-title {font-size:24px;text-align: center;}
.story-lead br{display:none}
.story-lead{text-align: center;}
.team-grid-lg {grid-template-columns:auto;}
.section-h2 br{display:none}
.tool-chip{width: 130px;height: 110px;}

}

@media (max-width: 479px) {
  .hero-metrics { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .ph-actions{flex-direction:column}
  .ph-actions .btn{justify-content:center}
  .results-stats{grid-template-columns:1fr 1fr}
  .btn--lg {padding: 16px 20px;}
  .footer-legal { flex-wrap: wrap;}
}

/* ============================================================
   UTILITY CLASSES — replace inline styles
   ============================================================ */

/* Hero & process layout grids */
#hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: start;
}
@media (max-width: 991px) {
  #hero .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .process-layout { grid-template-columns: 1fr; gap: var(--space-10); }
}

/* Service card icon colour variants */
.sc-icon--indigo  { background: #EEF2FF; color: #3730A3; }
.sc-icon--orange  { background: #FFF7ED; color: #C2410C; }
.sc-icon--green   { background: #F0FDF4; color: #166534; }
.sc-icon--purple  { background: #FDF4FF; color: #7E22CE; }
.sc-icon--rose    { background: #FFF1F2; color: #BE123C; }
.sc-icon--navy    { background: rgba(255,255,255,.12); color: var(--c-white); }

/* Float card icon backgrounds */
.fc-icon--green { background: rgba(var(--c-success-rgb),.12); color: var(--c-success); }
.fc-icon--gold  { background: rgba(232,160,32,.12); color: var(--c-gold); }

/* Offcanvas button reset (services toggle) */
.offcanvas-nav-link--btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;  
font-weight: var(--fw-semi);
}

/* Offcanvas contact highlight */
.offcanvas-nav-link--accent { color: var(--c-accent); }

/* Stats section eyebrow colour override */
.section-eyebrow--gold { color: var(--c-gold); }
.section-title--white  { color: var(--c-white); }

/* Service card CTA variant */
.service-card--cta {
  background: var(--c-navy);
  border-color: var(--c-navy);
  justify-content: center;
  text-align: center;
  gap: var(--space-6);
}
.service-card--cta .sc-title { color: var(--c-white); }
.service-card--cta .sc-desc  { color: rgba(255,255,255,.55); margin-top: var(--space-3); }
.service-card--cta .sc-emoji { font-size: 3rem; margin-bottom: var(--space-4); }
.service-card--cta .btn      { align-self: center; }

/* Hero visual container */
.hero-visual-wrap { position: relative; }

/* De-emphasised pricing feature */
.pc-feature--muted { color: var(--c-muted); }

/* Results section tight header */
.section-header--tight { margin-bottom: var(--space-12); }

/* Inline accent link */
.link-accent { color: var(--c-accent); font-weight: var(--fw-semi); }

/* Pricing footer note */
.pricing-footer-note { text-align: center; font-size: var(--fs-sm); color: var(--c-muted); margin-top: var(--space-8); }

/* Process CTA button wrapper */
.process-cta-wrap { margin-top: var(--space-10); }

/* Dashboard metric last row (no bottom margin) */
.dash-metric--last { margin-bottom: 0; }

/* CTA form container (relative + z-index) */
.cta-r-inner { position: relative; z-index: 1; }

/* Audit / action card icon colour variants */
.ac-icon--sky    { background: rgba(42,123,255,.1);  color: var(--c-sky); }
.ac-icon--green  { background: rgba(var(--c-success-rgb),.1);  color: var(--c-success); }
.ac-icon--gold   { background: rgba(232,160,32,.1);  color: var(--c-gold); }
.ac-icon--accent { background: rgba(217,79,61,.1);   color: var(--c-accent); }
.ac-icon--navy   { background: rgba(26,58,107,.1);   color: var(--c-blue); }

/* Value card icon colour variants (about page) */
.vcl-icon--accent { background: rgba(217,79,61,.1); color: var(--c-accent); }
.vcl-icon--sky    { background: rgba(42,123,255,.1); color: var(--c-sky); }
.vcl-icon--gold   { background: rgba(232,160,32,.1); color: var(--c-gold); }

/* Chart footnote text */
.chart-note { font-size: 11px; color: var(--c-muted); margin-top: var(--space-4); }

/* Section body paragraph */
.section-body-p { font-size: var(--fs-base); color: var(--c-muted); line-height: var(--lh-loose); margin-bottom: var(--space-8); }

/* Container with stacking context */
.container--raised { position: relative; z-index: 2; }

/* About page vcl-icon green */
.vcl-icon--green { background: rgba(var(--c-success-rgb),.1); color: var(--c-success); }

/* About page tools section label */
.tools-section-label {
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: var(--space-8);
}

/* Contact page audit note */
.ac-note { font-size: var(--fs-xs); color: var(--c-muted); }

/* Contact FAQ section header spacing variants */
.section-header--md { margin-bottom: var(--space-10); }
.section-title--md  { font-size: var(--fs-2xl); }

/* Services page simple hero (no dashboard, text-only) */
.page-hero-simple {
  background: var(--c-navy);
    padding-top: calc(72px + var(--space-20));
    padding-bottom: var(--space-20);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-privacy-simple {
  background: var(--c-navy);
padding-top: calc(72px + var(--space-16));
    padding-bottom: var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-simple-h1 {
  color: var(--c-white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  margin: 0 0 var(--space-4);
  letter-spacing: -.03em;
  line-height: var(--lh-tight);
}
.page-hero-simple-sub {
  color: rgba(255,255,255,.7);
  font-size: var(--fs-lg);
  max-width: 600px;
  margin: 0 auto;
}
.page-hero-breadcrumb-wrap { margin-bottom: var(--space-4); }
.page-hero-bc-list {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.55);
}
.page-hero-bc-link   { color: rgba(255,255,255,.55); text-decoration: none; }
.page-hero-bc-link:hover { color: rgba(255,255,255,.9); }
.page-hero-bc-sep    { color: rgba(255,255,255,.3); }
.page-hero-bc-current{ color: var(--c-white); }


@media (max-width: 991px) {
    .pt-card.pt-card--active {left: -12px;}
  }


/* ── Related Services Section ────────────────────────────────────────────── */
.related-services-section {
  padding: var(--space-24) 0;
  background: var(--c-bg-alt, #f7f8fa);
}
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-12);
}
.rs-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: #fff;
  border: 1px solid var(--c-border, #e5e7eb);
  border-radius: var(--radius-lg, 12px);
  padding: var(--space-5) var(--space-5);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.rs-card:hover {
  box-shadow: 0 6px 24px rgba(11,29,58,.1);
  transform: translateY(-2px);
  border-color: var(--c-accent, #e8a020);
}
.rs-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--c-bg-alt, #f7f8fa);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rs-card-icon svg { width: 20px; height: 20px; stroke: var(--c-primary, #0b1d3a); }
.rs-card-body { flex: 1; min-width: 0; }
.rs-card-name {
  font-size: var(--fs-sm, .875rem);
  font-weight: 700;
  color: var(--c-primary, #0b1d3a);
  margin-bottom: 2px;
}
.rs-card-desc {
  font-size: .8rem;
  color: var(--c-text-muted, #6b7280);
  line-height: 1.4;
}
.rs-card-arrow { flex-shrink: 0; stroke: var(--c-text-muted, #9ca3af); transition: stroke .2s, transform .2s; }
.rs-card:hover .rs-card-arrow { stroke: var(--c-accent, #e8a020); transform: translateX(3px); }

@media (max-width: 640px) {
  .related-services-grid { grid-template-columns: 1fr; }
}

/* ── Inline Blog CTA ── */
.inline-cta {
  background: linear-gradient(135deg, #0b1d3a 0%, #1a3a6b 100%);
  border-radius: var(--r-lg, 12px);
  padding: var(--space-10, 2.5rem) var(--space-8, 2rem);
  margin: var(--space-12, 3rem) 0;
  position: relative;
  overflow: hidden;
}
.inline-cta::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(217,79,61,.12);
  pointer-events: none;
}
.inline-cta-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-accent, #D94F3D);
  margin-bottom: .5rem;
}
.inline-cta-title {
  font-family: var(--ff-display, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: .6rem;
}
.inline-cta-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.inline-cta-form {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.inline-cta-form input[type=email] {
  flex: 1 1 220px;
  padding: .7rem 1rem;
  border-radius: var(--r-md, 8px);
  border: none;
  font-size: .9rem;
  outline: none;
  min-width: 0;
}
.inline-cta-form input[type=email]:focus {
  box-shadow: 0 0 0 3px rgba(217,79,61,.35);
}
.inline-cta-form button {
  padding: .7rem 1.4rem;
  background: var(--c-accent, #D94F3D);
  color: #fff;
  border: none;
  border-radius: var(--r-md, 8px);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}
.inline-cta-form button:hover { background: #b83d2e; transform: translateY(-1px); }
.inline-cta-trust {
  margin-top: .75rem;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
}
@media (max-width: 480px) {
  .inline-cta { padding: 1.75rem 1.25rem; }
  .inline-cta-form { flex-direction: column; }
  .inline-cta-form input[type=email],
  .inline-cta-form button { width: 100%; }
}

/* ==========================================================================
   CTA Block — partials/cta-block.php
   ========================================================================== */
.cta-block {
  padding: 5rem 0;
  text-align: center;
}
.cta-block--dark {
  background: var(--c-primary, #0b1d3a);
  color: #fff;
}
.cta-block--light {
  background: var(--c-surface-alt, #f4f5f7);
  color: var(--c-primary, #0b1d3a);
}
.cta-block__inner {
  max-width: 640px;
  margin: 0 auto;
}
.cta-block__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.cta-block--light .cta-block__heading { color: var(--c-primary, #0b1d3a); }
.cta-block--dark  .cta-block__heading { color: #fff; }
.cta-block__sub {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: .85;
}
.cta-block__btn {
  display: inline-block;
  padding: .85rem 2rem;
  background: var(--c-accent, #D94F3D);
  color: #fff;
  border-radius: var(--r-md, 8px);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.cta-block__btn:hover {
  background: #b83d2e;
  transform: translateY(-2px);
}
.cta-block__note {
  margin-top: 1rem;
  font-size: .8rem;
  opacity: .55;
}

/* ==========================================================================
   Author Card — partials/author-card.php
   ========================================================================== */
.author-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--c-surface-alt, #f4f5f7);
  border-radius: var(--r-lg, 12px);
  padding: 1.5rem;
  margin-top: 3rem;
}
.author-card__avatar-wrap { flex-shrink: 0; }
.author-card__avatar-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.author-card__avatar-initials {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-primary, #0b1d3a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.author-card__meta {
  display: flex;
  flex-direction: column;
  gap: .125rem;
  margin-bottom: .5rem;
}
.author-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-primary, #0b1d3a);
  text-decoration: none;
}
a.author-card__name:hover { text-decoration: underline; }
.author-card__role {
  font-size: .8rem;
  color: var(--c-muted, #8a8f98);
  font-weight: 500;
}
.author-card__bio {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--c-text, #333);
}
@media (max-width: 480px) {
  .author-card { flex-direction: column; }
}

/* ==========================================================================
   Breadcrumb Navigation — partials/breadcrumb.php
   ========================================================================== */
.breadcrumb-nav { margin-bottom: 1.5rem; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .25rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .8rem;
}
.breadcrumb__item { display: flex; align-items: center; gap: .25rem; }
.breadcrumb__link {
  color: var(--c-accent, #D94F3D);
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb__link:hover { text-decoration: underline; }
.breadcrumb__current { color: var(--c-muted, #8a8f98); }
.breadcrumb__sep     { color: var(--c-muted, #8a8f98); }

/* ==========================================================================
   Cookie Consent Banner — partials/cookie-consent.php
   ========================================================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0b1d3a;
  color: #fff;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
/* JS removes [hidden] and adds .is-visible to animate in */
.cookie-consent.is-visible {
  transform: translateY(0);
}
.cookie-consent__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.125rem 0;
}
.cookie-consent__text {
  flex: 1;
  font-size: .875rem;
  line-height: 1.55;
  color: rgba(255,255,255,.85);
  min-width: 260px;
}
.cookie-consent__link {
  color: var(--c-accent, #D94F3D);
  text-decoration: underline;
}
.cookie-consent__link:hover { color: #ff6b59; }
.cookie-consent__actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}
.cookie-consent__btn {
  padding: .55rem 1.25rem;
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .18s, border-color .18s;
}
.cookie-consent__btn--decline {
  background: transparent;
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.8);
}
.cookie-consent__btn--decline:hover {
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.cookie-consent__btn--accept {
  background: var(--c-accent, #D94F3D);
  color: #fff;
  border-color: var(--c-accent, #D94F3D);
}
.cookie-consent__btn--accept:hover { background: #b83d2e; border-color: #b83d2e; }
@media (max-width: 600px) {
  .cookie-consent__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-consent__actions { width: 100%; }
  .cookie-consent__btn     { flex: 1; text-align: center; }
}

/* ============================================================
   DESIGN SYSTEM v2 — Shared Component Library
   Additive base classes for components that had no reusable
   implementation before (card, badge, form-control, table, tooltip,
   modal, alert, progress, loading, empty-state). Existing per-context
   classes (.pricing-card, .value-card, .badge-tag, etc.) are untouched —
   this is available for new code and opportunistic adoption. See
   docs/UI_UX_GUIDELINES.md §7 for the full component reference.
   ============================================================ */

/* ── Card ── */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}
.card--flat { box-shadow: none; }
.card--elevated { box-shadow: var(--shadow-sm); }
.card--lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  line-height: 1;
}
.badge--accent  { background: rgba(217,79,61,.1);              color: var(--c-accent);  border-color: rgba(217,79,61,.2); }
.badge--gold    { background: rgba(232,160,32,.12);             color: var(--c-gold);    border-color: rgba(232,160,32,.3); }
.badge--sky     { background: rgba(42,123,255,.1);              color: var(--c-sky);     border-color: rgba(42,123,255,.2); }
.badge--success { background: rgba(var(--c-success-rgb),.15);   color: var(--c-success); border-color: rgba(var(--c-success-rgb),.25); }
.badge--danger  { background: rgba(var(--c-danger-rgb),.15);    color: var(--c-danger);  border-color: rgba(var(--c-danger-rgb),.25); }
.badge--muted   { background: var(--c-surface);                 color: var(--c-muted);   border-color: var(--c-border); }

/* ── Form control ──
   Matches the documented focus treatment in docs/UI_UX_GUIDELINES.md §8:
   border-color change + box-shadow ring, never bare outline:none. */
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  color: var(--c-navy);
  background: var(--c-white);
  outline: none;
  transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.form-control::placeholder { color: #B0BAD0; }
.form-control:focus-visible {
  border-color: var(--c-navy);
  box-shadow: 0 0 0 3px rgba(11,29,58,.12);
}
.form-control.has-error { border-color: var(--c-accent); }
.form-control:disabled { opacity: .5; cursor: not-allowed; background: var(--c-surface); }
textarea.form-control { resize: vertical; min-height: 130px; line-height: var(--lh-base); }

/* ── Table ── */
.table-wrap { width: 100%; overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: var(--fs-base); }
.table th {
  text-align: left;
  padding: var(--space-3) var(--space-4);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--c-muted);
  border-bottom: 2px solid var(--c-border);
  white-space: nowrap;
}
.table td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--c-border);
  color: var(--c-ink);
  vertical-align: middle;
}
.table tbody tr:hover { background: var(--c-surface); }
.table--striped tbody tr:nth-child(even) { background: var(--c-surface); }

/* ── Tooltip ──
   Attribute-driven: <span data-tooltip="Explanation">…</span> — matches the
   convention already used by the admin panel's gb-help-system.php, so public
   and admin share one mental model for this pattern. */
[data-tooltip] { position: relative; cursor: help; }
[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--c-ink);
  color: var(--c-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  z-index: 200;
}
[data-tooltip]:hover::after,
[data-tooltip]:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Modal ──
   Reusable overlay + panel. Used by partials/exit-intent-overlay.php —
   build any future dialog on this rather than hand-rolling inline styles. */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12,15,26,.55);
  backdrop-filter: blur(4px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base) var(--ease), visibility var(--dur-base) var(--ease);
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal-panel {
  background: var(--c-white);
  border-radius: var(--r-xl);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  padding: var(--space-8);
  position: relative;
  transform: translateY(12px);
  transition: transform var(--dur-base) var(--ease);
}
.modal-overlay.is-open .modal-panel { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  background: var(--c-surface);
  color: var(--c-muted);
  border: none;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.modal-close:hover { background: var(--c-border); color: var(--c-ink); }

/* ── Exit-intent overlay (content, built on .modal-overlay/.modal-panel) ──
   Shared by partials/exit-intent-overlay.php — previously hand-copied with
   inline styles on index.php, pricing.php, services.php. */
.ei-panel { max-width: 540px; padding: var(--space-12) var(--space-10); text-align: center; }
.ei-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(217,79,61,.1);
  color: var(--c-accent);
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ei-eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 10px;
}
.ei-title {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--c-navy);
  line-height: 1.15;
  margin: 0 0 12px;
}
.ei-desc { font-size: var(--fs-md); color: var(--c-muted); line-height: 1.7; margin: 0 0 var(--space-8); }
.ei-actions { display: flex; flex-direction: column; gap: 10px; }
.ei-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--c-accent);
  color: var(--c-white);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  padding: 15px 28px;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background var(--dur-base) var(--ease), transform var(--dur-fast) var(--ease);
}
.ei-cta:hover { background: #c03d2c; transform: translateY(-1px); }
.ei-dismiss {
  background: none;
  border: none;
  font-size: var(--fs-xs);
  color: var(--c-muted);
  cursor: pointer;
  padding: var(--space-2);
  font-family: inherit;
}
.ei-dismiss:hover { color: var(--c-ink); text-decoration: underline; }
.ei-footnote { font-size: 11.5px; color: #B0BAC9; margin: var(--space-4) 0 0; }
@media (max-width: 480px) { .ei-panel { padding: var(--space-8) var(--space-6); } }

/* ── Alert ── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
}
.alert[hidden] { display: none; }
.alert-icon { flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; }
.alert-title { font-weight: var(--fw-bold); margin-bottom: 2px; }
.alert--success { background: rgba(var(--c-success-rgb),.1); border-color: rgba(var(--c-success-rgb),.25); color: #0b6b4a; }
.alert--success .alert-icon { color: var(--c-success); }
.alert--error   { background: rgba(217,79,61,.08); border-color: rgba(217,79,61,.25); color: #8c2e21; }
.alert--error .alert-icon { color: var(--c-accent); }
.alert--warning { background: rgba(232,160,32,.1); border-color: rgba(232,160,32,.3); color: #8a5c0a; }
.alert--warning .alert-icon { color: var(--c-gold); }
.alert--info    { background: rgba(42,123,255,.08); border-color: rgba(42,123,255,.2); color: #1a4d8f; }
.alert--info .alert-icon { color: var(--c-sky); }

/* ── Progress bar / ring / steps ── */
.progress-bar { height: 6px; background: var(--c-border); border-radius: var(--r-full); overflow: hidden; }
.progress-bar-fill {
  height: 100%;
  background: var(--c-accent);
  border-radius: var(--r-full);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}
/* .progress-ring — the full component (ring/bg/fill/num) lives in the
   "Single Blog Post" section below, migrated from single-blog.php's inline
   <style> block, which already had a complete, real implementation. */
.steps { display: flex; align-items: center; gap: var(--space-2); }
.step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--r-full);
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  color: var(--c-muted);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}
.step.is-active { background: var(--c-accent); border-color: var(--c-accent); color: var(--c-white); }
.step.is-done { background: var(--c-success); border-color: var(--c-success); color: var(--c-white); }
.step-connector { flex: 1; height: 2px; background: var(--c-border); min-width: 16px; }
.step-connector.is-done { background: var(--c-success); }

/* ── Loading states ── */
.skeleton {
  background: linear-gradient(90deg, var(--c-surface) 25%, var(--c-border) 50%, var(--c-surface) 75%);
  background-size: 200% 100%;
  border-radius: var(--r-sm);
  animation: skeletonShimmer 1.6s ease-in-out infinite;
}
@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(12,15,26,.15);
  border-top-color: var(--c-accent);
  border-radius: 50%;
  animation: spinnerRotate .7s linear infinite;
}
.spinner--light { border-color: rgba(255,255,255,.35); border-top-color: #fff; }
@keyframes spinnerRotate { to { transform: rotate(360deg); } }

/* ── Empty state ── */
.empty-state {
  text-align: center;
  padding: var(--space-16) var(--space-6);
  color: var(--c-muted);
}
.empty-state svg { opacity: .3; margin-bottom: var(--space-4); }
.empty-state-title { font-weight: var(--fw-bold); color: var(--c-ink); margin-bottom: var(--space-2); }
.empty-state p { margin: 0 0 var(--space-6); }

/* ── Focus-visible (WCAG 2.4.7) ──
   Every interactive element gets a visible keyboard-focus indicator.
   :focus-visible only fires for keyboard/AT focus, never mouse/touch, so
   this doesn't add a ring on click. Fixes .cta-input, which previously set
   outline:none with no replacement anywhere in the file. .form-control has
   its own focus treatment above (border-color + ring) matching the
   documented pattern in docs/UI_UX_GUIDELINES.md §8. */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
.cta-input:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--c-sky);
  outline-offset: 2px;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ============================================================
   SINGLE BLOG POST (single-blog.php — dynamic post template)
   Migrated from a 1,003-line inline <style> block that also
   re-declared the entire :root token set independently (a second,
   drifting source of truth). The redundant tokens/resets/skip-link/
   focus-visible/.container/.reveal/.reveal.in-view/reduced-motion
   rules were dropped here since assets/css/style.css already defines
   all of them identically or better (e.g. .reveal here now uses the
   sitewide --delay-1..4 variants it didn't have before). .pc-icon/
   .pc-label/.pc-text/.pc-body were scoped under .post-body to avoid
   colliding with the unrelated pricing-card .pc-body elsewhere in
   this file — those callout classes are used inside blog post body
   content (content_posts.content), never bare.
   ============================================================ */
    /* ============================================================
   BREADCRUMB
   ============================================================ */
    .bc-bar {
        background: var(--c-surface);
        border-bottom: 1px solid var(--c-border);
        padding-block: var(--space-4);
    }

    .bc-list {
        display: flex;
        align-items: center;
        gap: var(--space-2);
        flex-wrap: wrap;
        font-size: var(--fs-xs);
        color: var(--c-muted);
    }

    .bc-list a {
        color: var(--c-muted);
        font-weight: var(--fw-semi);
        transition: color var(--dur-fast) var(--ease);
    }

    .bc-list a:hover {
        color: var(--c-accent);
    }

    .bc-sep {
        color: var(--c-border);
    }

    .bc-current {
        color: var(--c-navy);
        font-weight: var(--fw-semi);
    }

    /* ============================================================
   ARTICLE LAYOUT
   ============================================================ */
    .post-page {
        /*padding-block: var(--space-16) var(--space-24);*/
        background: var(--c-white);
    }

    .post-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: var(--space-16);
        align-items: start;
        padding-top: 40px;
    }

    /* ── Article header ── */
    .post-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: var(--space-2);
        font-size: var(--fs-xs);
        font-weight: var(--fw-bold);
        letter-spacing: .2em;
        text-transform: uppercase;
        color: var(--c-accent);
        margin-bottom: var(--space-5);
    }

    .post-eyebrow::before {
        content: '';
        display: block;
        width: 24px;
        height: 2px;
        background: var(--c-accent);
        border-radius: var(--r-full);
    }

    .post-title {
        font-size: 42px;
        font-weight: var(--fw-bold);
        letter-spacing: -.02em;
        line-height: var(--lh-tight);
        color: var(--c-navy);
        margin-bottom: var(--space-6);
    }

    .post-meta-row {
        display: flex;
        align-items: center;
        gap: var(--space-5);
        flex-wrap: wrap;
        padding-bottom: var(--space-8);
        margin-bottom: var(--space-8);
        border-bottom: 1px solid var(--c-border);
    }

    .post-author {
        display: flex;
        align-items: center;
        gap: var(--space-3);
    }

    .post-author-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--c-navy), var(--c-blue));
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--ff-display);
        font-weight: var(--fw-black);
        font-size: var(--fs-sm);
        color: var(--c-white);
        flex-shrink: 0;
    }

    .post-author-name {
        font-size: var(--fs-sm);
        font-weight: var(--fw-bold);
        color: var(--c-navy);
    }

    .post-author-role {
        font-size: 12px;
        color: var(--c-muted);
    }

    .post-meta-sep {
        width: 1px;
        height: 28px;
        background: var(--c-border);
    }

    .post-meta-item {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: var(--fs-xs);
        color: var(--c-muted);
        font-weight: var(--fw-semi);
    }

    .post-meta-item svg {
        width: 15px;
        height: 15px;
        color: var(--c-accent);
        flex-shrink: 0;
    }

    /* ── Featured image ── */
    .post-featured {
        border-radius: var(--r-lg);
        overflow: hidden;
        margin-bottom: 0px;
        box-shadow: var(--shadow-md);
        aspect-ratio: 16/9;
    }

    .post-featured img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ── Article body ── */
    .post-body {
        font-size: var(--fs-md);
        color: var(--c-ink);
        line-height: var(--lh-loose);
        max-width: 720px;
    }

    .post-body>p {
        margin-bottom: var(--space-6);
    }

    .post-body>p:first-of-type {
        font-family: var(--ff-display);
        font-size: var(--fs-lg);
        font-weight: var(--fw-medium);
        color: var(--c-navy);
        line-height: var(--lh-snug);
    }

    .post-body h2 {
        font-family: var(--ff-display);
        font-size: var(--fs-2xl);
        font-weight: var(--fw-bold);
        letter-spacing: -.015em;
        color: var(--c-navy);
        margin: var(--space-12) 0 var(--space-5);
        scroll-margin-top: var(--space-20);
        line-height: 36px;
    }

    .post-body h2:first-child {
        margin-top: 0;
    }

    .post-body h3 {
        font-family: var(--ff-display);
        font-size: var(--fs-xl);
        font-weight: var(--fw-bold);
        color: var(--c-navy);
        margin: var(--space-8) 0 var(--space-4);
    }

    .post-body ul {
        margin-bottom: var(--space-6);
        display: flex;
        flex-direction: column;
        gap: var(--space-3);
    }

    .post-body li {
        position: relative;
        padding-left: var(--space-8);
        font-size: var(--fs-base);
        color: var(--c-ink);
    }

    .post-body li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 7px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: rgba(217, 79, 61, .1);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23D94F3D' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-size: 10px;
        background-repeat: no-repeat;
        background-position: center;
    }

    .post-body blockquote {
        position: relative;
        background: var(--c-surface);
        border-left: 3px solid var(--c-accent);
        border-radius: 0 var(--r-md) var(--r-md) 0;
        padding: var(--space-6) var(--space-8);
        margin: var(--space-10) 0;
        font-family: var(--ff-display);
        font-size: var(--fs-lg);
        font-style: italic;
        font-weight: var(--fw-medium);
        color: var(--c-navy);
        line-height: var(--lh-snug);
    }

    .post-body strong {
        color: var(--c-navy);
        font-weight: var(--fw-bold);
    }

    .post-body a:not(.btn) {
        color: var(--c-accent);
        font-weight: var(--fw-semi);
        border-bottom: 1px solid rgba(217, 79, 61, .3);
        transition: border-color var(--dur-fast) var(--ease);
    }

    .post-body a:not(.btn):hover {
        border-color: var(--c-accent);
    }

    /* ── Key takeaway callout ── */
    .post-callout {
        display: flex;
        align-items: flex-start;
        gap: var(--space-5);
        background: var(--c-navy);
        border-radius: var(--r-lg);
        padding: var(--space-8);
        margin: var(--space-10) 0;
        position: relative;
        overflow: hidden;
        flex-direction: column;
    }

    .post-callout::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
        background-size: 22px 22px;
    }

    .post-body .pc-icon {
        position: relative;
        z-index: 2;
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        border-radius: var(--r-sm);
        background: rgba(232, 160, 32, .15);
        color: var(--c-gold);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .post-body .pc-icon svg {
        width: 22px;
        height: 22px;
    }

    .post-body .pc-text {
        position: relative;
        z-index: 2;
    }

    .post-body .pc-label {
        font-size: 11px;
        font-weight: var(--fw-bold);
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--c-gold);
        margin-bottom: 6px;
    }

    .post-body .pc-body {
        font-size: var(--fs-sm);
        color: rgba(255, 255, 255, .8);
        line-height: var(--lh-loose);
        padding: 0;
    }

    .post-body .pc-body strong {
        color: var(--c-white);
    }

    /* ── Author bio card ── */
    .post-author-card {
        display: flex;
        align-items: center;
        gap: var(--space-6);
        background: var(--c-surface);
        border: 1px solid var(--c-border);
        border-radius: var(--r-lg);
        padding: var(--space-8);
        margin-top: var(--space-12);
        max-width: 720px;
    }

    .pac-avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        flex-shrink: 0;
        background: linear-gradient(135deg, var(--c-navy), var(--c-blue));
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--ff-display);
        font-weight: var(--fw-black);
        font-size: var(--fs-lg);
        color: var(--c-white);
    }

    .pac-name {
        font-size: var(--fs-base);
        font-weight: var(--fw-bold);
        color: var(--c-navy);
        margin-bottom: 2px;
    }

    .pac-role {
        font-size: var(--fs-xs);
        color: var(--c-accent);
        font-weight: var(--fw-semi);
        margin-bottom: var(--space-2);
    }

    .pac-bio {
        font-size: var(--fs-xs);
        color: var(--c-muted);
        line-height: var(--lh-base);
    }

    /* ── Tag row ── */
    .post-tags {
        display: flex;
        gap: var(--space-3);
        flex-wrap: wrap;
        margin-top: var(--space-10);
        max-width: 720px;
    }

    .post-tag {
        font-size: var(--fs-xs);
        font-weight: var(--fw-semi);
        color: var(--c-navy);
        background: var(--c-white);
        border: 1.5px solid var(--c-border);
        padding: 7px 16px;
        border-radius: var(--r-full);
        transition: all var(--dur-fast) var(--ease);
    }

    .post-tag:hover {
        border-color: var(--c-accent);
        color: var(--c-accent);
    }

    /* ============================================================
   SIDEBAR — signature element: reading progress + TOC
   ============================================================ */
    .post-sidebar {
        position: sticky;
        top: var(--space-8);
        display: flex;
        flex-direction: column;
        gap: var(--space-5);
    }

    .sidebar-card {
        background: var(--c-white);
        border: 1px solid var(--c-border);
        border-radius: var(--r-lg);
        padding: var(--space-6);
    }

    .sidebar-card-title {
        font-size: 11px;
        font-weight: var(--fw-bold);
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--c-muted);
        margin-bottom: var(--space-5);
    }

    /* Reading progress ring */
    .progress-card {
        display: flex;
        align-items: center;
        gap: var(--space-5);
    }

    .progress-ring {
        position: relative;
        width: 64px;
        height: 64px;
        flex-shrink: 0;
    }

    .progress-ring svg {
        width: 64px;
        height: 64px;
        transform: rotate(-90deg);
    }

    .progress-ring-bg {
        fill: none;
        stroke: var(--c-surface);
        stroke-width: 5;
    }

    .progress-ring-fill {
        fill: none;
        stroke: var(--c-accent);
        stroke-width: 5;
        stroke-linecap: round;
        stroke-dasharray: 176;
        stroke-dashoffset: 176;
        transition: stroke-dashoffset .15s linear;
    }

    .progress-ring-num {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--ff-display);
        font-size: 13px;
        font-weight: var(--fw-black);
        color: var(--c-navy);
    }

    .progress-text-label {
        font-size: var(--fs-xs);
        font-weight: var(--fw-bold);
        color: var(--c-navy);
    }

    .progress-text-sub {
        font-size: 11px;
        color: var(--c-muted);
        margin-top: 2px;
    }

    /* Table of contents */
    .toc-list {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .toc-link {
        display: flex;
        align-items: center;
        gap: var(--space-3);
        font-size: var(--fs-xs);
        font-weight: var(--fw-semi);
        color: var(--c-muted);
        padding: var(--space-3) var(--space-3);
        border-radius: var(--r-sm);
        border-left: 2px solid transparent;
        transition: all var(--dur-fast) var(--ease);
    }

    .toc-link:hover {
        color: var(--c-navy);
        background: var(--c-surface);
    }

    .toc-link.is-active {
        color: var(--c-accent);
        border-left-color: var(--c-accent);
        background: rgba(217, 79, 61, .06);
        font-weight: var(--fw-bold);
    }

    .toc-num {
        font-family: var(--ff-display);
        font-size: 11px;
        font-weight: var(--fw-black);
        color: var(--c-border);
        flex-shrink: 0;
        width: 16px;
    }

    .toc-link.is-active .toc-num {
        color: var(--c-accent);
    }

    /* Share */
    .share-row {
        display: flex;
        gap: var(--space-3);
    }

    .share-btn {
        width: 40px;
        height: 40px;
        border-radius: var(--r-sm);
        border: 1.5px solid var(--c-border);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--c-navy);
        transition: all var(--dur-base) var(--ease);
    }

    .share-btn svg {
        width: 17px;
        height: 17px;
    }

    .share-btn:hover {
        background: var(--c-navy);
        border-color: var(--c-navy);
        color: var(--c-white);
    }

    /* Newsletter / CTA card */
    .cta-card {
        background: var(--c-navy);
        border-radius: var(--r-lg);
        padding: var(--space-6);
        position: relative;
        overflow: hidden;
    }

    .cta-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
        background-size: 20px 20px;
    }

    .cta-card-inner {
        position: relative;
        z-index: 2;
    }

    .cta-card-eyebrow {
        font-size: 10.5px;
        font-weight: var(--fw-bold);
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--c-gold);
        margin-bottom: var(--space-3);
    }

    .cta-card-title {
        font-family: var(--ff-display);
        font-size: var(--fs-lg);
        font-weight: var(--fw-bold);
        color: var(--c-white);
        line-height: var(--lh-snug);
        margin-bottom: var(--space-3);
    }

    .cta-card-sub {
        font-size: 12.5px;
        color: rgba(255, 255, 255, .55);
        line-height: var(--lh-base);
        margin-bottom: var(--space-5);
    }

    .cta-card-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--space-2);
        width: 100%;
        background: var(--c-accent);
        color: var(--c-white);
        font-size: var(--fs-xs);
        font-weight: var(--fw-bold);
        padding: 12px 20px;
        border-radius: var(--r-sm);
        transition: all var(--dur-base) var(--ease);
    }

    .cta-card-btn:hover {
        background: #c03d2c;
        transform: translateY(-1px);
    }

    .cta-card-btn svg {
        width: 14px;
        height: 14px;
        transition: transform var(--dur-base) var(--ease);
    }

    .cta-card-btn:hover svg {
        transform: translateX(3px);
    }

    /* Recent posts */
    .related-list {
        display: flex;
        flex-direction: column;
    }

    .related-item {
        display: flex;
        gap: var(--space-4);
        padding: var(--space-4) 0;
        border-bottom: 1px solid var(--c-surface);
        transition: opacity var(--dur-fast) var(--ease);
    }

    .related-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .related-item:first-child {
        padding-top: 0;
    }

    .related-thumb {
        width: 64px;
        height: 56px;
        border-radius: var(--r-sm);
        object-fit: cover;
        flex-shrink: 0;
    }

    .related-title {
        font-size: 12.5px;
        font-weight: var(--fw-bold);
        color: var(--c-navy);
        line-height: 1.4;
        margin-bottom: 4px;
    }

    .related-date {
        font-size: 11px;
        color: var(--c-muted);
    }

    .related-item:hover .related-title {
        color: var(--c-accent);
    }

    /* ── Search (kept minimal, secondary to TOC) ── */
    .search-form {
        display: flex;
    }

    .search-input {
        flex: 1;
        height: 44px;
        border: 1.5px solid var(--c-border);
        border-right: none;
        border-radius: var(--r-sm) 0 0 var(--r-sm);
        padding: 0 var(--space-4);
        font-size: var(--fs-xs);
        font-family: inherit;
        outline: none;
        color: var(--c-ink);
    }

    .search-input:focus {
        border-color: var(--c-accent);
    }

    .search-input::placeholder {
        color: var(--c-muted);
    }

    .search-btn {
        width: 48px;
        border-radius: 0 var(--r-sm) var(--r-sm) 0;
        background: var(--c-accent);
        color: var(--c-white);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background var(--dur-base) var(--ease);
    }

    .search-btn:hover {
        background: #c03d2c;
    }

    .search-btn svg {
        width: 17px;
        height: 17px;
    }

    /* visually-hidden util for sr-only labels */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .single-blog-wrapper {
        padding-block: var(--space-16) var(--space-24);
        background: var(--c-surface);
    }
    
.team-card-avatar{border-radius: 0px!important;object-fit: cover;width: 100%!important;height: 400px!important;}


    /* ============================================================
   RESPONSIVE
   ============================================================ */
    @media (max-width: 991px) {
        .post-layout {
            grid-template-columns: 1fr;
            gap: var(--space-12);
        }

        .post-sidebar {
            position: static;
        }
    }

    @media (max-width: 767px) {
        /*.post-page {*/
        /*    padding-block: var(--space-10) var(--space-16);*/
        /*}*/

        .post-meta-row {
            gap: var(--space-3);
        }

        .post-meta-sep {
            display: none;
        }

        .post-title {
            font-size: 30px;
        }

        .post-author-card {
            flex-direction: column;
            text-align: center;
        }
    }


    /* ── In-article service CTA ── */
    .article-service-cta {
        margin: var(--space-12) 0;
        background: linear-gradient(135deg, #0b1d3a 0%, #1a3a6b 100%);
        border-radius: var(--r-md);
        padding: var(--space-8) var(--space-8);
        display: flex;
        align-items: center;
        gap: var(--space-8);
        flex-wrap: wrap;
    }
    .article-service-cta a{color:white!important; text-decoration:none!important;}
    .asc-copy { flex: 1; min-width: 260px; }
    .asc-eyebrow {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--c-gold);
        margin-bottom: var(--space-2);
    }
    .asc-headline {
        font-size: var(--fs-lg);
        font-weight: 700;
        color: #fff;
        margin: 0 0 var(--space-2);
        line-height: 1.3;
    }
    .asc-sub {
        font-size: var(--fs-sm);
        color: rgba(255,255,255,.65);
        line-height: var(--lh-base);
        margin: 0;
    }
    @media(max-width:640px) {
        .article-service-cta { flex-direction: column; }
    }

    /* ── Article h3 sub-heading ── */
    .post-body h3 {
        font-size: var(--fs-xl);
        font-weight: 700;
        color: var(--c-navy);
        margin: var(--space-8) 0 var(--space-3);
        line-height: var(--lh-snug);
    }

    /* ── Article inline links ── */
    .post-body a { color: var(--c-sky); text-decoration: underline; text-underline-offset: 3px; }
    .post-body a:hover { color: var(--c-accent); }


/* ============================================================
   BLOG LISTING PAGE (blog.php)
   Migrated from a 321-line inline <style> block. .skip-link and
   .container--narrow/--wide (also present in the original block) were
   dropped as pure duplicates of what this file already defines above.
   ============================================================ */
        /* ============================================================
           BLOG GRID
           ============================================================ */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .blog-card {
            background: var(--c-white);
            border: 1px solid var(--c-border);
            border-radius: var(--r-md);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform var(--dur-base) var(--ease-back),
                        box-shadow var(--dur-base) var(--ease),
                        border-color var(--dur-base) var(--ease);
        }

        .blog-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .blog-card a.blog-card-link {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .blog-image {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/9;
            background: var(--c-surface);
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--dur-slow) var(--ease);
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.06);
        }

        /* Category pill — sits over the image, bottom-left, matches site accent system */
        .blog-cat-pill {
            position: absolute;
            left: var(--space-4);
            bottom: var(--space-4);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(11, 29, 58, .85);
            backdrop-filter: blur(6px);
            color: var(--c-white);
            font-size: 11px;
            font-weight: var(--fw-bold);
            letter-spacing: .1em;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: var(--r-full);
        }

        .blog-content {
            padding: var(--space-6);
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        /* Meta row — date + reading time, replaces lone .blog-date span */
        .blog-meta {
            display: flex;
            align-items: center;
            gap: var(--space-3);
            margin-bottom: var(--space-4);
            font-size: var(--fs-xs);
            color: var(--c-muted);
            font-weight: var(--fw-semi);
        }

        .blog-meta-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .blog-meta-item svg {
            width: 14px;
            height: 14px;
            color: var(--c-accent);
            flex-shrink: 0;
        }

        .blog-meta-sep {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: var(--c-border);
            flex-shrink: 0;
        }

        .blog-title {
            font-family: var(--ff-display);
            font-size: clamp(18px, 1.4vw, 22px);
            line-height: 1.3;
            font-weight: var(--fw-bold);
            letter-spacing: -.01em;
            color: var(--c-navy);
            margin-bottom: var(--space-3);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color var(--dur-base) var(--ease);
        }

        .blog-card:hover .blog-title {
            color: var(--c-accent);
        }

        .blog-excerpt {
            color: var(--c-muted);
            font-size: var(--fs-sm);
            line-height: var(--lh-base);
            margin-bottom: var(--space-5);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* "Read article" link — anchors the card, matches .sc-link pattern site-wide */
        .blog-read-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: var(--fs-xs);
            font-weight: var(--fw-bold);
            color: var(--c-accent);
            letter-spacing: .04em;
            margin-top: auto;
            transition: gap var(--dur-base) var(--ease);
        }

        .blog-read-more svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
            transition: transform var(--dur-base) var(--ease);
        }

        .blog-card:hover .blog-read-more {
            gap: 10px;
        }

        .blog-card:hover .blog-read-more svg {
            transform: translateX(2px);
        }

        /* Pagination — replaces dead-end grid with continued navigation */
        .blog-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-2);
            margin-top: var(--space-16);
        }

        .bp-link, .bp-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 8px;
            border-radius: var(--r-sm);
            border: 1.5px solid var(--c-border);
            font-size: var(--fs-sm);
            font-weight: var(--fw-semi);
            color: var(--c-navy);
            background: var(--c-white);
            transition: all var(--dur-base) var(--ease);
        }

        .bp-link:hover, .bp-arrow:hover {
            border-color: var(--c-accent);
            color: var(--c-accent);
        }

        .bp-link.is-active {
            background: var(--c-navy);
            border-color: var(--c-navy);
            color: var(--c-white);
        }

        .bp-arrow svg {
            width: 16px;
            height: 16px;
        }

        .bp-arrow[aria-disabled="true"] {
            opacity: .35;
            pointer-events: none;
        }

        /* ── Inline Lead Capture ── */
        .blog-lead-capture {
            grid-column: 1 / -1; /* spans the full .blog-grid width */
            background: linear-gradient(135deg, #0b1d3a 0%, #1a3a6b 100%);
            border-radius: var(--r-md);
            padding: var(--space-10) var(--space-10);
            margin: var(--space-4) 0;
        }
        .blc-inner {
            display: flex;
            align-items: center;
            gap: var(--space-10);
        }
        .blc-copy { flex: 1; }
        .blc-eyebrow {
            font-size: 11px;
            font-weight: var(--fw-bold);
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--c-accent);
            margin-bottom: var(--space-2);
        }
        .blc-headline {
            font-family: var(--ff-display);
            font-size: clamp(20px, 2vw, 26px);
            font-weight: var(--fw-bold);
            color: #fff;
            line-height: 1.25;
            margin-bottom: var(--space-3);
        }
        .blc-sub {
            font-size: var(--fs-sm);
            color: rgba(255,255,255,.65);
            line-height: var(--lh-base);
            margin: 0;
        }
        .blc-form {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: var(--space-3);
        }
        .blc-form input {
            width: 100%;
            padding: 12px 16px;
            border-radius: var(--r-sm);
            border: 1.5px solid rgba(255,255,255,.15);
            background: rgba(255,255,255,.08);
            color: #fff;
            font-size: var(--fs-sm);
            outline: none;
            transition: border-color .2s;
        }
        .blc-form input::placeholder { color: rgba(255,255,255,.4); }
        .blc-form input:focus { border-color: var(--c-accent); }
        .blc-form .btn { justify-content: center; }

        /* Tablet */
        @media(max-width:991px) {

            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }

        }

        @media(max-width:767px) {
            .blc-inner { flex-direction: column; gap: var(--space-6); }
            .blog-lead-capture { padding: var(--space-8) var(--space-6); }
        }

        /* Mobile */
        @media(max-width:767px) {

            .blog-grid {
                grid-template-columns: 1fr;
            }

        }

/* ============================================================
   SERVICE PAGE — RELATED BLOG POSTS WIDGET
   Migrated identically from 6 service pages' inline <style> blocks
   (technical-seo.php, content-seo.php, ecommerce-seo.php, geo-seo.php,
   link-building.php, local-seo.php — all 6 were byte-identical).
   Hardcoded hex colors and raw px radius/shadow replaced with tokens;
   values are unchanged (e.g. #F5F7FB === var(--c-surface)).
   ============================================================ */
.service-blog-links{padding-block:48px 56px;background:var(--c-surface);}
.sbl-header{margin-bottom:28px;}
.sbl-title{font-size:1.5rem;font-weight:var(--fw-bold);color:var(--c-navy);margin-top:6px;}
.sbl-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px;}
.sbl-card{background:var(--c-white);border:1px solid var(--c-border);border-radius:14px;padding:24px;display:flex;flex-direction:column;gap:10px;transition:box-shadow .2s,transform .2s;text-decoration:none;color:inherit;} /* 14px/.2s have no exact token match (r-md=12px, r-lg=20px; dur-fast=.16s, dur-base=.28s) — kept literal */
.sbl-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px);}
.sbl-card-title{font-size:1rem;font-weight:var(--fw-bold);color:var(--c-navy);line-height:1.4;}
.sbl-card-excerpt{font-size:13px;color:var(--c-muted);line-height:var(--lh-base);flex:1;}
.sbl-card-meta{font-size:12px;color:var(--c-accent);font-weight:600;display:flex;align-items:center;gap:6px;} /* 600 has no matching token (--fw-semi/--fw-medium are 500, --fw-bold is 700) — kept literal to preserve the original weight exactly */
.sbl-card-meta::before{content:'';display:block;width:18px;height:2px;background:var(--c-accent);border-radius:2px;}

/* ============================================================
   ABOUT PAGE — Team credentials, Client Results, Trust Signals
   Migrated from about-us.php's 38-line inline <style> block.
   Only exact-match values were tokenized (verified against the
   token scale); everything without an exact match (6px, 28px,
   999px radius, the .1-opacity shadow, .2s/.25s durations, 11/12/13px
   font sizes, font-weight:600) was kept literal rather than risk the
   kind of near-match substitution error caught during the service-page
   migration (see CHANGELOG v2.7.5).
   ============================================================ */
/* ── Team credential badges ── */
.team-card-creds{display:flex;flex-wrap:wrap;gap:6px;margin-top:var(--space-3);}
.tc-cred{font-size:11px;font-weight:600;color:var(--c-blue);background:rgba(26,58,107,.08);border:1px solid rgba(26,58,107,.15);padding:4px 10px;border-radius:999px;white-space:nowrap;}

/* ── Client Results ── */
.results-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-top:var(--space-12);}
.result-card{background:var(--c-white);border:1px solid var(--c-border);border-radius:16px;padding:28px;transition:box-shadow .25s ease,transform .25s ease;}
.result-card:hover{box-shadow:0 12px 40px rgba(12,15,26,.1);transform:translateY(-3px);}
.rc-industry{font-size:12px;font-weight:var(--fw-bold);letter-spacing:.1em;text-transform:uppercase;color:var(--c-accent);margin-bottom:var(--space-5);}
.rc-stat-row{display:flex;gap:var(--space-5);margin-bottom:var(--space-5);flex-wrap:wrap;}
.rc-stat-val{font-family:var(--ff-display);font-size:28px;font-weight:var(--fw-black);color:var(--c-navy);line-height:1;}
.rc-stat-val span{font-size:var(--fs-sm);font-weight:var(--fw-bold);color:var(--c-accent);}
.rc-stat-label{font-size:11px;color:var(--c-muted);font-weight:600;margin-top:4px;text-transform:uppercase;letter-spacing:.06em;}
.rc-summary{font-size:var(--fs-xs);color:#4A5568;line-height:1.7;margin-bottom:var(--space-4);}
.rc-services{display:flex;flex-wrap:wrap;gap:6px;}
.rc-services span{font-size:11px;font-weight:600;background:var(--c-surface);color:var(--c-navy);border:1px solid var(--c-border);padding:3px 10px;border-radius:999px;}

/* ── Trust signals ── */
.section--trust{background:var(--c-surface);padding-block:var(--space-10);}
.trust-block{display:flex;align-items:center;gap:var(--space-8);flex-wrap:wrap;}
.trust-label{font-size:11px;font-weight:var(--fw-bold);letter-spacing:.15em;text-transform:uppercase;color:var(--c-muted);white-space:nowrap;min-width:160px;}
.trust-logos{display:flex;align-items:center;gap:var(--space-5);flex-wrap:wrap;}
.trust-logo-item{opacity:.7;transition:opacity .2s;}
.trust-logo-item:hover{opacity:1;}
.trust-divider{height:1px;background:var(--c-border);margin-block:28px;}
.trust-certs{display:flex;flex-wrap:wrap;gap:var(--space-5);}
.trust-cert-item{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:600;color:var(--c-navy);}
.trust-cert-item svg{flex-shrink:0;}

/* ── Responsive ── */
@media(max-width:900px){.results-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:640px){
  .results-grid{grid-template-columns:1fr;}
  .trust-block{flex-direction:column;align-items:flex-start;gap:var(--space-4);}
  .trust-label{min-width:auto;}
}

/* ============================================================
   PRICING PAGE — Sticky Mobile CTA Bar
   Migrated from pricing.php's 35-line inline <style> block.
   Only exact-match values tokenized (--c-navy, --c-gold, --c-white,
   --fw-bold, --space-4/-6, and the --ease cubic-bezier curve); the
   .3s duration, 10px gap, and 14px/15px/13px sizes have no exact
   token match and were kept literal.
   ============================================================ */
.sticky-pricing-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--c-navy);
  border-top: 3px solid var(--c-gold);
  padding: 14px var(--space-6);
  transform: translateY(100%);
  transition: transform .3s var(--ease);
  will-change: transform;
}
.sticky-pricing-cta.is-visible { transform: translateY(0); }
.sticky-pricing-cta[hidden] { display: block; visibility: hidden; }
.sticky-pricing-cta.is-visible[hidden] { visibility: visible; }
.spc-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.spc-copy { display: flex; flex-direction: column; gap: 2px; }
.spc-label { font-size: 15px; font-weight: var(--fw-bold); color: var(--c-white); }
.spc-sub { font-size: 13px; color: rgba(255,255,255,.65); }
.spc-actions { display: flex; gap: 10px; flex-shrink: 0; }
@media(max-width:640px) {
  .spc-inner { justify-content: center; text-align: center; }
  .spc-copy { align-items: center; }
}

/* ============================================================
   PRICING PAGE — AI Growth Consultant Experience
   Hero quiz CTA, Growth Quiz (multi-step, built on the .steps/
   .progress-bar primitives added in Design System v2 Tier 1 —
   first real consumer of those components), AI Recommendation
   Panel, Interactive Service Builder, plan-card outcome fields,
   process timeline, and the lead-capture form. All values use
   existing tokens; anything without an exact token match is kept
   literal per this project's established migration discipline.
   ============================================================ */

/* ── Hero quiz CTA row ── */
.hero-quiz-cta { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-top: var(--space-8); justify-content: center;}

/* ── Growth Quiz card ── */
.quiz-card { max-width: 720px; margin-inline: auto; padding: var(--space-8); margin-top: var(--space-10); }
.quiz-progress-wrap { margin-bottom: var(--space-8); }
.quiz-progress-wrap .progress-bar { margin-bottom: var(--space-4); }
.quiz-progress-wrap .progress-bar-fill { width: 100%; }
.quiz-step fieldset { border: none; padding: 0; margin: 0; }
.quiz-q {
  display: block;
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  letter-spacing: -.01em;
  margin-bottom: var(--space-6);
  padding: 0;
}
.quiz-options { display: flex; flex-direction: column; gap: var(--space-3); }
.quiz-chip {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color var(--dur-base) var(--ease), background var(--dur-base) var(--ease);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--c-ink);
}
.quiz-chip:hover { border-color: var(--c-accent); }
.quiz-chip input[type="radio"] {
  width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--c-accent); cursor: pointer;
}
.quiz-chip:has(input:checked) { border-color: var(--c-accent); background: rgba(217,79,61,.05); }
.quiz-chip input:focus-visible { outline: 2px solid var(--c-sky); outline-offset: 2px; }
.quiz-nav { display: flex; justify-content: space-between; gap: var(--space-4); margin-top: var(--space-8); }
.quiz-nav .btn--primary { margin-left: auto; }
#quiz-error { margin-top: var(--space-5); }

/* ── AI Recommendation Panel ── */
.ai-rec-panel {
  max-width: 720px;
  margin: var(--space-10) auto 0;
  padding: var(--space-8);
  background: var(--c-navy);
  border-radius: var(--r-lg);
  color: var(--c-white);
}
.ai-rec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-5); flex-wrap: wrap; gap: var(--space-3); }
.ai-rec-confidence { display: flex; align-items: baseline; gap: var(--space-2); }
.ai-rec-confidence-num { font-family: var(--ff-display); font-size: var(--fs-2xl); font-weight: var(--fw-black); color: var(--c-success); }
.ai-rec-confidence-label { font-size: var(--fs-xs); color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; }
.ai-rec-plan-name { font-family: var(--ff-display); font-size: var(--fs-3xl); font-weight: var(--fw-black); letter-spacing: -.02em; margin-bottom: var(--space-3); }
.ai-rec-why { font-size: var(--fs-base); color: rgba(255,255,255,.7); line-height: var(--lh-loose); margin-bottom: var(--space-6); }
.ai-rec-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); padding: var(--space-6) 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: var(--space-6); }
.ai-rec-stat { display: flex; flex-direction: column; gap: 4px; }
.ai-rec-stat-label { font-size: var(--fs-xs); color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .06em; }
.ai-rec-stat-val { font-family: var(--ff-display); font-size: var(--fs-lg); font-weight: var(--fw-bold); }
.ai-rec-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; align-items: center; }

/* ── Interactive Service Builder ── */
.builder-layout { display: grid; grid-template-columns: 1fr 340px; gap: var(--space-12); align-items: start; }
.builder-category { margin-bottom: var(--space-8); }
.builder-category:last-child { margin-bottom: 0; }
.builder-category-title { font-size: var(--fs-sm); font-weight: var(--fw-bold); color: var(--c-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: var(--space-4); }
.builder-chip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
.builder-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  cursor: pointer;
  background: var(--c-white);
  transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.builder-chip:hover { border-color: var(--c-accent); }
.builder-chip:has(input:checked) { border-color: var(--c-accent); box-shadow: var(--shadow-accent-xs); }
.builder-chip input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--c-accent); cursor: pointer; flex-shrink: 0; }
.builder-chip input:focus-visible { outline: 2px solid var(--c-sky); outline-offset: 2px; }
.builder-chip-name { flex: 1; font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--c-ink); }
.builder-chip-price { font-size: var(--fs-xs); font-weight: var(--fw-bold); color: var(--c-accent); white-space: nowrap; }
.builder-summary { position: sticky; top: calc(72px + var(--space-6)); padding: var(--space-6); text-align: center; }
.builder-summary-label { font-size: var(--fs-xs); font-weight: var(--fw-bold); color: var(--c-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: var(--space-3); }
.builder-summary-value { font-family: var(--ff-display); font-size: var(--fs-3xl); font-weight: var(--fw-black); color: var(--c-navy); }
.builder-summary-value span { font-size: var(--fs-base); font-weight: var(--fw-medium); color: var(--c-muted); }
.builder-summary-count { font-size: var(--fs-xs); color: var(--c-muted); margin-bottom: var(--space-5); }
.builder-summary-list { list-style: none; padding: 0; margin: 0 0 var(--space-6); text-align: left; display: flex; flex-direction: column; gap: var(--space-2); }
.builder-summary-list li { display: flex; justify-content: space-between; font-size: var(--fs-xs); color: var(--c-ink); padding-bottom: var(--space-2); border-bottom: 1px solid var(--c-border); }
.builder-summary-list li span { color: var(--c-muted); }
.builder-summary-cta { width: 100%; justify-content: center; }

/* ── Plan card outcome fields (extends the existing .pricing-card/.pc-* base) ── */
.pc-best-for { font-size: var(--fs-xs); color: var(--c-navy); margin-top: var(--space-4); line-height: var(--lh-base); }
/* .pricing-card--featured .pc-best-for { color: rgba(255,255,255,.85); } */
.pc-outcomes { font-size: var(--fs-xs); color: var(--c-muted); line-height: var(--lh-base); margin-top: var(--space-2); margin-bottom: var(--space-4); }
.pc-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); margin: var(--space-5) 0; padding: var(--space-4) 0; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.pricing-card--featured .pc-meta-grid { border-color: rgba(255,255,255,.1); }
.pc-meta-item { display: flex; flex-direction: column; gap: 2px; }
.pc-meta-label { font-size: 10px; color: var(--c-muted); text-transform: uppercase; letter-spacing: .06em; }
/* .pricing-card--featured .pc-meta-label { color: rgba(255,255,255,.4); } */
.pc-meta-val { font-size: var(--fs-xs); font-weight: var(--fw-bold); color: var(--c-navy); }
/* .pricing-card--featured .pc-meta-val { color: var(--c-white); } */
.pc-ai-tools { margin-bottom: var(--space-5); }
.pc-ai-tools-label { display: block; font-size: 10px; color: var(--c-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: var(--space-2); }
/* .pricing-card--featured .pc-ai-tools-label { color: rgba(255,255,255,.4); } */
.pc-ai-tools-list { display: flex; flex-wrap: wrap; gap: 6px; }
.pc-ai-tool-pill { font-size: 10.5px; font-weight: var(--fw-semi); background: var(--c-surface); color: var(--c-navy); border: 1px solid var(--c-border); padding: 3px 10px; border-radius: var(--r-full); }
.pricing-card--featured .pc-ai-tool-pill { background: rgba(255,255,255,.08);  border-color: rgba(255,255,255,.15); }

/* ── Process timeline (numbered list — order is real: quiz → match → call → start) ── */
.pricing-process-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-6); }
.pricing-process-item { display: flex; align-items: flex-start; gap: var(--space-5); }
.pricing-process-num {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: var(--r-full);
  background: var(--c-accent); color: var(--c-white);
  font-family: var(--ff-display); font-weight: var(--fw-bold); font-size: var(--fs-base);
}
.pricing-process-item strong { display: block; font-size: var(--fs-base); color: var(--c-navy); margin-bottom: 4px; }
.pricing-process-item p { font-size: var(--fs-sm); color: var(--c-muted); line-height: var(--lh-base); margin: 0; }

/* ── Trust satisfaction note ── */
.trust-satisfaction-note { text-align: center; font-size: var(--fs-sm); color: var(--c-muted); margin-top: var(--space-8); }

/* ── Lead capture form ── */
.lead-form { max-width: 560px; margin-inline: auto; padding: var(--space-8); }
.lead-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.lead-form-field { margin-bottom: var(--space-5); }
.lead-form-field label { display: block; font-size: var(--fs-xs); font-weight: var(--fw-bold); color: var(--c-navy); margin-bottom: var(--space-2); }
.lead-form-optional { font-weight: var(--fw-regular); color: var(--c-muted); }
.lead-form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lead-form-summary { background: var(--c-surface); border-radius: var(--r-md); padding: var(--space-5); margin-bottom: var(--space-6); }
.lead-form-summary p { font-size: var(--fs-xs); color: var(--c-muted); margin: 0; }
.lead-form-summary-row { display: flex; justify-content: space-between; font-size: var(--fs-xs); padding: var(--space-2) 0; }
.lead-form-summary-row span { color: var(--c-muted); }
.lead-form-summary-row strong { color: var(--c-navy); }
.lead-form-submit { width: 100%; justify-content: center; }
.lead-form .alert { margin-top: var(--space-5); }
.lead-form-alt { text-align: center; font-size: var(--fs-xs); color: var(--c-muted); margin: var(--space-6) 0 0; }



<!-- ============================================================
     PORTFOLIO PAGE — page-scoped additions only.
     Everything below uses `pf-*` class names so nothing here can
     collide with or override the sitewide stylesheet. All colors,
     type, spacing, and radii are pulled from existing tokens.
     ============================================================ -->
<style>
  /* ── Industry coverage strip (sits under the hero) ── */
  .pf-coverage {
    position: relative;
    z-index: 2;
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .pf-coverage-label {
    font-size: 11px;
    font-weight: var(--fw-bold);
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: var(--space-5);
  }
  .pf-coverage-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }
  .pf-coverage-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.6);
    font-size: 12.5px;
    font-weight: var(--fw-semi);
    padding: 8px 16px;
    border-radius: var(--r-full);
  }
  .pf-coverage-chip svg { width: 14px; height: 14px; color: var(--c-gold); flex-shrink: 0; }

  /* ── Picker: replaces a cramped pill-tab row with a clean, scannable grid ── */
  .pf-picker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    margin-bottom: var(--space-16);
  }
  .pf-picker-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    text-align: left;
    background: var(--c-white);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--space-6);
    cursor: pointer;
    transition: border-color var(--dur-base) var(--ease),
                box-shadow var(--dur-base) var(--ease),
                transform var(--dur-base) var(--ease-back);
  }
  .pf-picker-card:hover {
    border-color: rgba(217,79,61,.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
  }
  .pf-picker-card.pf-active {
    border-color: var(--c-navy);
    background: var(--c-navy);
    box-shadow: var(--shadow-lg);
  }
  .pf-picker-top { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-3); }
  .pf-picker-icon {
    width: 44px; height: 44px;
    border-radius: var(--r-md);
    background: rgba(217,79,61,.08);
    color: var(--c-accent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all var(--dur-base) var(--ease);
  }
  .pf-picker-icon svg { width: 20px; height: 20px; }
  .pf-picker-card.pf-active .pf-picker-icon { background: rgba(232,160,32,.18); color: var(--c-gold); }
  .pf-picker-result {
    font-family: var(--ff-display);
    font-size: var(--fs-lg);
    font-weight: var(--fw-black);
    color: var(--c-accent);
    letter-spacing: -.01em;
    line-height: 1;
    white-space: nowrap;
  }
  .pf-picker-card.pf-active .pf-picker-result { color: var(--c-gold); }
  .pf-picker-industry {
    font-size: 10.5px;
    font-weight: var(--fw-bold);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 4px;
  }
  .pf-picker-card.pf-active .pf-picker-industry { color: rgba(255,255,255,.4); }
  .pf-picker-name {
    font-family: var(--ff-display);
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--c-navy);
    letter-spacing: -.01em;
    line-height: var(--lh-snug);
  }
  .pf-picker-card.pf-active .pf-picker-name { color: var(--c-white); }
  .pf-picker-teaser {
    font-size: 12.5px;
    color: var(--c-muted);
    line-height: var(--lh-base);
    padding-top: var(--space-3);
    border-top: 1px solid var(--c-border);
  }
  .pf-picker-card.pf-active .pf-picker-teaser { color: rgba(255,255,255,.55); border-top-color: rgba(255,255,255,.1); }
  .pf-picker-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: var(--fw-bold);
    letter-spacing: .03em;
    color: var(--c-accent);
    margin-top: auto;
  }
  .pf-picker-card.pf-active .pf-picker-cta { color: var(--c-gold); }
  .pf-picker-cta svg { width: 13px; height: 13px; transition: transform var(--dur-base) var(--ease); }
  .pf-picker-card:hover .pf-picker-cta svg { transform: translateX(3px); }

  /* Small "detail below" cue so the jump from grid → detail card reads as
     one continuous flow rather than two disconnected components */
  .pf-detail-anchor { scroll-margin-top: 100px; }
  .pf-detail-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: var(--space-6);
  }
  .pf-detail-flag svg { width: 14px; height: 14px; color: var(--c-accent); }
  
  
  /* ============================================================
   COMPARISON PAGE — page-scoped additions only.
   Every class below is prefixed "cmp-" so nothing here can collide
   with or override the sitewide stylesheet. All colors, type,
   spacing, radii, and shadows are pulled from your existing tokens
   (--c-*, --ff-*, --fs-*, --fw-*, --space-*, --r-*, --shadow-*).
   ============================================================ */

/* Minimal standalone nav for preview — replace with your real header.php include */
.cmp-nav { display:flex; align-items:center; justify-content:space-between; padding:20px 0; border-bottom:1px solid var(--c-border); }
.cmp-logo { font-family:var(--ff-display); font-weight:var(--fw-bold); font-size:1.3rem; color:var(--c-navy); }
.cmp-logo span { color:var(--c-accent); }

/* Hero — built on .section--dark, adds only the radial glow + hero-specific type scale */
.cmp-hero { position:relative; overflow:hidden; padding-block: var(--space-24); }
.cmp-hero::after {
  content:""; position:absolute; right:-120px; top:-120px; width:420px; height:420px;
  border-radius:50%; background:radial-gradient(circle at 30% 30%, rgba(232,160,32,.22), transparent 70%);
  pointer-events:none;
}
.cmp-hero-inner { position:relative; z-index:2; }
.cmp-hero-h1 { font-family:var(--ff-display); font-size:clamp(2rem,4.2vw,3.35rem); line-height:1.12; font-weight:var(--fw-bold); color:var(--c-white); max-width:760px; margin:0 0 var(--space-5); letter-spacing:-.02em; }
.cmp-hero-h1 em { font-style:normal; color:var(--c-gold); }
.cmp-hero-lede { font-size:var(--fs-md); color:rgba(255,255,255,.65); max-width:560px; line-height:var(--lh-loose); margin:0 0 var(--space-10); }
.cmp-hero-actions { display:flex; gap:var(--space-4); flex-wrap:wrap; margin-bottom: var(--space-16); }

/* Section header helpers that stay legible on the dark hero (section-eyebrow/title are light-bg by default) */
.cmp-hero .section-eyebrow { color:var(--c-gold); }
.cmp-hero .section-eyebrow::before { background:var(--c-gold); }

/* Comparison table — wraps the shared .table component, adds only the highlighted column */
.cmp-table-wrap { background:var(--c-white); border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-md); }
.cmp-table { margin:0; }
.cmp-table thead th { background:var(--c-navy); color:var(--c-white); font-family:var(--ff-body); font-size:var(--fs-sm); font-weight:var(--fw-bold); padding:var(--space-5) var(--space-5); border-bottom:none; text-transform:none; letter-spacing:normal; }
.cmp-table thead th.cmp-col-us { background:var(--c-accent); position:relative; }
.cmp-table thead th.cmp-col-us::before { content:""; position:absolute; top:0; left:0; right:0; height:4px; background:var(--c-gold); }
.cmp-table td.cmp-col-us { background:rgba(217,79,61,.06); font-weight:var(--fw-bold); color:var(--c-navy); }
.cmp-table .cmp-row-label { color:var(--c-navy); font-weight:var(--fw-bold); width:26%; }
.cmp-check { color:var(--c-success); font-weight:var(--fw-bold); }
.cmp-cross { color:var(--c-muted); }
.cmp-table-note { color:var(--c-muted); font-size:var(--fs-xs); margin-top:var(--space-4); }

/* Differentiator cards — the .card component only needs a numbering treatment added */
.cmp-diff-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:var(--space-6); }
.cmp-diff-num { font-family:var(--ff-display); font-style:italic; color:var(--c-gold); font-size:var(--fs-md); font-weight:var(--fw-bold); margin-bottom:var(--space-3); display:block; }
.cmp-diff-title { font-size:var(--fs-lg); font-weight:var(--fw-bold); margin:0 0 var(--space-3); color:var(--c-navy); }
.cmp-diff-body { color:var(--c-muted); font-size:var(--fs-base); margin:0; line-height:var(--lh-base); }

/* Split narrative + quote panel */
.cmp-split { display:grid; grid-template-columns:1fr 1fr; gap:var(--space-16); align-items:center; }
.cmp-split-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:var(--space-4); }
.cmp-split-list li { display:flex; gap:var(--space-3); align-items:flex-start; color:var(--c-navy); font-size:var(--fs-base); }
.cmp-split-dot { flex:none; width:22px; height:22px; border-radius:50%; background:var(--c-accent); color:var(--c-white); display:flex; align-items:center; justify-content:center; font-size:.75rem; font-weight:var(--fw-bold); margin-top:2px; }
.cmp-quote-panel { background:var(--c-navy); border-radius:var(--r-lg); padding:var(--space-8); color:var(--c-white); }
.cmp-quote-text { font-family:var(--ff-display); font-style:italic; font-size:var(--fs-lg); line-height:var(--lh-snug); margin:0 0 var(--space-5); }
.cmp-quote-who { color:var(--c-gold); font-weight:var(--fw-bold); font-size:var(--fs-xs); text-transform:uppercase; letter-spacing:.04em; }

/* Objections — reuses .faq-item exactly, just adds the section wrapper */
.cmp-obj-intro { color:var(--c-muted); font-size:var(--fs-md); max-width:620px; margin:0 0 var(--space-10); line-height:var(--lh-loose); }

/* Footer (minimal — replace with your real footer.php include) */
.cmp-footer { padding:var(--space-8) 0; text-align:center; }

@media (max-width:860px){
  .cmp-diff-grid{grid-template-columns:1fr;}
  .cmp-split{grid-template-columns:1fr;}
}

  @media (max-width: 991px) {
    .pf-picker-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 640px) {
    .pf-picker-grid { grid-template-columns: 1fr; }
    .pf-coverage-row { justify-content: center; }
  }
</style>
/* ── Responsive ── */
@media (max-width: 991px) {
  .builder-layout { grid-template-columns: 1fr; }
  .builder-summary { position: static; }
  .ai-rec-stats { grid-template-columns: 1fr; gap: var(--space-3); }
}
@media (max-width: 640px) {
  .quiz-card { padding: var(--space-5); }
  .quiz-q { font-size: var(--fs-lg); }
  .builder-chip-grid { grid-template-columns: 1fr; }
  .pc-meta-grid { grid-template-columns: 1fr; }
  .lead-form-row { grid-template-columns: 1fr; }
  .lead-form { padding: var(--space-5); }
  .hero-quiz-cta { flex-direction: column; }
  .hero-quiz-cta .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   PRICING PROPOSAL PAGE — shareable token-gated proposal view
   (pricing-proposal.php). Backlog #69.
   ============================================================ */
.prop-card { max-width: 720px; margin: 0 auto; padding: var(--space-10); background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.prop-card-head { margin-bottom: var(--space-6); }
.prop-plan-name { font-family: var(--ff-display); font-size: var(--fs-3xl); font-weight: var(--fw-black); color: var(--c-navy); letter-spacing: -.02em; margin: var(--space-3) 0 var(--space-2); }
.prop-tagline { font-size: var(--fs-md); color: var(--c-muted); }
.prop-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); padding: var(--space-6) 0; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); margin-bottom: var(--space-6); }
.prop-stat { display: flex; flex-direction: column; gap: 4px; }
.prop-stat-label { font-size: var(--fs-xs); color: var(--c-muted); text-transform: uppercase; letter-spacing: .06em; }
.prop-stat-val { font-family: var(--ff-display); font-size: var(--fs-lg); font-weight: var(--fw-bold); color: var(--c-navy); }
.prop-section { margin-bottom: var(--space-6); }
.prop-section h3 { font-size: var(--fs-sm); font-weight: var(--fw-bold); color: var(--c-navy); margin-bottom: var(--space-2); }
.prop-section p { font-size: var(--fs-base); color: var(--c-muted); line-height: var(--lh-loose); margin: 0; }
.prop-list { margin: 0; padding-left: var(--space-5); color: var(--c-muted); font-size: var(--fs-base); line-height: var(--lh-loose); }
.prop-service-pills { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.prop-service-pill { font-size: var(--fs-xs); font-weight: var(--fw-semi); background: var(--c-surface); color: var(--c-navy); border: 1px solid var(--c-border); padding: 4px 12px; border-radius: var(--r-full); }
.prop-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-top: var(--space-8); }
.prop-share-note { font-size: var(--fs-xs); color: var(--c-muted); margin-top: var(--space-5); text-align: center; }
@media (max-width: 640px) {
  .prop-card { padding: var(--space-6); }
  .prop-stats { grid-template-columns: 1fr; gap: var(--space-4); }
  .prop-actions .btn { width: 100%; justify-content: center; }
}

/* ── Pricing quiz lead-form proposal panel (pricing.php) — backlog #69 ── */
.proposal-panel { margin-top: var(--space-6); padding: var(--space-6); text-align: center; }
.proposal-panel-label { font-size: var(--fs-xs); font-weight: var(--fw-bold); color: var(--c-navy); text-transform: uppercase; letter-spacing: .06em; margin-bottom: var(--space-4); }
.proposal-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center; }
.proposal-share-note { font-size: var(--fs-xs); color: var(--c-muted); margin-top: var(--space-4); word-break: break-all; }
@media (max-width: 640px) {
  .proposal-actions { flex-direction: column; }
  .proposal-actions .btn { width: 100%; justify-content: center; }
  .quiz-progress-wrap .steps{flex-wrap:wrap;}
  .post-title { font-size: 26px; }
  .post-body h2 {font-size: 22px;font-weight: 500;line-height: 36px;margin:auto;}
  .pc-body { padding: 0px;}
  .stat-cell{padding: 20px;}
  .cs-tab{border-radius:8px;}
  .pricing-card .pc-body{ padding: 24px 32px 28px;}

}
