/* Comp-U-Help — IT services site */
:root {
  --purple-950: #2a0f47;
  --purple-900: #3d1763;
  --purple-800: #4d1d7c;
  --purple-700: #5b2d8c;   /* primary brand purple */
  --purple-600: #6e3ea0;
  --purple-500: #8758b8;
  --purple-300: #b89bd6;
  --purple-100: #ece3f5;
  --purple-50:  #f6f1fb;

  --green-700: #7fa321;
  --green-600: #8fb02d;
  --green-500: #a4c939;    /* primary brand green */
  --green-400: #b8d655;
  --green-100: #ecf5cf;
  --green-50:  #f5f9e4;

  --ink-950: #0e0a1a;
  --ink-900: #1a1428;
  --ink-800: #2a2238;
  --ink-700: #3f364f;
  --ink-500: #6b6478;
  --ink-400: #8b8498;
  --ink-300: #c4becf;
  --ink-200: #e2dee9;
  --ink-100: #f1eff5;
  --ink-50:  #faf9fc;

  --bg: #ffffff;
  --warn: #f59e0b;
  --danger: #dc2626;

  --shadow-sm: 0 1px 2px rgba(42, 15, 71, 0.06), 0 1px 3px rgba(42, 15, 71, 0.04);
  --shadow-md: 0 4px 8px rgba(42, 15, 71, 0.06), 0 8px 24px rgba(42, 15, 71, 0.08);
  --shadow-lg: 0 12px 32px rgba(42, 15, 71, 0.12), 0 24px 64px rgba(42, 15, 71, 0.10);
  --shadow-glow: 0 0 0 1px rgba(91, 45, 140, 0.08), 0 20px 50px -10px rgba(91, 45, 140, 0.35);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-display: 'Bricolage Grotesque', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  /* Was JetBrains Mono. Repointed to the body sans-serif so UI labels share one type voice.
     Use --font-code for the few places where we actually want a code/dashboard mono treatment
     (SOC live ticker, technical readouts, address-style data). */
  --font-mono: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-code: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
  line-height: 1.05;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 1.6vw, 1.5rem); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }

/* ------- Layout helpers ------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--purple-700);
}
.eyebrow::before {
  content: ''; width: 24px; height: 1.5px; background: var(--green-500); display: inline-block;
}
.section-title {
  margin-top: 14px;
  max-width: 760px;
}
.section-subtitle {
  margin-top: 16px;
  font-size: 18px;
  color: var(--ink-500);
  max-width: 640px;
}

/* ------- Buttons ------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple-700);
  color: white;
  box-shadow: 0 6px 20px -4px rgba(91, 45, 140, 0.5);
}
.btn-primary:hover { background: var(--purple-800); transform: translateY(-1px); box-shadow: 0 10px 26px -4px rgba(91, 45, 140, 0.6); }
.btn-accent {
  background: var(--green-500);
  color: var(--ink-950);
  box-shadow: 0 6px 20px -4px rgba(164, 201, 57, 0.55);
}
.btn-accent:hover { background: var(--green-600); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border: 1.5px solid var(--ink-200);
}
.btn-ghost:hover { border-color: var(--purple-700); color: var(--purple-700); }
.btn-dark {
  background: var(--ink-900);
  color: white;
}
.btn-dark:hover { background: var(--ink-950); }
.btn-arrow svg { transition: transform .2s ease; }
.btn-arrow:hover svg { transform: translateX(3px); }

/* ------- Nav ------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--ink-100);
}
.nav-inner {
  display: flex; align-items: center; gap: 36px;
  padding: 16px 28px;
  max-width: 1320px; margin: 0 auto;
}
.nav-logo img { height: 38px; }
.nav-links { display: flex; gap: 4px; margin-left: 8px; }
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-700);
  transition: color .15s, background .15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-link:hover { color: var(--purple-700); background: var(--purple-50); }
.nav-link.has-caret::after {
  content: ''; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  margin-left: 2px;
}
.nav-spacer { flex: 1; }
.nav-phone {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--purple-700);
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.nav-phone-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(164, 201, 57, 0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(164, 201, 57, 0.25); }
  50% { box-shadow: 0 0 0 7px rgba(164, 201, 57, 0.08); }
}

/* ------- Hero ------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(164, 201, 57, 0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(91, 45, 140, 0.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--ink-50) 100%);
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(91,45,140,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,45,140,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 50%, transparent 90%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--purple-100);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  color: var(--ink-700);
  font-weight: 500;
}
.hero-badge-tag {
  background: var(--green-500);
  color: var(--ink-950);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 {
  margin-top: 22px;
}
.hero h1 .underline {
  position: relative;
  white-space: nowrap;
}
.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px; bottom: 4px;
  height: 14px;
  background: var(--green-500);
  z-index: -1;
  border-radius: 4px;
  transform: skew(-8deg) translateY(2px);
}
.hero h1 .accent { color: var(--purple-700); }
.hero p.lead {
  margin-top: 24px;
  font-size: 19px;
  color: var(--ink-500);
  max-width: 540px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 40px;
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
}
.hero-trust-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-500); }
.hero-trust-item .check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-500);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-trust-item .check svg { width: 10px; height: 10px; }

/* Hero visual — the animated dashboard */
.hero-visual {
  position: relative;
  height: 540px;
}
.hv-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  border: 1px solid var(--ink-100);
}
.hv-main {
  width: 100%; max-width: 480px;
  top: 0; right: 0;
  animation: float-main 8s ease-in-out infinite;
}
@keyframes float-main {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hv-main-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.hv-dot { width: 10px; height: 10px; border-radius: 50%; }
.hv-dot-g { background: var(--green-500); box-shadow: 0 0 0 3px rgba(164,201,57,0.2); }
.hv-main-title { font-weight: 600; font-size: 14px; color: var(--ink-800); }
.hv-main-sub { font-size: 12px; color: var(--ink-400); margin-left: auto; font-family: var(--font-mono); }
.hv-metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hv-metric {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
}
.hv-metric-label { font-size: 11px; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.hv-metric-value { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--ink-900); margin-top: 4px; }
.hv-metric-change { font-size: 11px; color: var(--green-700); font-weight: 600; margin-top: 2px; }
.hv-metric.purple { background: var(--purple-50); border-color: var(--purple-100); }
.hv-metric.purple .hv-metric-value { color: var(--purple-700); }
.hv-chart {
  margin-top: 14px;
  height: 110px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--purple-50), white);
  position: relative;
  overflow: hidden;
}

.hv-ticker {
  bottom: 64px; left: -20px;
  width: 260px;
  animation: float-ticker 7s ease-in-out infinite;
  animation-delay: -2s;
}
@keyframes float-ticker {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
.hv-ticker-row { display: flex; align-items: center; gap: 12px; padding: 6px 0; }
.hv-ticker-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hv-ticker-icon.g { background: var(--green-100); color: var(--green-700); }
.hv-ticker-icon.p { background: var(--purple-100); color: var(--purple-700); }
.hv-ticker-icon.b { background: #dbeafe; color: #1e40af; }
.hv-ticker-text { font-size: 12px; line-height: 1.35; }
.hv-ticker-text strong { color: var(--ink-900); display: block; }
.hv-ticker-text span { color: var(--ink-400); }

.hv-shield {
  bottom: -10px; right: 30px;
  width: 220px;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  color: white;
  animation: float-shield 9s ease-in-out infinite;
  animation-delay: -4s;
}
@keyframes float-shield {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-6px) rotate(-2deg); }
}
.hv-shield .hv-metric-label { color: rgba(255,255,255,0.6); }
.hv-shield .hv-shield-val { font-family: var(--font-display); font-weight: 700; font-size: 32px; }
.hv-shield .hv-shield-sub { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.hv-shield-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.15);
  display: grid; place-items: center;
  margin-bottom: 14px;
}

/* ------- Logos strip ------- */
.logos-strip {
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  padding: 40px 0;
  background: var(--ink-50);
}
.logos-strip-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-400);
  margin-bottom: 28px;
}
.logos-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}
.logo-cell {
  display: flex; align-items: center; justify-content: center;
  height: 36px;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity .2s, filter .2s;
}
.logo-cell:hover { opacity: 1; filter: none; }
.logo-cell svg, .logo-cell img { max-height: 100%; max-width: 100%; object-fit: contain; }
.logo-cell-text { font-family: var(--font-display); font-weight: 700; color: var(--ink-700); font-size: 16px; letter-spacing: -0.01em; }

/* ------- Stats ------- */
.stats {
  padding: 80px 0;
  background: var(--ink-950);
  color: white;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 10% 0%, rgba(91,45,140,0.4), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(164,201,57,0.15), transparent 60%);
  pointer-events: none;
}
.stats-inner { position: relative; display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; }
.stats-text h2 { color: white; }
.stats-text p { color: rgba(255,255,255,0.65); margin-top: 16px; font-size: 17px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 48px; }
.stat-item .stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  background: linear-gradient(135deg, white 30%, var(--green-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-item .stat-label { color: rgba(255,255,255,0.7); margin-top: 8px; font-size: 14.5px; }
.stat-item .stat-rule { width: 32px; height: 2px; background: var(--green-500); margin-top: 14px; }

/* ------- Services ------- */
.services-bg { background: var(--bg); }
.services-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  perspective: 1200px;
  height: 400px;
}
.svc-card-inner {
  position: relative;
  width: 100%; height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
  transform-style: preserve-3d;
}
.svc-card.flipped .svc-card-inner { transform: rotateY(180deg); }
.svc-face {
  position: absolute; inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  border: 1px solid var(--ink-200);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, border-color .2s;
  overflow: hidden;
}
.svc-card:hover .svc-face { box-shadow: var(--shadow-md); border-color: var(--purple-300); }
.svc-card:hover .svc-photo-img { transform: scale(1.05); }

.svc-face-front { padding: 0; }
.svc-photo {
  position: relative;
  height: 150px;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  overflow: hidden;
  flex-shrink: 0;
}
.svc-photo.alt {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
}
.svc-photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease-out;
}
.svc-photo-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(91, 45, 140, 0.55), rgba(91, 45, 140, 0.15) 60%, transparent),
    linear-gradient(180deg, transparent 40%, rgba(255, 255, 255, 0.94) 100%);
  pointer-events: none;
}
.svc-photo.alt .svc-photo-shade {
  background:
    linear-gradient(135deg, rgba(127, 163, 33, 0.55), rgba(127, 163, 33, 0.15) 60%, transparent),
    linear-gradient(180deg, transparent 40%, rgba(255, 255, 255, 0.94) 100%);
}
.svc-face-front .svc-icon {
  position: absolute;
  bottom: -22px; left: 22px;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: white;
  color: var(--purple-700);
  display: grid; place-items: center;
  box-shadow: 0 8px 24px -6px rgba(91, 45, 140, 0.4), 0 0 0 4px white;
  z-index: 2;
}
.svc-face-front .svc-icon.alt {
  color: var(--green-700);
  box-shadow: 0 8px 24px -6px rgba(127, 163, 33, 0.4), 0 0 0 4px white;
}
.svc-body {
  padding: 36px 26px 26px;
  display: flex; flex-direction: column;
  flex: 1;
}
.svc-face-front h3 { font-size: 19px; line-height: 1.2; }
.svc-face-front p { margin-top: 8px; color: var(--ink-500); font-size: 14px; line-height: 1.5; }
.svc-flip-btn {
  margin-top: 14px;
  align-self: flex-start;
  font-size: 13px;
  color: var(--purple-700);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--purple-50);
}
.svc-face-back {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, var(--purple-700), var(--purple-900));
  padding: 26px;
  color: white;
  border-color: var(--purple-800);
}
.svc-face-back h3 { color: white; font-size: 18px; }
.svc-face-back ul { list-style: none; padding: 0; margin: 18px 0 0; flex: 1; }
.svc-face-back li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  padding: 6px 0;
  display: flex; gap: 10px; align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.svc-face-back li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-500); flex-shrink: 0; margin-top: 7px;
}
.svc-flip-back {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
}

/* ------- Industries ------- */
.industries-bg { background: var(--ink-50); }
.industries-shell {
  display: grid; grid-template-columns: 320px 1fr; gap: 32px;
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-100);
}
.ind-list {
  display: flex; flex-direction: column; gap: 4px;
  max-height: 480px; overflow-y: auto;
  padding-right: 6px;
}
.ind-item {
  padding: 14px 16px;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-700);
  cursor: pointer;
  transition: all .15s;
  border: 1px solid transparent;
  text-align: left; width: 100%;
}
.ind-item:hover { background: var(--ink-50); }
.ind-item.active {
  background: var(--purple-50);
  color: var(--purple-700);
  border-color: var(--purple-100);
  font-weight: 600;
}
.ind-item .ind-num {
  width: 26px; height: 26px; border-radius: 6px;
  background: var(--ink-100);
  font-family: var(--font-mono);
  font-size: 11px;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-weight: 600;
  color: var(--ink-500);
}
.ind-item.active .ind-num { background: var(--purple-700); color: white; }
.ind-item .ind-arrow { margin-left: auto; opacity: 0; transition: opacity .15s, transform .15s; }
.ind-item.active .ind-arrow { opacity: 1; transform: translateX(2px); }
.ind-detail {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--purple-50), white 60%);
  display: grid; grid-template-rows: auto 1fr auto; gap: 24px;
  min-height: 480px;
}
.ind-detail-head { display: flex; gap: 20px; align-items: start; }
.ind-detail-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--purple-700);
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px -6px rgba(91, 45, 140, 0.5);
  flex-shrink: 0;
}
.ind-detail-head h3 { font-size: 26px; }
.ind-detail-head p { color: var(--ink-500); margin-top: 6px; font-size: 15px; }
.ind-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ind-point {
  padding: 16px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--ink-100);
}
.ind-point-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--green-100); color: var(--green-700);
  display: grid; place-items: center;
  margin-bottom: 10px;
}
.ind-point-title { font-size: 14px; font-weight: 600; color: var(--ink-900); }
.ind-point-desc { font-size: 13px; color: var(--ink-500); margin-top: 4px; line-height: 1.45; }
.ind-stats { display: flex; gap: 32px; padding-top: 20px; border-top: 1px dashed var(--ink-200); }
.ind-stat-num { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--purple-700); }
.ind-stat-label { font-size: 12px; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.06em; }

/* ------- Why Us ------- */
.why-bg { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.why-points { display: grid; gap: 18px; margin-top: 36px; }
.why-point {
  display: grid; grid-template-columns: 52px 1fr; gap: 18px;
  padding: 20px; border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  transition: border-color .2s, box-shadow .2s;
}
.why-point:hover { border-color: var(--purple-300); box-shadow: var(--shadow-sm); }
.why-point-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--purple-50);
  color: var(--purple-700);
  display: grid; place-items: center;
}
.why-point-icon.green { background: var(--green-50); color: var(--green-700); }
.why-point-title { font-size: 16px; font-weight: 700; color: var(--ink-900); }
.why-point-desc { font-size: 14px; color: var(--ink-500); margin-top: 6px; line-height: 1.5; }
.why-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-photo-overlay {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(-45deg, rgba(164,201,57,0.06) 0 1px, transparent 1px 24px);
}
.why-photo-label {
  position: absolute; left: 24px; top: 24px;
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.14em;
}
.why-photo-quote {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.45));
  color: white;
}
.why-photo-quote p {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
}
.why-photo-quote cite {
  font-style: normal;
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.why-photo-card {
  position: absolute;
  right: -28px; top: 60px;
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.why-photo-card-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(164,201,57,0.25);
  animation: pulse 2s ease-in-out infinite;
}
.why-photo-card-text strong { display: block; font-size: 13px; color: var(--ink-900); }
.why-photo-card-text span { font-size: 11px; color: var(--ink-500); font-family: var(--font-mono); }

/* ------- Pricing ------- */
.pricing-bg { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.plan {
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--ink-200);
  padding: 32px;
  background: white;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.plan:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.plan.featured {
  border-color: var(--purple-700);
  background: linear-gradient(180deg, var(--purple-700), var(--purple-900));
  color: white;
  box-shadow: var(--shadow-glow);
}
.plan.featured .plan-name { color: white; }
.plan-badge {
  position: absolute; top: -12px; left: 32px;
  background: var(--green-500);
  color: var(--ink-950);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.plan-name { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--purple-700); font-weight: 600; }
.plan-tagline { margin-top: 6px; font-size: 14px; color: var(--ink-500); }
.plan.featured .plan-tagline { color: rgba(255,255,255,0.7); }
.plan-price { display: flex; align-items: end; gap: 6px; margin-top: 24px; }
.plan-price-num { font-family: var(--font-display); font-weight: 700; font-size: 48px; line-height: 1; }
.plan-price-unit { font-size: 13px; color: var(--ink-500); padding-bottom: 6px; }
.plan.featured .plan-price-unit { color: rgba(255,255,255,0.65); }
.plan-from { font-size: 12px; color: var(--ink-400); margin-top: 6px; }
.plan.featured .plan-from { color: rgba(255,255,255,0.55); }
.plan ul { list-style: none; padding: 0; margin: 24px 0; flex: 1; display: grid; gap: 10px; }
.plan ul li { font-size: 14px; display: flex; gap: 10px; align-items: start; color: var(--ink-700); }
.plan.featured ul li { color: rgba(255,255,255,0.85); }
.plan ul li::before {
  content: ''; width: 16px; height: 16px;
  border-radius: 50%; background: var(--green-100); color: var(--green-700);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 6-6' stroke='%237fa321' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  flex-shrink: 0; margin-top: 2px;
}
.plan.featured ul li::before {
  background-color: rgba(164,201,57,0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 6-6' stroke='%23a4c939' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.plan-cta { margin-top: auto; }
.plan .btn { width: 100%; justify-content: center; }
.plan.featured .btn-primary { background: var(--green-500); color: var(--ink-950); }
.plan.featured .btn-primary:hover { background: var(--green-600); }

.pricing-toggle {
  margin: 0 auto;
  display: inline-flex;
  background: var(--ink-100);
  border-radius: 999px;
  padding: 4px;
  margin-top: 28px;
}
.pricing-toggle button {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-500);
  transition: all .15s;
}
.pricing-toggle button.active {
  background: white;
  color: var(--purple-700);
  box-shadow: var(--shadow-sm);
}
.pricing-toggle-wrap { text-align: center; }
.pricing-save {
  display: inline-block;
  font-size: 11px;
  background: var(--green-500);
  color: var(--ink-950);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  font-weight: 700;
}

/* ------- Testimonials ------- */
.testimonials-bg {
  background: linear-gradient(180deg, var(--bg), var(--ink-50));
}
.testimonials-shell {
  position: relative;
  margin-top: 56px;
}
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 calc(33.33% - 16px);
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  display: flex; flex-direction: column;
}
.testimonial-card.featured {
  background: linear-gradient(160deg, var(--purple-700), var(--purple-900));
  color: white;
  border-color: var(--purple-800);
}
.testimonial-stars { color: var(--green-500); display: flex; gap: 2px; }
.testimonial-quote {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--ink-900);
  flex: 1;
}
.testimonial-card.featured .testimonial-quote { color: white; }
.testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--ink-100); }
.testimonial-card.featured .testimonial-author { border-color: rgba(255,255,255,0.15); }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-700);
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.testimonial-card.featured .testimonial-avatar {
  background: rgba(255,255,255,0.15);
  color: white;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--ink-900); }
.testimonial-card.featured .testimonial-name { color: white; }
.testimonial-role { font-size: 12.5px; color: var(--ink-500); }
.testimonial-card.featured .testimonial-role { color: rgba(255,255,255,0.65); }
.testimonial-controls {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px;
}
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink-200);
  cursor: pointer;
  transition: all .2s;
}
.testimonial-dot.active { background: var(--purple-700); width: 28px; border-radius: 4px; }
.testimonial-arrows { display: flex; gap: 8px; }
.testimonial-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-200);
  display: grid; place-items: center;
  color: var(--ink-700);
  transition: all .2s;
}
.testimonial-arrow:hover { border-color: var(--purple-700); color: var(--purple-700); background: var(--purple-50); }

/* ------- FAQ ------- */
.faq-bg { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color: var(--purple-700); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink-900);
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--purple-50);
  color: var(--purple-700);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .2s, background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--purple-700); color: white; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--ink-500);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ------- Quote Form ------- */
.quote-bg {
  background: var(--ink-950);
  color: white;
  position: relative;
  overflow: hidden;
}
.quote-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 20% 30%, rgba(91,45,140,0.4), transparent 60%),
    radial-gradient(600px 400px at 80% 80%, rgba(164,201,57,0.18), transparent 60%);
}
.quote-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px;
  align-items: start;
}
.quote-text h2 { color: white; }
.quote-text p.lead { color: rgba(255,255,255,0.7); font-size: 17px; margin-top: 18px; }
.quote-perks { margin-top: 32px; display: grid; gap: 14px; }
.quote-perk { display: flex; gap: 14px; align-items: start; }
.quote-perk-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(164,201,57,0.15); color: var(--green-500);
  display: grid; place-items: center; flex-shrink: 0;
}
.quote-perk strong { display: block; font-size: 14.5px; }
.quote-perk span { font-size: 13px; color: rgba(255,255,255,0.6); }
.quote-card {
  background: white;
  color: var(--ink-900);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.quote-steps { display: flex; gap: 8px; margin-bottom: 28px; }
.quote-step {
  flex: 1;
  height: 4px;
  background: var(--ink-100);
  border-radius: 999px;
  transition: background .3s;
}
.quote-step.done { background: var(--purple-700); }
.quote-step.active { background: var(--green-500); }
.quote-step-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.quote-step-title { font-size: 22px; font-family: var(--font-display); font-weight: 700; }
.quote-field { margin-top: 18px; }
.quote-field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-700); margin-bottom: 8px; }
.quote-field input, .quote-field textarea, .quote-field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--ink-200);
  font-family: inherit;
  font-size: 15px;
  background: white;
  transition: border-color .15s, box-shadow .15s;
}
.quote-field input:focus, .quote-field textarea:focus, .quote-field select:focus {
  outline: none;
  border-color: var(--purple-700);
  box-shadow: 0 0 0 3px rgba(91,45,140,0.12);
}
.quote-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 6px; }
.quote-choice {
  padding: 16px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius);
  background: white;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 4px;
  text-align: left;
  transition: all .15s;
}
.quote-choice:hover { border-color: var(--purple-300); }
.quote-choice.selected {
  border-color: var(--purple-700);
  background: var(--purple-50);
  box-shadow: 0 0 0 3px rgba(91,45,140,0.08);
}
.quote-choice-title { font-size: 14px; font-weight: 700; color: var(--ink-900); }
.quote-choice-sub { font-size: 12px; color: var(--ink-500); }
.quote-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 6px; }
.quote-svc-pill {
  padding: 10px 14px;
  border: 1.5px solid var(--ink-200);
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  text-align: left;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  background: white;
  transition: all .15s;
}
.quote-svc-pill:hover { border-color: var(--purple-300); }
.quote-svc-pill.selected {
  border-color: var(--purple-700);
  background: var(--purple-50);
  color: var(--purple-700);
}
.quote-svc-pill .check-box {
  width: 18px; height: 18px;
  border-radius: 5px;
  border: 1.5px solid var(--ink-300);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.quote-svc-pill.selected .check-box { border-color: var(--purple-700); background: var(--purple-700); color: white; }
.quote-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--ink-100); }
.quote-back {
  font-size: 14px;
  color: var(--ink-500);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.quote-back:hover { color: var(--purple-700); }
.quote-back:disabled { opacity: 0.4; cursor: not-allowed; }
.quote-summary { display: grid; gap: 14px; }
.quote-summary-row {
  display: flex; justify-content: space-between; align-items: start;
  padding: 14px 0;
  border-bottom: 1px dashed var(--ink-200);
  font-size: 14px;
}
.quote-summary-row:last-child { border-bottom: none; }
.quote-summary-label { color: var(--ink-500); flex-shrink: 0; }
.quote-summary-value { color: var(--ink-900); font-weight: 600; text-align: right; }
.quote-success {
  text-align: center;
  padding: 24px 0;
}
.quote-success-icon {
  width: 80px; height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--green-100); color: var(--green-700);
  display: grid; place-items: center;
}
.quote-success h3 { margin-top: 20px; font-size: 26px; }
.quote-success p { color: var(--ink-500); margin-top: 10px; font-size: 15px; }

/* ------- Footer ------- */
.footer {
  background: var(--ink-950);
  color: white;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-500), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand img {
  height: 44px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.6;
}
.footer-contact { margin-top: 24px; display: grid; gap: 12px; }
.footer-contact-row { display: flex; gap: 12px; align-items: start; font-size: 13.5px; }
.footer-contact-row svg { color: var(--green-500); margin-top: 2px; flex-shrink: 0; }
.footer-contact-row a, .footer-contact-row span { color: rgba(255,255,255,0.8); }
.footer-contact-row a:hover { color: var(--green-500); }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.75); transition: color .15s; }
.footer-col a:hover { color: var(--green-500); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom-links { display: flex; gap: 20px; }

/* ------- Chat Widget ------- */
.chat-widget {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 100;
}
.chat-btn {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--purple-700);
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -6px rgba(91,45,140,0.6);
  transition: transform .2s, background .2s;
  position: relative;
}
.chat-btn:hover { transform: scale(1.05); background: var(--purple-800); }
.chat-btn-badge {
  position: absolute; top: -2px; right: -2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-500);
  color: var(--ink-950);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  border: 3px solid var(--bg);
}
.chat-panel {
  position: absolute;
  bottom: 76px; right: 0;
  width: 360px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-200);
  overflow: hidden;
  transform-origin: bottom right;
  animation: chat-pop .25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes chat-pop {
  from { opacity: 0; transform: scale(0.9) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.chat-head {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  color: white;
  padding: 20px;
  display: flex; align-items: center; gap: 14px;
}
.chat-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-500);
  color: var(--ink-950);
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--font-display);
  position: relative;
}
.chat-avatar::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 12px; height: 12px;
  border-radius: 50%; background: var(--green-500);
  border: 2px solid var(--purple-700);
}
.chat-head h4 { font-size: 15px; margin: 0; color: white; }
.chat-head p { font-size: 12px; color: rgba(255,255,255,0.65); margin: 2px 0 0; }
.chat-close {
  margin-left: auto;
  color: rgba(255,255,255,0.7);
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  transition: background .15s;
}
.chat-close:hover { background: rgba(255,255,255,0.1); color: white; }
.chat-body {
  padding: 20px;
  height: 320px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 12px;
  background: var(--ink-50);
}
.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.4;
}
.chat-msg.bot {
  background: white;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
}
.chat-msg.user {
  background: var(--purple-700);
  color: white;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-msg.typing { display: flex; gap: 4px; padding: 14px; }
.chat-msg.typing span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--ink-300);
  animation: typing 1.4s ease-in-out infinite;
}
.chat-msg.typing span:nth-child(2) { animation-delay: .15s; }
.chat-msg.typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.6; }
  30% { transform: translateY(-4px); opacity: 1; }
}
.chat-suggestions { display: flex; flex-wrap: wrap; gap: 6px; align-self: flex-start; margin-top: 4px; }
.chat-sugg {
  background: white;
  border: 1px solid var(--purple-100);
  color: var(--purple-700);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
}
.chat-sugg:hover { background: var(--purple-50); }
.chat-input {
  border-top: 1px solid var(--ink-100);
  background: white;
  padding: 12px;
  display: flex; gap: 8px;
}
.chat-input input {
  flex: 1;
  border: none;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: var(--ink-50);
  border-radius: 10px;
}
.chat-input button {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--purple-700);
  color: white;
  display: grid; place-items: center;
}

/* ------- Megamenu ------- */
.nav-link-trigger { position: relative; }
.megamenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: 780px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-100);
  padding: 28px;
  z-index: 100;
  animation: mm-pop .18s ease-out;
}
@keyframes mm-pop {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.megamenu::before {
  content: ''; position: absolute; top: -7px; left: 28px;
  transform: rotate(45deg);
  width: 14px; height: 14px; background: white;
  border-left: 1px solid var(--ink-100); border-top: 1px solid var(--ink-100);
}
.mm-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--ink-100);
}
.mm-head h4 {
  font-size: 13px; font-family: var(--font-mono); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-500); margin: 0;
}
.mm-head a {
  font-size: 13px; color: var(--purple-700); font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
}
.mm-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.mm-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-align: left;
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 500;
  transition: background .12s, color .12s;
  background: transparent;
  width: 100%;
}
.mm-item:hover { background: var(--purple-50); color: var(--purple-700); }
.mm-item-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--purple-50);
  color: var(--purple-700);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background .12s, color .12s;
}
.mm-item:hover .mm-item-icon { background: var(--green-100); color: var(--green-700); }
.mm-item-text { display: flex; flex-direction: column; }
.mm-item-title { font-size: 14px; font-weight: 600; color: var(--ink-900); }
.mm-item-sub { font-size: 12px; color: var(--ink-500); font-weight: 400; margin-top: 1px; }
.mm-item:hover .mm-item-title { color: var(--purple-700); }
.mm-footer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--ink-100);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.mm-footer-text {
  color: var(--ink-500);
}
.mm-footer-text strong { color: var(--ink-900); }

/* ------- Approach ------- */
.approach-bg { background: var(--ink-50); }
.approach-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.approach-step {
  padding: 32px 24px 32px 0;
  position: relative;
  border-right: 1px dashed var(--ink-200);
}
.approach-step:last-child { border-right: none; }
.approach-step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-100);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  letter-spacing: 0.06em;
}
.approach-step h3 {
  font-size: 22px;
  margin-top: 18px;
}
.approach-step p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--ink-500);
  padding-right: 16px;
  line-height: 1.55;
}
.approach-step-meta {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--purple-700);
  font-weight: 600;
  background: var(--purple-50);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ------- Promise ------- */
.promise-bg {
  background: var(--bg);
}
.promise-shell {
  margin-top: 56px;
  background: linear-gradient(135deg, var(--purple-900), var(--purple-700) 60%, var(--purple-800));
  border-radius: var(--radius-xl);
  padding: 56px;
  color: white;
  position: relative;
  overflow: hidden;
}
.promise-shell::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(500px 300px at 90% 0%, rgba(164,201,57,0.25), transparent 60%),
    radial-gradient(500px 300px at 0% 100%, rgba(164,201,57,0.12), transparent 60%);
  pointer-events: none;
}
.promise-head { position: relative; max-width: 640px; margin-bottom: 48px; }
.promise-head .eyebrow { color: var(--green-400); }
.promise-head .eyebrow::before { background: var(--green-400); }
.promise-head h2 { color: white; margin-top: 14px; }
.promise-head p { color: rgba(255,255,255,0.7); font-size: 17px; margin-top: 14px; }
.promise-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.promise-item {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
}
.promise-item-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  background: linear-gradient(135deg, white, var(--green-400));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
}
.promise-item-title {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
}
.promise-item-desc {
  margin-top: 6px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ------- New Pricing ($4,500 anchor) ------- */
.pricing2-bg { background: var(--bg); }
.pricing2-shell {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-md);
}
.pricing2-left {
  background: linear-gradient(160deg, var(--purple-900), var(--purple-700));
  color: white;
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.pricing2-left::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 100% 0%, rgba(164,201,57,0.2), transparent 60%);
}
.pricing2-left-inner { position: relative; }
.pricing2-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(164,201,57,0.2);
  color: var(--green-400);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.pricing2-price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 14px;
}
.pricing2-amt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, white, var(--green-400));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.pricing2-per { font-size: 18px; color: rgba(255,255,255,0.7); }
.pricing2-headline {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  max-width: 440px;
}
.pricing2-blurb {
  margin-top: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  max-width: 440px;
}
.pricing2-bullets {
  margin-top: 28px;
  display: grid; gap: 14px;
}
.pricing2-bullet {
  display: flex; align-items: start; gap: 12px;
  font-size: 14.5px;
}
.pricing2-bullet svg { color: var(--green-400); margin-top: 2px; flex-shrink: 0; }
.pricing2-cta { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.pricing2-right {
  background: white;
  padding: 56px;
  display: flex; flex-direction: column;
}
.pricing2-right-head {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-700);
}
.pricing2-right h3 {
  margin-top: 10px;
  font-size: 26px;
}
.pricing2-right > p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--ink-500);
}
.pricing2-includes {
  margin-top: 28px;
  display: grid; gap: 16px;
}
.pricing2-inc {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--ink-100);
  background: var(--ink-50);
  transition: border-color .15s, background .15s;
}
.pricing2-inc:hover { border-color: var(--purple-300); background: white; }
.pricing2-inc-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--purple-700);
  color: white;
  display: grid; place-items: center;
}
.pricing2-inc-title { font-size: 14.5px; font-weight: 700; color: var(--ink-900); }
.pricing2-inc-desc { font-size: 13px; color: var(--ink-500); margin-top: 2px; line-height: 1.45; }
.pricing2-foot {
  margin-top: 28px;
  padding: 16px 18px;
  background: var(--green-50);
  border: 1px dashed var(--green-100);
  border-radius: var(--radius);
  font-size: 13.5px;
  color: var(--ink-700);
  display: flex; align-items: center; gap: 12px;
}
.pricing2-foot svg { color: var(--green-700); flex-shrink: 0; }

/* ------- Schedule a call ------- */
.schedule-bg { background: var(--ink-50); }
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.schedule-text h2 { margin-top: 14px; }
.schedule-text p.lead {
  margin-top: 18px; font-size: 17px; color: var(--ink-500);
}
.schedule-features {
  margin-top: 28px;
  display: grid; gap: 12px;
}
.schedule-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px;
  color: var(--ink-700);
}
.schedule-feature .dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.schedule-host {
  margin-top: 28px;
  padding: 18px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--ink-100);
  display: flex; align-items: center; gap: 16px;
}
.schedule-host-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-700);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.schedule-host-name { font-size: 14px; font-weight: 700; color: var(--ink-900); }
.schedule-host-role { font-size: 12.5px; color: var(--ink-500); }

.booker {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-md);
  padding: 32px;
}
.booker-head { display: flex; justify-content: space-between; align-items: start; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--ink-100); }
.booker-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.booker-meta { display: flex; gap: 14px; margin-top: 8px; flex-wrap: wrap; font-size: 12.5px; color: var(--ink-500); }
.booker-meta span { display: flex; align-items: center; gap: 6px; }
.booker-tz {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-400);
  padding: 5px 10px;
  background: var(--ink-50);
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.booker-body { padding-top: 24px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; }
.booker-month {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.booker-month-label { font-size: 14px; font-weight: 700; }
.booker-month-nav { display: flex; gap: 4px; }
.booker-month-btn {
  width: 30px; height: 30px;
  border-radius: 8px;
  border: 1px solid var(--ink-200);
  color: var(--ink-700);
  display: grid; place-items: center;
  transition: all .15s;
}
.booker-month-btn:hover:not(:disabled) { border-color: var(--purple-700); color: var(--purple-700); }
.booker-month-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.booker-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.booker-dow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-400);
  text-align: center;
  padding: 8px 0;
  font-weight: 600;
}
.booker-day {
  aspect-ratio: 1;
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-700);
  transition: all .12s;
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
}
.booker-day:disabled {
  color: var(--ink-300);
  cursor: not-allowed;
}
.booker-day.available { color: var(--purple-700); font-weight: 600; background: var(--purple-50); }
.booker-day.available:hover { background: var(--purple-100); }
.booker-day.selected { background: var(--purple-700); color: white; border-color: var(--purple-700); }
.booker-day.today { border-color: var(--green-500); }
.booker-slots-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 12px;
}
.booker-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 4px;
}
.booker-slot {
  padding: 10px 12px;
  border: 1.5px solid var(--ink-200);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  background: white;
  transition: all .12s;
}
.booker-slot:hover { border-color: var(--purple-700); color: var(--purple-700); }
.booker-slot.selected { background: var(--purple-700); border-color: var(--purple-700); color: white; }
.booker-confirm {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 18px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.booker-confirm-text { font-size: 14px; color: var(--ink-900); font-weight: 600; }
.booker-confirm-text span { display: block; font-size: 12px; color: var(--ink-500); font-weight: 400; margin-top: 2px; }
.booker-empty {
  font-size: 13px;
  color: var(--ink-400);
  text-align: center;
  padding: 60px 20px;
}

/* ------- Insights ------- */
.insights-bg { background: var(--bg); }
.insights-head {
  display: flex; justify-content: space-between; align-items: end; gap: 40px;
  margin-bottom: 48px;
}
.insights-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.insight-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.insight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--ink-200); }
.insight-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  position: relative;
  overflow: hidden;
}
.insight-thumb::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 16px);
}
.insight-thumb.alt { background: linear-gradient(135deg, var(--green-600), var(--purple-700)); }
.insight-thumb.alt2 { background: linear-gradient(135deg, var(--ink-900), var(--purple-800)); }
.insight-thumb-icon {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.85);
}
.insight-thumb-icon svg { width: 56px; height: 56px; }
.insight-card.featured .insight-thumb { aspect-ratio: 16/10; }
.insight-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--purple-700);
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.insight-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.insight-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px;
  color: var(--ink-400);
  margin-bottom: 12px;
  font-family: var(--font-mono);
}
.insight-meta::before {
  content: ''; width: 24px; height: 1.5px; background: var(--green-500);
}
.insight-card h3 {
  font-size: 19px;
  line-height: 1.25;
}
.insight-card.featured h3 { font-size: 24px; }
.insight-card p {
  margin-top: 10px;
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}
.insight-link {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-700);
  display: inline-flex; align-items: center; gap: 6px;
  align-self: start;
}
.insight-link svg { transition: transform .2s; }
.insight-card:hover .insight-link svg { transform: translateX(3px); }

/* ------- Hero award badge ------- */
.hero-award {
  position: absolute;
  right: -12px;
  top: 24px;
  z-index: 3;
  background: white;
  border-radius: 14px;
  padding: 12px 14px 12px 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-100);
  display: flex; align-items: center; gap: 12px;
  transform: rotate(2deg);
}
.hero-award-medal {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  display: grid; place-items: center;
  color: white;
  flex-shrink: 0;
  position: relative;
}
.hero-award-medal::before, .hero-award-medal::after {
  content: '';
  position: absolute;
  width: 4px; height: 14px;
  background: var(--purple-700);
  bottom: -6px;
  border-radius: 1px;
}
.hero-award-medal::before { transform: rotate(-18deg) translateX(-6px); }
.hero-award-medal::after { transform: rotate(18deg) translateX(6px); }
.hero-award-text { font-size: 11px; line-height: 1.25; }
.hero-award-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-900);
}
.hero-award-text span {
  color: var(--ink-500);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ------- Dual phone in nav ------- */
.nav-phones {
  display: flex; align-items: center; gap: 18px;
  padding-right: 4px;
}
.nav-phone-group { display: flex; flex-direction: column; line-height: 1.15; }
.nav-phone-group-label {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-400);
  font-weight: 600;
}
.nav-phone-group-num {
  font-family: var(--font-code);
  font-size: 13px;
  color: var(--ink-900);
  font-weight: 600;
  margin-top: 1px;
}
.nav-phone-group-num.live {
  color: var(--purple-700);
  display: flex; align-items: center; gap: 7px;
}
.nav-phone-group-num.live::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(164, 201, 57, 0.25);
  animation: pulse 2s ease-in-out infinite;
}

/* ------- Client Approved (CSAT) ------- */
.csat-bg { background: var(--bg); padding: 80px 0; border-top: 1px solid var(--ink-100); }
.csat-shell {
  background: linear-gradient(160deg, #fff 0%, var(--ink-50) 100%);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.csat-shell::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(164,201,57,0.15), transparent 70%);
  pointer-events: none;
}
.csat-text h2 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); }
.csat-text p { color: var(--ink-500); margin-top: 14px; font-size: 15.5px; line-height: 1.55; max-width: 360px; }
.csat-text .sigil {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  font-size: 12.5px;
  color: var(--green-700);
  font-weight: 600;
}
.csat-text .sigil .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(164,201,57,0.25);
}
.csat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.csat-item {
  padding: 0 28px;
  border-right: 1px solid var(--ink-200);
  text-align: center;
}
.csat-item:first-child { padding-left: 0; }
.csat-item:last-child { padding-right: 0; border-right: none; }
.csat-item .csat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 3.6vw, 3rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--purple-700), var(--green-700));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.csat-item .csat-bar {
  width: 32px; height: 2px;
  background: var(--green-500);
  margin: 14px auto 14px;
}
.csat-item .csat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.3;
}
.csat-item .csat-sub {
  font-family: var(--font-code);
  font-size: 10.5px;
  color: var(--ink-400);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ------- Service Areas ------- */
.areas-bg { background: var(--ink-50); }
.areas-head {
  display: flex; justify-content: space-between; align-items: end; gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.areas-shell {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--ink-100);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.areas-left {
  padding: 44px;
  border-right: 1px solid var(--ink-100);
}
.areas-left h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.areas-left p {
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.5;
  max-width: 380px;
}
.areas-hq {
  margin-top: 28px;
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  color: white;
  display: flex; align-items: center; gap: 16px;
}
.areas-hq-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(164, 201, 57, 0.2);
  color: var(--green-400);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.areas-hq-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
}
.areas-hq-name { font-weight: 700; font-size: 15px; margin-top: 2px; }
.areas-hq-meta { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; font-family: var(--font-code); }
.areas-stats {
  margin-top: 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.areas-stat-item .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--purple-700);
}
.areas-stat-item .label {
  font-size: 11px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
  margin-top: 4px;
}
.areas-right {
  padding: 44px;
  background:
    radial-gradient(600px 400px at 50% 0%, var(--purple-50), transparent 60%),
    white;
}
.areas-right-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-700);
  font-weight: 600;
  margin-bottom: 18px;
}
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.area-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--ink-100);
  background: white;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-700);
  cursor: pointer;
  transition: all .15s;
  text-align: left;
  width: 100%;
}
.area-chip:hover {
  border-color: var(--purple-300);
  background: var(--purple-50);
  color: var(--purple-700);
}
.area-chip .area-pin {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--ink-100);
  color: var(--ink-500);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background .15s, color .15s;
}
.area-chip:hover .area-pin { background: var(--green-100); color: var(--green-700); }
.area-chip .area-time {
  margin-left: auto;
  font-family: var(--font-code);
  font-size: 10px;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.areas-foot {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed var(--ink-200);
  font-size: 13px;
  color: var(--ink-500);
  display: flex; align-items: center; gap: 10px;
}
.areas-foot strong { color: var(--ink-900); }

/* ------- Price Estimator ------- */
.est-bg { background: var(--bg); }
.est-shell {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-100);
}
.est-controls {
  padding: 44px;
  background: white;
}
.est-controls h3 { font-size: 22px; margin-bottom: 6px; }
.est-controls > p { font-size: 14px; color: var(--ink-500); line-height: 1.5; max-width: 380px; }
.est-group { margin-top: 26px; }
.est-group-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  font-weight: 600;
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.est-group-label .v {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--purple-700);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.est-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--ink-100);
  outline: none;
}
.est-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--purple-700);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(91,45,140,0.4);
  transition: transform .15s;
}
.est-slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
.est-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--purple-700);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(91,45,140,0.4);
}
.est-seg {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  background: var(--ink-100);
  border-radius: 10px;
  padding: 4px;
}
.est-seg button {
  padding: 9px 8px;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-500);
  transition: all .15s;
  background: transparent;
}
.est-seg button.active {
  background: white;
  color: var(--purple-700);
  box-shadow: var(--shadow-sm);
}
.est-services {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.est-svc {
  padding: 10px 12px;
  border: 1.5px solid var(--ink-200);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  display: flex; align-items: center; gap: 9px;
  background: white;
  cursor: pointer;
  transition: all .15s;
  text-align: left;
  color: var(--ink-700);
}
.est-svc:hover { border-color: var(--purple-300); }
.est-svc.selected {
  border-color: var(--purple-700);
  background: var(--purple-50);
  color: var(--purple-700);
}
.est-svc .box {
  width: 16px; height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--ink-300);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.est-svc.selected .box { background: var(--purple-700); border-color: var(--purple-700); color: white; }
.est-svc .req {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--green-700);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.est-result {
  background: linear-gradient(160deg, var(--purple-900), var(--purple-700) 70%);
  color: white;
  padding: 44px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.est-result::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(500px 320px at 100% 0%, rgba(164,201,57,0.22), transparent 60%);
  pointer-events: none;
}
.est-result-inner { position: relative; }
.est-result-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-400);
  font-weight: 600;
}
.est-result-headline {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: white;
  max-width: 420px;
  line-height: 1.25;
}
.est-result-range {
  margin-top: 28px;
  display: flex; align-items: baseline; gap: 4px;
  flex-wrap: wrap;
}
.est-result-range .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 4.5vw, 3.8rem);
  line-height: 1;
  background: linear-gradient(135deg, white, var(--green-400));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  transition: opacity .2s;
}
.est-result-range .sep {
  color: rgba(255,255,255,0.6);
  font-size: 22px;
  font-weight: 400;
  margin: 0 6px;
}
.est-result-range .per {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding-bottom: 6px;
}
.est-result-meta {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; gap: 10px;
}
.est-result-meta::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(164,201,57,0.25);
  animation: pulse 2s ease-in-out infinite;
}
.est-result-breakdown {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: grid; gap: 10px;
}
.est-bd-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.est-bd-label { color: rgba(255,255,255,0.7); }
.est-bd-val { font-family: var(--font-code); color: white; font-weight: 600; }
.est-result-cta {
  position: relative;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; flex-wrap: wrap; gap: 12px;
}
.est-disclaimer {
  position: relative;
  margin-top: 18px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  font-family: var(--font-mono);
}

/* ------- Case Studies ------- */
.cases-bg { background: var(--bg); }
.cases-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 48px; flex-wrap: wrap; }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.case-card {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-300);
}
.case-thumb {
  height: 160px;
  position: relative;
  padding: 22px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.case-thumb.purple { background: linear-gradient(160deg, var(--purple-700), var(--purple-900)); color: white; }
.case-thumb.green { background: linear-gradient(160deg, var(--green-500), var(--green-700)); color: var(--ink-950); }
.case-thumb.dark { background: linear-gradient(160deg, var(--ink-800), var(--ink-950)); color: white; }
.case-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 16px);
  pointer-events: none;
}
.case-thumb-tag {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: flex-start;
}
.case-thumb.green .case-thumb-tag { background: rgba(0,0,0,0.15); }
.case-thumb-headline {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.case-body {
  padding: 22px;
  display: flex; flex-direction: column;
  flex: 1;
}
.case-body h3 {
  font-size: 17px;
  line-height: 1.25;
}
.case-body p {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--ink-500);
  line-height: 1.5;
  flex: 1;
}
.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 14px 0;
  margin: 18px 0 16px;
  border-top: 1px dashed var(--ink-200);
  border-bottom: 1px dashed var(--ink-200);
}
.case-metric .case-metric-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--purple-700);
  letter-spacing: -0.01em;
}
.case-metric .case-metric-label {
  font-size: 10.5px;
  color: var(--ink-500);
  margin-top: 2px;
  line-height: 1.25;
}
.case-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-700);
  display: inline-flex; align-items: center; gap: 6px;
}
.case-link svg { transition: transform .2s; }
.case-card:hover .case-link svg { transform: translateX(3px); }

/* ------- Community Callout ------- */
.community-bg { background: var(--ink-50); padding: 80px 0; }
.community-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-sm);
}
.community-text {
  padding: 48px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.community-text h3 { font-size: 26px; margin-top: 12px; }
.community-text > p {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.55;
  max-width: 440px;
}
.community-pillars {
  margin-top: 28px;
  display: grid; gap: 14px;
}
.community-pillar {
  display: flex; gap: 14px; align-items: start;
}
.community-pillar-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--green-100);
  color: var(--green-700);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.community-pillar strong { display: block; font-size: 14.5px; color: var(--ink-900); }
.community-pillar span { font-size: 13px; color: var(--ink-500); line-height: 1.45; }
.community-art {
  background:
    radial-gradient(800px 600px at 100% 100%, rgba(164,201,57,0.18), transparent 60%),
    linear-gradient(160deg, var(--purple-700), var(--purple-900));
  position: relative;
  min-height: 380px;
  overflow: hidden;
  padding: 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: white;
}
.community-art::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(60deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 28px);
}
.community-art-label {
  position: relative;
  font-family: var(--font-code);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
}
.community-art-quote {
  position: relative;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
}
.community-art-numbers {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.community-art-numbers .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  background: linear-gradient(135deg, white, var(--green-400));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}
.community-art-numbers .label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  line-height: 1.3;
}

/* ------- Tech Stack ------- */
.stack-bg { background: var(--bg); border-top: 1px solid var(--ink-100); }
.stack-head {
  display: flex; justify-content: space-between; align-items: end; gap: 40px;
  margin-bottom: 56px; flex-wrap: wrap;
}
.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stack-cat {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  background: white;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.stack-cat:hover { border-color: var(--purple-300); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stack-cat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--purple-50);
  color: var(--purple-700);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.stack-cat-icon.green { background: var(--green-50); color: var(--green-700); }
.stack-cat-name {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  font-weight: 600;
}
.stack-cat-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin-top: 4px;
  line-height: 1.2;
}
.stack-cat p {
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 10px;
  line-height: 1.45;
}
.stack-tools {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--ink-200);
  display: flex; flex-wrap: wrap; gap: 6px;
}
.stack-tool {
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--ink-50);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-700);
  border: 1px solid var(--ink-100);
  font-weight: 500;
}
.stack-tool.featured {
  background: var(--purple-50);
  color: var(--purple-700);
  border-color: var(--purple-100);
  font-weight: 600;
}
.stack-foot {
  margin-top: 36px;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--ink-900), var(--ink-950));
  color: white;
  border-radius: var(--radius-lg);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stack-foot-text { font-size: 14px; line-height: 1.5; max-width: 620px; }
.stack-foot-text strong { color: var(--green-400); }
.stack-foot-cert {
  display: flex; gap: 20px;
  flex-wrap: wrap;
}
.stack-foot-cert-item {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 10px;
  border-radius: 6px;
}

/* ------- Comparison Matrix ------- */
.compare-bg { background: var(--ink-50); }
.compare-shell {
  margin-top: 48px;
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--ink-100);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--ink-100);
}
.compare-row:last-child { border-bottom: none; }
.compare-row.head {
  background: var(--ink-50);
  border-bottom: 2px solid var(--ink-200);
}
.compare-row.head .compare-cell { padding: 24px 18px; }
.compare-cell {
  padding: 18px;
  font-size: 13.5px;
  display: flex; align-items: center;
  border-right: 1px solid var(--ink-100);
}
.compare-cell:last-child { border-right: none; }
.compare-cell.label {
  font-weight: 600;
  color: var(--ink-900);
  background: var(--ink-50);
  font-size: 14px;
}
.compare-row:not(.head) .compare-cell:not(.label) {
  text-align: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.compare-col-head {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 4px;
}
.compare-col-head.featured { color: var(--purple-700); }
.compare-col-head-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
}
.compare-col-head.featured .compare-col-head-name { color: var(--purple-700); }
.compare-col-head-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.compare-row.head .compare-cell.featured-col {
  background: var(--purple-50);
}
.compare-cell.featured-col {
  background: rgba(91, 45, 140, 0.03);
  border-left: 1px solid var(--purple-100);
  border-right: 1px solid var(--purple-100);
}
.compare-yes {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: grid; place-items: center;
}
.compare-no {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--ink-100);
  color: var(--ink-400);
  display: grid; place-items: center;
}
.compare-partial {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--warn);
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
}
.compare-cell-note {
  font-size: 11px;
  color: var(--ink-500);
  font-family: var(--font-mono);
  text-align: center;
}

/* ------- Compliance Frameworks ------- */
.comp-bg { background: var(--bg); }
.comp-shell {
  margin-top: 48px;
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.comp-tabs {
  display: flex;
  background: var(--ink-50);
  border-bottom: 1px solid var(--ink-100);
  overflow-x: auto;
}
.comp-tab {
  padding: 18px 24px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-500);
  border-bottom: 3px solid transparent;
  transition: all .15s;
  white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
}
.comp-tab:hover { color: var(--purple-700); }
.comp-tab.active {
  color: var(--purple-700);
  background: white;
  border-bottom-color: var(--purple-700);
}
.comp-tab-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  background: var(--ink-100);
  color: var(--ink-500);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
}
.comp-tab.active .comp-tab-badge { background: var(--green-100); color: var(--green-700); }
.comp-body {
  padding: 44px;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 56px;
}
.comp-left h3 {
  font-size: 26px;
  margin-bottom: 12px;
}
.comp-left p {
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.55;
  margin-bottom: 18px;
}
.comp-left .comp-meta {
  display: grid; gap: 10px;
  margin-top: 22px;
  padding: 18px;
  background: var(--ink-50);
  border-radius: var(--radius);
  border: 1px solid var(--ink-100);
}
.comp-meta-row { display: flex; justify-content: space-between; font-size: 13px; }
.comp-meta-row .label { color: var(--ink-500); }
.comp-meta-row .val { color: var(--ink-900); font-weight: 600; font-family: var(--font-mono); font-size: 12.5px; }
.comp-right-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-700);
  font-weight: 600;
  margin-bottom: 16px;
}
.comp-checklist { display: grid; gap: 10px; }
.comp-check-item {
  display: grid; grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--ink-100);
  background: white;
  transition: border-color .15s, transform .15s, box-shadow .15s;
  align-items: start;
}
.comp-check-item:hover {
  border-color: var(--purple-300);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.comp-check-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: grid; place-items: center;
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}
.comp-check-icon.purple {
  background: linear-gradient(135deg, var(--purple-50), #f0e6f9);
  color: var(--purple-700);
  border: 1px solid var(--purple-100);
}
.comp-check-icon.green {
  background: linear-gradient(135deg, var(--green-50), #ecf5cf);
  color: var(--green-700);
  border: 1px solid var(--green-100);
}
.comp-check-icon::after {
  content: '';
  position: absolute;
  bottom: -3px; right: -3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green-500);
  border: 2px solid white;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 6-6' stroke='%230e0a1a' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 8px;
}
.comp-check-title { font-size: 14.5px; font-weight: 700; color: var(--ink-900); }
.comp-check-desc { font-size: 12.5px; color: var(--ink-500); margin-top: 4px; line-height: 1.45; }
.comp-check-meta {
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px;
  color: var(--green-700);
  font-weight: 600;
}
.comp-check-meta svg { color: var(--green-700); }

/* ------- Security Scorecard Quiz ------- */
.quiz-bg {
  background:
    radial-gradient(800px 500px at 100% 0%, rgba(91,45,140,0.08), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(164,201,57,0.06), transparent 60%),
    var(--ink-50);
}
.quiz-shell {
  margin-top: 48px;
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
  max-width: 820px;
  margin-left: auto; margin-right: auto;
}
.quiz-progress {
  display: flex; gap: 6px;
  margin-bottom: 24px;
}
.quiz-progress-step {
  flex: 1;
  height: 4px;
  background: var(--ink-100);
  border-radius: 999px;
}
.quiz-progress-step.done { background: var(--green-500); }
.quiz-progress-step.active { background: var(--purple-700); }
.quiz-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.quiz-q {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.quiz-options {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}
.quiz-option {
  padding: 18px 22px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius);
  background: white;
  text-align: left;
  display: flex; gap: 14px; align-items: center;
  font-size: 14.5px;
  color: var(--ink-700);
  cursor: pointer;
  transition: all .15s;
  font-weight: 500;
}
.quiz-option:hover { border-color: var(--purple-300); background: var(--purple-50); }
.quiz-option-radio {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--ink-300);
  flex-shrink: 0;
  transition: all .15s;
  position: relative;
}
.quiz-option:hover .quiz-option-radio { border-color: var(--purple-700); }
.quiz-nav {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--ink-100);
  display: flex; justify-content: space-between; align-items: center;
}
.quiz-nav-back {
  font-size: 14px;
  color: var(--ink-500);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.quiz-nav-back:hover { color: var(--purple-700); }
.quiz-nav-back:disabled { opacity: 0.3; cursor: not-allowed; }
.quiz-result {
  text-align: center;
}
.quiz-result-num {
  margin: 0 auto;
  width: 180px; height: 180px;
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
}
.quiz-result-num svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.quiz-result-num .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--purple-700), var(--green-700));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.quiz-result-num .denom { font-family: var(--font-mono); font-size: 12px; color: var(--ink-400); margin-top: 4px; }
.quiz-result-grade {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}
.quiz-result-grade.good { background: var(--green-50); color: var(--green-700); border: 1px solid var(--green-100); }
.quiz-result-grade.fair { background: rgba(245, 158, 11, 0.08); color: var(--warn); border: 1px solid rgba(245, 158, 11, 0.2); }
.quiz-result-grade.poor { background: rgba(220, 38, 38, 0.08); color: var(--danger); border: 1px solid rgba(220, 38, 38, 0.2); }
.quiz-result-summary {
  margin: 18px auto 0;
  max-width: 480px;
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.55;
}
.quiz-result-actions {
  margin-top: 32px;
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.quiz-result-breakdown {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px dashed var(--ink-200);
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  text-align: left;
}
.quiz-bd-item {
  padding: 14px;
  border-radius: 10px;
  background: var(--ink-50);
  display: flex; gap: 12px; align-items: start;
}
.quiz-bd-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.quiz-bd-icon.good { background: var(--green-100); color: var(--green-700); }
.quiz-bd-icon.bad { background: rgba(220, 38, 38, 0.12); color: var(--danger); }
.quiz-bd-title { font-size: 13px; font-weight: 700; color: var(--ink-900); }
.quiz-bd-desc { font-size: 12px; color: var(--ink-500); margin-top: 2px; line-height: 1.4; }

/* ------- Leadership Team ------- */
.lead-bg { background: var(--bg); }
.lead-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }
.lead-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lead-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  background: white;
  padding: 24px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.lead-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--purple-300); }
.lead-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.02em;
  border: 3px solid white;
  box-shadow: 0 6px 18px -4px rgba(91, 45, 140, 0.4);
  position: relative;
}
.lead-avatar.alt { background: linear-gradient(135deg, var(--green-500), var(--green-700)); color: white; }
.lead-avatar.dark { background: linear-gradient(135deg, var(--ink-700), var(--ink-900)); }
.lead-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.lead-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--purple-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  font-weight: 600;
}
.lead-bio {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.5;
}
.lead-tags { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; }
.lead-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  background: var(--ink-50);
  color: var(--ink-500);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--ink-100);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ------- Resource Library ------- */
.res-bg { background: var(--ink-50); }
.res-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 48px; flex-wrap: wrap; }
.res-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.res-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  padding: 24px;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.res-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--purple-300); }
.res-card-type {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
  display: flex; align-items: center; gap: 8px;
}
.res-card-type::before {
  content: ''; width: 24px; height: 1.5px; background: var(--green-500);
}
.res-card-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--purple-50);
  color: var(--purple-700);
  display: grid; place-items: center;
  margin: 14px 0;
}
.res-card-icon.alt { background: var(--green-50); color: var(--green-700); }
.res-card h3 {
  font-size: 16px;
  line-height: 1.25;
  margin-top: 2px;
}
.res-card p {
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 8px;
  line-height: 1.5;
  flex: 1;
}
.res-card-link {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-700);
}
.res-card-link svg { transition: transform .2s; }
.res-card:hover .res-card-link svg { transform: translateX(3px); }
.res-card-meta {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--ink-200);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-400);
  display: flex; justify-content: space-between;
}

/* ------- Newsletter ------- */
.news-bg { background: var(--bg); padding: 64px 0; }
.news-shell {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  color: white;
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.news-shell::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(500px 300px at 100% 100%, rgba(164,201,57,0.22), transparent 60%);
  pointer-events: none;
}
.news-text { position: relative; }
.news-text h3 { color: white; font-size: 28px; margin-top: 12px; }
.news-text p { color: rgba(255,255,255,0.7); font-size: 15px; margin-top: 12px; line-height: 1.55; max-width: 420px; }
.news-form { position: relative; display: flex; gap: 10px; flex-wrap: wrap; }
.news-form input {
  flex: 1;
  min-width: 220px;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: white;
  font-family: inherit;
  font-size: 15px;
}
.news-form input::placeholder { color: rgba(255,255,255,0.5); }
.news-form input:focus { outline: none; border-color: var(--green-400); background: rgba(255,255,255,0.12); }
.news-meta {
  position: relative;
  margin-top: 18px;
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}
.news-meta-item { display: flex; align-items: center; gap: 6px; }
.news-meta-item svg { color: var(--green-400); }

/* ------- Careers / Hiring ------- */
.hire-bg { background: var(--ink-50); padding: 80px 0; }
.hire-shell {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--ink-100);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.hire-text h3 { font-size: 26px; margin-top: 12px; }
.hire-text p { font-size: 15px; color: var(--ink-500); margin-top: 14px; line-height: 1.55; max-width: 380px; }
.hire-text .hire-benefits {
  margin-top: 22px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.hire-benefits .b {
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-100);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.hire-roles { display: grid; gap: 12px; }
.hire-role {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--ink-100);
  background: var(--ink-50);
  transition: all .15s;
  align-items: center;
}
.hire-role:hover {
  border-color: var(--purple-700);
  background: white;
  box-shadow: var(--shadow-sm);
}
.hire-role-title { font-size: 16px; font-weight: 700; color: var(--ink-900); }
.hire-role-meta {
  margin-top: 4px;
  display: flex; gap: 14px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hire-role-meta .sep { color: var(--ink-200); }
.hire-role-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-700);
  display: inline-flex; align-items: center; gap: 6px;
}
.hire-role-cta svg { transition: transform .2s; }
.hire-role:hover .hire-role-cta svg { transform: translateX(3px); }

/* ------- Sticky CTA Bar ------- */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  background: white;
  border-radius: 999px;
  padding: 8px 8px 8px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-100);
  display: flex; align-items: center; gap: 18px;
  z-index: 80;
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: calc(100vw - 24px);
}
.sticky-cta.visible { transform: translateX(-50%) translateY(0); }
.sticky-cta-text {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px;
  color: var(--ink-700);
  white-space: nowrap;
}
.sticky-cta-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(164, 201, 57, 0.25);
  animation: pulse 2s ease-in-out infinite;
}
.sticky-cta-text strong { color: var(--ink-900); font-weight: 700; }
.sticky-cta-phone {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--purple-700);
  font-weight: 600;
  border-right: 1px solid var(--ink-200);
  padding-right: 18px;
  margin-right: -4px;
}
.sticky-cta-actions {
  display: flex; gap: 8px;
}
.sticky-cta-close {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink-100);
  color: var(--ink-500);
  display: grid; place-items: center;
  transition: background .15s, color .15s;
  margin-left: 4px;
}
.sticky-cta-close:hover { background: var(--ink-200); color: var(--ink-900); }

/* ------- Outcomes block ------- */
.outcomes-bg { background: var(--ink-950); color: white; position: relative; overflow: hidden; }
.outcomes-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 0% 0%, rgba(91,45,140,0.45), transparent 60%),
    radial-gradient(700px 500px at 100% 100%, rgba(164,201,57,0.18), transparent 60%);
  pointer-events: none;
}
.outcomes-inner { position: relative; }
.outcomes-head { max-width: 720px; margin-bottom: 56px; }
.outcomes-head h2 { color: white; margin-top: 14px; }
.outcomes-head p { color: rgba(255,255,255,0.65); font-size: 17px; margin-top: 16px; line-height: 1.55; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.outcome-card {
  padding: 32px 32px 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  border-right: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column;
}
.outcome-card:nth-child(3n) { border-right: none; padding-right: 0; }
.outcome-card:nth-child(3n+1) { padding-left: 0; }
.outcome-card:not(:nth-child(3n+1)) { padding-left: 32px; }
.outcome-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, white 30%, var(--green-400));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.outcome-num .sym { font-size: 0.55em; vertical-align: super; margin-left: 2px; color: rgba(255,255,255,0.7); -webkit-text-fill-color: rgba(255,255,255,0.7); }
.outcome-title { margin-top: 16px; font-size: 17px; font-weight: 700; color: white; }
.outcome-desc { margin-top: 8px; font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.outcome-source {
  margin-top: 14px;
  font-family: var(--font-code);
  font-size: 10.5px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ------- Awards / Recognition Wall ------- */
.awards-bg { background: var(--bg); }
.awards-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.award-tile {
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  background: white;
  padding: 24px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
}
.award-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--purple-300); }
.award-tile .seal {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 14px;
  position: relative;
  flex-shrink: 0;
}
.award-tile .seal.purple { background: var(--purple-50); color: var(--purple-700); }
.award-tile .seal.green  { background: var(--green-50); color: var(--green-700); }
.award-tile .seal.dark   { background: var(--ink-100); color: var(--ink-700); }
.award-tile .seal::before, .award-tile .seal::after {
  content: ''; position: absolute; bottom: -6px;
  width: 3px; height: 12px;
  border-radius: 1px;
}
.award-tile .seal.purple::before, .award-tile .seal.purple::after { background: var(--purple-700); }
.award-tile .seal.green::before, .award-tile .seal.green::after { background: var(--green-700); }
.award-tile .seal.dark::before, .award-tile .seal.dark::after { background: var(--ink-700); }
.award-tile .seal::before { transform: rotate(-18deg) translateX(-5px); }
.award-tile .seal::after  { transform: rotate(18deg) translateX(5px); }
.award-tile .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink-900);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.award-tile .year {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ------- SOC / NOC Operations ------- */
.soc-bg { background: var(--ink-50); }
.soc-shell {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-md);
}
.soc-text {
  padding: 48px;
  background: white;
  display: flex; flex-direction: column;
}
.soc-text .eyebrow { color: var(--purple-700); }
.soc-text h3 { font-size: 26px; margin-top: 14px; }
.soc-text > p { font-size: 15px; color: var(--ink-500); margin-top: 14px; line-height: 1.55; max-width: 380px; }
.soc-points {
  margin-top: 26px;
  display: grid; gap: 14px;
}
.soc-point { display: grid; grid-template-columns: 32px 1fr; gap: 14px; align-items: start; }
.soc-point-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--purple-50); color: var(--purple-700);
  display: grid; place-items: center;
}
.soc-point-icon.green { background: var(--green-50); color: var(--green-700); }
.soc-point strong { display: block; font-size: 14px; color: var(--ink-900); }
.soc-point span { font-size: 12.5px; color: var(--ink-500); line-height: 1.45; }
.soc-text-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px dashed var(--ink-200);
  display: flex; align-items: center; gap: 18px;
}
.soc-foot-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--purple-700);
}
.soc-foot-label { font-size: 12px; color: var(--ink-500); line-height: 1.3; }

.soc-visual {
  background: linear-gradient(160deg, var(--ink-900), var(--ink-950));
  color: white;
  padding: 36px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.soc-visual::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(91,45,140,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,45,140,0.18) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 50%, transparent 90%);
  opacity: 0.5;
}
.soc-visual::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(400px 300px at 0% 0%, rgba(164,201,57,0.18), transparent 60%);
  pointer-events: none;
}
.soc-vis-inner { position: relative; height: 100%; display: flex; flex-direction: column; }
.soc-vis-head {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-code);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
}
.soc-vis-head .live {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(164,201,57,0.15);
  color: var(--green-400);
  font-weight: 600;
}
.soc-vis-head .live::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(164,201,57,0.25);
  animation: pulse 2s ease-in-out infinite;
}
.soc-metrics {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.soc-metric {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.soc-metric-label {
  font-family: var(--font-code);
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.soc-metric-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  margin-top: 6px;
  letter-spacing: -0.02em;
  color: white;
}
.soc-metric-trend {
  margin-top: 4px;
  font-family: var(--font-code);
  font-size: 11px;
  color: var(--green-400);
}
.soc-feed {
  margin-top: 24px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  flex: 1;
  display: flex; flex-direction: column;
  min-height: 0;
}
.soc-feed-head {
  font-family: var(--font-code);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.soc-feed-rows { display: grid; gap: 10px; }
.soc-feed-row {
  display: grid; grid-template-columns: 60px 28px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.soc-feed-row:last-child { border-bottom: none; }
.soc-feed-time {
  font-family: var(--font-code);
  font-size: 10.5px;
  color: rgba(255,255,255,0.5);
}
.soc-feed-ico {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: grid; place-items: center;
  font-size: 12px;
}
.soc-feed-ico.ok { background: rgba(164,201,57,0.15); color: var(--green-400); }
.soc-feed-ico.warn { background: rgba(245, 158, 11, 0.18); color: var(--warn); }
.soc-feed-ico.info { background: rgba(91, 45, 140, 0.25); color: var(--purple-300); }
.soc-feed-text { font-size: 12.5px; color: rgba(255,255,255,0.85); }
.soc-feed-text small { display: block; font-size: 10.5px; color: rgba(255,255,255,0.45); font-family: var(--font-code); margin-top: 1px; }
.soc-feed-tag {
  font-family: var(--font-code);
  font-size: 9.5px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ------- Solutions x Industries Matrix ------- */
.matrix-bg { background: var(--bg); }
.matrix-shell {
  margin-top: 48px;
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
}
.matrix-side {
  background: var(--ink-50);
  padding: 24px 0;
  border-right: 1px solid var(--ink-100);
}
.matrix-side-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  font-weight: 600;
  padding: 0 22px 16px;
}
.matrix-ind {
  width: 100%;
  padding: 14px 22px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  text-align: left;
  border-left: 3px solid transparent;
  background: transparent;
  transition: all .15s;
}
.matrix-ind:hover { background: white; color: var(--purple-700); }
.matrix-ind.active {
  background: white;
  color: var(--purple-700);
  border-left-color: var(--purple-700);
  font-weight: 600;
}
.matrix-ind-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: var(--ink-100);
  color: var(--ink-500);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all .15s;
}
.matrix-ind.active .matrix-ind-icon { background: var(--purple-700); color: white; }
.matrix-main {
  padding: 36px 40px;
  display: grid; grid-template-rows: auto auto 1fr;
  gap: 24px;
}
.matrix-main-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; }
.matrix-main-head h3 { font-size: 24px; }
.matrix-main-head p { font-size: 14px; color: var(--ink-500); margin-top: 6px; max-width: 480px; line-height: 1.5; }
.matrix-main-meta {
  display: flex; gap: 28px;
  align-items: end;
}
.matrix-main-meta .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--purple-700);
}
.matrix-main-meta .lbl {
  font-size: 11px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
  margin-top: 2px;
}
.matrix-solutions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.matrix-sol {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--ink-100);
  background: var(--ink-50);
  transition: all .15s;
  display: flex; flex-direction: column;
}
.matrix-sol:hover { background: white; border-color: var(--purple-300); box-shadow: var(--shadow-sm); }
.matrix-sol-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--purple-50); color: var(--purple-700);
  display: grid; place-items: center;
  margin-bottom: 12px;
}
.matrix-sol-icon.green { background: var(--green-50); color: var(--green-700); }
.matrix-sol-title { font-size: 14px; font-weight: 700; color: var(--ink-900); }
.matrix-sol-desc { font-size: 12.5px; color: var(--ink-500); margin-top: 4px; line-height: 1.4; }
.matrix-sol-priority {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--ink-200);
  display: flex; justify-content: space-between;
  align-items: center;
}
.matrix-sol-priority .lbl {
  font-family: var(--font-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-400);
}
.matrix-sol-priority .pill {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.matrix-sol-priority .pill.p1 { background: var(--purple-100); color: var(--purple-700); }
.matrix-sol-priority .pill.p2 { background: var(--green-100); color: var(--green-700); }
.matrix-sol-priority .pill.p3 { background: var(--ink-100); color: var(--ink-700); }

/* ------- Strategic Advisors ------- */
.advisors-bg { background: var(--ink-50); }
.advisors-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.advisor-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  padding: 32px;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.advisor-card.featured {
  background: linear-gradient(160deg, var(--purple-700), var(--purple-900));
  color: white;
  border-color: var(--purple-800);
}
.advisor-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.advisor-card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--purple-700);
  margin-bottom: 8px;
}
.advisor-card.featured .advisor-card-tag { color: var(--green-400); }
.advisor-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.advisor-card-name .virtual {
  font-size: 14px;
  font-family: var(--font-mono);
  color: var(--ink-500);
  font-weight: 500;
  display: block;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.advisor-card.featured .advisor-card-name .virtual { color: rgba(255,255,255,0.6); }
.advisor-card-desc {
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.55;
  flex: 1;
}
.advisor-card.featured .advisor-card-desc { color: rgba(255,255,255,0.75); }
.advisor-card-list {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--ink-100);
  display: grid; gap: 10px;
}
.advisor-card.featured .advisor-card-list { border-color: rgba(255,255,255,0.15); }
.advisor-card-list-item {
  display: flex; gap: 10px; align-items: start;
  font-size: 13px;
  color: var(--ink-700);
}
.advisor-card.featured .advisor-card-list-item { color: rgba(255,255,255,0.85); }
.advisor-card-list-item::before {
  content: ''; width: 14px; height: 14px;
  border-radius: 50%; flex-shrink: 0; margin-top: 3px;
  background-color: var(--green-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 6-6' stroke='%237fa321' stroke-width='2.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.advisor-card.featured .advisor-card-list-item::before {
  background-color: rgba(164,201,57,0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 6-6' stroke='%23b8d655' stroke-width='2.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}
.advisor-card-foot {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--ink-200);
  display: flex; align-items: center; gap: 14px;
  font-size: 12px;
}
.advisor-card.featured .advisor-card-foot { border-color: rgba(255,255,255,0.15); }
.advisor-card-foot .meta { font-family: var(--font-mono); color: var(--ink-500); }
.advisor-card.featured .advisor-card-foot .meta { color: rgba(255,255,255,0.55); }
.advisor-card-foot .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-left: auto;
  color: var(--purple-700);
}
.advisor-card.featured .advisor-card-foot .price { color: var(--green-400); }

/* ------- Microsoft Specializations ------- */
.ms-bg { background: var(--bg); padding: 64px 0; border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); }
.ms-shell {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: center;
}
.ms-text h3 { font-size: 22px; margin-top: 10px; }
.ms-text p { font-size: 14px; color: var(--ink-500); margin-top: 12px; line-height: 1.55; max-width: 360px; }
.ms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ms-card {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--ink-100);
  background: white;
  display: flex; flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}
.ms-card:hover { border-color: var(--purple-300); box-shadow: var(--shadow-sm); }
.ms-card-badge {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0078d4, #003a70);
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  position: relative;
}
.ms-card-badge::after {
  content: ''; position: absolute; bottom: -3px; right: -3px;
  width: 14px; height: 14px;
  border-radius: 50%; background: var(--green-500);
  border: 2px solid white;
}
.ms-card-area {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.ms-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  margin-top: 3px;
  line-height: 1.25;
}
.ms-card-foot {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--ink-200);
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-400);
  display: flex; justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ------- Year-One Timeline ------- */
.year-bg { background: var(--ink-50); }
.year-head { max-width: 720px; margin-bottom: 56px; }
.year-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 auto;
}
.year-track::before {
  content: ''; position: absolute;
  top: 38px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-700), var(--green-500));
  border-radius: 1px;
}
.year-phase {
  position: relative;
  text-align: left;
  padding: 0 16px;
}
.year-phase-bullet {
  width: 22px; height: 22px;
  margin-bottom: 28px;
  margin-left: 0;
  border-radius: 50%;
  background: white;
  border: 4px solid var(--purple-700);
  position: relative; z-index: 2;
  box-shadow: 0 0 0 6px rgba(91, 45, 140, 0.1);
}
.year-phase:last-child .year-phase-bullet { border-color: var(--green-700); box-shadow: 0 0 0 6px rgba(127, 163, 33, 0.12); }
.year-phase-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--purple-700);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.year-phase:last-child .year-phase-meta { color: var(--green-700); }
.year-phase h3 {
  font-size: 19px;
  margin-top: 8px;
  line-height: 1.2;
}
.year-phase p {
  font-size: 13.5px;
  color: var(--ink-500);
  margin-top: 10px;
  line-height: 1.5;
  padding-right: 24px;
}
.year-phase-checks {
  margin-top: 14px;
  display: grid; gap: 6px;
}
.year-phase-check {
  display: flex; gap: 8px; align-items: start;
  font-size: 12px;
  color: var(--ink-700);
}
.year-phase-check svg { color: var(--green-700); margin-top: 1px; flex-shrink: 0; }

/* ------- Press / Recent News ------- */
.press-bg { background: var(--bg); padding: 80px 0; }
.press-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 36px; flex-wrap: wrap; }
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.press-item {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  background: white;
  transition: border-color .15s, box-shadow .15s, transform .15s;
  display: flex; flex-direction: column;
}
.press-item:hover { border-color: var(--purple-300); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.press-item-source {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  margin-bottom: 14px;
}
.press-item-source .pub { color: var(--purple-700); font-weight: 700; }
.press-item-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink-900);
}
.press-item-snippet {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.5;
  flex: 1;
}
.press-item-link {
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--purple-700);
  display: inline-flex; align-items: center; gap: 6px;
}
.press-item-link svg { transition: transform .2s; }
.press-item:hover .press-item-link svg { transform: translateX(3px); }

/* ---------- Mobile nav: hamburger + drawer ---------- */
.nav-hamburger {
  display: none;
  width: 42px; height: 42px;
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: 10px;
  padding: 0;
  position: relative;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  margin-left: auto;
}
.nav-hamburger:hover { background: var(--ink-100); border-color: var(--ink-200); }
.nav-hamburger span {
  display: block;
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform .25s ease, opacity .15s ease, top .25s ease;
}
.nav-hamburger span:nth-child(1) { top: 14px; }
.nav-hamburger span:nth-child(2) { top: 20px; }
.nav-hamburger span:nth-child(3) { top: 26px; }
.nav-hamburger.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.nav-drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(14, 10, 26, 0.55);
  z-index: 90;
  animation: drawer-fade .2s ease-out;
}
@keyframes drawer-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 92vw);
  height: 100vh;
  background: white;
  z-index: 91;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
  overflow-y: auto;
  padding-top: 72px;
  display: none;
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer-inner { padding: 24px; }
.nav-drawer-section {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.nav-drawer-link {
  display: block;
  padding: 16px 4px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-900);
  border-bottom: 1px solid var(--ink-100);
  text-decoration: none;
  flex: 1;
}
.nav-drawer-link:hover { color: var(--purple-700); }
.nav-drawer-sub-toggle {
  width: 36px; height: 36px;
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--ink-700);
  margin-left: 8px;
}
.nav-drawer-sub-toggle[aria-expanded="true"] {
  background: var(--purple-50);
  color: var(--purple-700);
  border-color: var(--purple-100);
}
.nav-drawer-sub-toggle[aria-expanded="true"] svg { transform: rotate(45deg); }
.nav-drawer-sub-toggle svg { transition: transform .2s; }
.nav-drawer-sub {
  padding: 6px 0 14px 4px;
  display: grid; gap: 2px;
  border-bottom: 1px solid var(--ink-100);
}
.nav-drawer-sublink {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--ink-700);
  border-radius: 8px;
  text-decoration: none;
}
.nav-drawer-sublink:hover { background: var(--purple-50); color: var(--purple-700); }
.nav-drawer-sublink svg { color: var(--purple-700); flex-shrink: 0; }
.nav-drawer-divider { height: 1px; background: var(--ink-100); margin: 18px 0 22px; }
.nav-drawer-phones { display: grid; gap: 10px; margin-bottom: 18px; }
.nav-drawer-phone {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  text-decoration: none;
}
.nav-drawer-phone svg { color: var(--purple-700); flex-shrink: 0; }
.nav-drawer-phone .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-500);
  font-weight: 600;
}
.nav-drawer-phone .num {
  font-family: var(--font-code);
  font-size: 16px;
  color: var(--ink-900);
  font-weight: 700;
  margin-top: 2px;
}
.nav-drawer-cta { width: 100%; justify-content: center; padding: 16px 20px; }

@media (max-width: 1100px) {
  .nav-links, .nav-phones, .nav-cta-desktop { display: none; }
  .nav-hamburger { display: block; }
  .nav-drawer { display: block; }
  .nav-inner { padding: 14px 20px; }
  .nav-logo img { height: 32px; }
}

/* Smaller-screen polish for components most likely to break on mobile */
@media (max-width: 640px) {
  /* Cinematic homepage hero — trim aggressive padding + size */
  .cine-hero-inner { padding: 56px 20px 72px; }
  .cine-hero h1 { font-size: clamp(2.1rem, 8vw, 3rem); }
  .cine-hero .lead { font-size: 16.5px; }
  .cine-hero-ctas { gap: 10px; }
  .cine-hero-ctas .btn { flex: 1; min-width: 0; justify-content: center; padding: 14px 16px; font-size: 14px; }
  .cine-hero-trust { gap: 14px; margin-top: 32px; }
  .cine-hero-trust-item { font-size: 13px; }

  /* Page heros — tighten */
  .page-hero { padding: 56px 0 64px; }
  .page-hero h1 { font-size: clamp(1.9rem, 7vw, 2.5rem); }
  .page-hero p.lead { font-size: 16.5px; }
  .page-hero-photo { aspect-ratio: 4/3; }

  /* Sticky CTA bar — compact pill */
  .sticky-cta {
    bottom: 16px;
    padding: 8px 8px 8px 16px;
    gap: 10px;
    font-size: 12px;
  }
  .sticky-cta-text { gap: 8px; white-space: normal; }
  .sticky-cta-text strong { display: block; }
  .sticky-cta-actions .btn { padding: 8px 14px !important; font-size: 12px !important; }
  .sticky-cta-close { width: 26px; height: 26px; }

  /* UniFi Spotlight — make photo + controls breathable */
  .unifi-spot-bg { padding: 56px 0; }
  .unifi-spot-photo { aspect-ratio: 4/3; }
  .unifi-spot-head { gap: 10px; }
  .unifi-spot-controls { flex-direction: column-reverse; align-items: stretch; gap: 16px; }
  .unifi-spot-dots { justify-content: center; }
  .unifi-spot-meta-right { justify-content: space-between; }
  .unifi-spot-title { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Service photo cards — slightly shorter on small screens */
  .svc-card { height: 380px; }

  /* Blog feature hero — tighter spacing */
  .blog-feat { padding: 56px 0; }
  .blog-feat-text h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .blog-feat-shell { gap: 28px; }

  /* About-page values grid — switch to stacked single-column */
  .about-values-row { grid-template-columns: 1fr !important; gap: 6px !important; padding: 18px 18px !important; }
  .about-values-row h3 { font-size: 17px !important; }
}

/* iOS sticky-bottom inset awareness */
@supports (padding: env(safe-area-inset-bottom)) {
  .sticky-cta { padding-bottom: max(8px, env(safe-area-inset-bottom)); }
}

/* ------- Animated cinematic hero (homepage) ------- */
.cine-hero {
  position: relative;
  min-height: 760px;
  padding: 0;
  overflow: hidden;
  color: white;
  isolation: isolate;
}
.cine-hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  background:
    radial-gradient(1200px 800px at 80% 20%, rgba(91, 45, 140, 0.65), transparent 60%),
    radial-gradient(900px 600px at 10% 80%, rgba(164, 201, 57, 0.35), transparent 55%),
    radial-gradient(700px 600px at 50% 50%, rgba(91, 45, 140, 0.4), transparent 60%),
    linear-gradient(160deg, #0e0a1a 0%, #2a0f47 100%);
  animation: cine-shift 16s ease-in-out infinite alternate;
}
@keyframes cine-shift {
  0%   { background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%; transform: scale(1); }
  100% { background-position: 6% 4%, -4% -4%, 2% -2%, 0% 0%; transform: scale(1.05); }
}
.cine-hero-mesh {
  position: absolute; inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(164, 201, 57, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 201, 57, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 50%, transparent 95%);
  pointer-events: none;
}
.cine-hero-video {
  position: absolute; inset: 0;
  z-index: 2;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
  mix-blend-mode: luminosity;
}
.cine-hero-overlay {
  position: absolute; inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse 60% 60% at 50% 40%, transparent 30%, rgba(14, 10, 26, 0.5) 80%),
    linear-gradient(180deg, rgba(14, 10, 26, 0.1) 0%, rgba(14, 10, 26, 0.55) 100%);
  pointer-events: none;
}
.cine-hero-particles {
  position: absolute; inset: 0; z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.cine-particle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 12px var(--green-500);
  opacity: 0.4;
  animation: cine-float 18s linear infinite;
}
@keyframes cine-float {
  from { transform: translateY(120vh) translateX(0); opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.5; }
  to   { transform: translateY(-30vh) translateX(30px); opacity: 0; }
}
.cine-hero-inner {
  position: relative;
  z-index: 5;
  padding: 110px 0 130px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}
.cine-hero-text {
  position: relative;
}
.cine-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  font-family: var(--font-code);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
.cine-eyebrow-tag {
  background: var(--green-500);
  color: var(--ink-950);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.cine-hero h1 {
  margin-top: 24px;
  color: white;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
}
.cine-hero h1 .accent {
  background: linear-gradient(135deg, var(--green-400) 30%, var(--green-500));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.cine-hero h1 .underline {
  position: relative;
  white-space: nowrap;
}
.cine-hero h1 .underline::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px; bottom: 8px;
  height: 16px;
  background: rgba(164, 201, 57, 0.35);
  z-index: -1;
  border-radius: 4px;
  transform: skew(-8deg) translateY(2px);
}
.cine-hero .lead {
  margin-top: 28px;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  line-height: 1.55;
}
.cine-hero-ctas {
  margin-top: 40px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.cine-hero .btn-accent { color: var(--ink-950); }
.cine-hero .btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}
.cine-hero .btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.35); color: white; }
.cine-hero-trust {
  margin-top: 44px;
  display: flex; flex-wrap: wrap; gap: 28px;
}
.cine-hero-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
}
.cine-hero-trust-item .dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green-500);
  color: var(--ink-950);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cine-hero-trust-item .dot svg { width: 10px; height: 10px; }

/* Hero visual side — collage of photos + dashboard */
.cine-hero-visual {
  position: relative;
  height: 520px;
}
.cine-photo {
  position: absolute;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
  border: 4px solid rgba(255, 255, 255, 0.1);
}
.cine-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cine-photo-1 {
  top: 0; left: 0;
  width: 280px; height: 350px;
  animation: ph-float-a 9s ease-in-out infinite;
}
.cine-photo-2 {
  bottom: 0; right: 30px;
  width: 240px; height: 200px;
  animation: ph-float-b 8s ease-in-out infinite;
  animation-delay: -2s;
}
@keyframes ph-float-a {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-12px) rotate(-2deg); }
}
@keyframes ph-float-b {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50%      { transform: translateY(10px) rotate(3deg); }
}
.cine-stat-card {
  position: absolute;
  top: 40%; right: -20px;
  background: white;
  color: var(--ink-900);
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  display: flex; align-items: center; gap: 14px;
  z-index: 3;
  animation: ph-float-a 7s ease-in-out infinite;
  animation-delay: -1s;
}
.cine-stat-card .ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green-100);
  color: var(--green-700);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cine-stat-card .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.cine-stat-card .label {
  font-size: 11px; color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
}

/* ------- Multi-page nav: active state + secondary phone ------- */
.nav-link.active {
  background: var(--purple-50);
  color: var(--purple-700);
}

/* ------- Page hero (smaller, for non-home pages) ------- */
.page-hero {
  position: relative;
  padding: 88px 0 100px;
  background:
    radial-gradient(1000px 500px at 90% 10%, rgba(164, 201, 57, 0.15), transparent 60%),
    radial-gradient(800px 500px at 0% 90%, rgba(91, 45, 140, 0.10), transparent 60%),
    linear-gradient(180deg, white 0%, var(--ink-50) 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--ink-100);
}
.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.page-hero-text { max-width: 580px; }
.page-hero .crumbs {
  display: flex; gap: 8px; align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.page-hero .crumbs a { color: var(--purple-700); }
.page-hero .crumbs .sep { color: var(--ink-300); }
.page-hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.page-hero h1 .accent { color: var(--purple-700); }
.page-hero h1 .underline {
  position: relative;
  white-space: nowrap;
}
.page-hero h1 .underline::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px; bottom: 4px;
  height: 12px;
  background: var(--green-500);
  z-index: -1;
  border-radius: 4px;
  transform: skew(-8deg) translateY(2px);
}
.page-hero p.lead {
  margin-top: 22px;
  font-size: 18px;
  color: var(--ink-500);
  max-width: 540px;
  line-height: 1.55;
}
.page-hero-meta {
  margin-top: 28px;
  display: flex; gap: 24px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-500);
}
.page-hero-meta strong { color: var(--ink-900); }
.page-hero-ctas {
  margin-top: 32px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.page-hero-photo {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero-photo-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  background: white;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-900);
  box-shadow: var(--shadow-md);
}
.page-hero-photo-tag .ico {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-500);
  color: var(--ink-950);
  display: grid; place-items: center;
}

/* ------- Photo blocks ------- */
.photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-100);
}
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.photo-strip .photo { aspect-ratio: 4/5; }
.photo-strip .photo.wide { aspect-ratio: 5/4; grid-row: span 2; }

.image-text-block {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.image-text-block.reverse { grid-template-columns: 1fr 1.05fr; }
.image-text-block.reverse .image-text-photo { order: 2; }
.image-text-photo {
  aspect-ratio: 5/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid white;
  position: relative;
}
.image-text-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-text-photo-overlay {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 14px 18px;
  color: white;
}
.image-text-photo-overlay strong { display: block; font-size: 14px; }
.image-text-photo-overlay span { font-size: 12px; color: rgba(255, 255, 255, 0.7); font-family: var(--font-code); }

/* CTA section (reusable on pages) */
.cta-bg {
  background: var(--ink-950);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 20% 30%, rgba(91, 45, 140, 0.4), transparent 60%),
    radial-gradient(600px 400px at 80% 80%, rgba(164, 201, 57, 0.18), transparent 60%);
  pointer-events: none;
}
.cta-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-text h2 { color: white; max-width: 580px; }
.cta-text p { color: rgba(255, 255, 255, 0.7); font-size: 17px; margin-top: 14px; max-width: 520px; line-height: 1.55; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Industry photo strip (homepage teaser) */
.ind-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.ind-photo-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--ink-100);
  transition: transform .25s;
}
.ind-photo-card:hover { transform: translateY(-3px); }
.ind-photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.ind-photo-card:hover img { transform: scale(1.06); }
.ind-photo-card-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14, 10, 26, 0.85) 100%);
}
.ind-photo-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px;
  color: white;
}
.ind-photo-card-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-400);
  font-weight: 600;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.ind-photo-card-tag::before {
  content: ''; width: 18px; height: 1.5px; background: var(--green-500);
}
.ind-photo-card h3 {
  color: white;
  font-size: 19px;
  line-height: 1.15;
}
.ind-photo-card .meta {
  margin-top: 10px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}
.ind-photo-card .arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  display: grid; place-items: center;
  transition: background .15s;
}
.ind-photo-card:hover .arrow { background: var(--green-500); color: var(--ink-950); }

/* Big people-photo banner (used on About + Careers + Community pages) */
.photo-banner {
  position: relative;
  height: 480px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 4px solid white;
  box-shadow: var(--shadow-lg);
}
.photo-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14, 10, 26, 0.7) 100%);
  display: flex; align-items: flex-end;
  padding: 40px;
}
.photo-banner-content { color: white; max-width: 580px; }
.photo-banner-content .eyebrow { color: var(--green-400); }
.photo-banner-content .eyebrow::before { background: var(--green-400); }
.photo-banner-content h2 { color: white; margin-top: 14px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.photo-banner-content p { color: rgba(255, 255, 255, 0.75); margin-top: 12px; font-size: 15px; line-height: 1.55; }

/* ------- UniFi Showcase ------- */
.unifi-bg {
  background:
    radial-gradient(900px 500px at 90% 10%, rgba(0, 145, 211, 0.08), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(164, 201, 57, 0.05), transparent 60%),
    var(--bg);
}
.unifi-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}
.unifi-head-text { max-width: 600px; }
.unifi-badge-row {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.unifi-vendor-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 12px;
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.unifi-vendor-badge img {
  height: 22px; width: auto;
}
.unifi-vendor-badge .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  font-weight: 600;
}
.unifi-cert-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--ink-950);
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  border-radius: 999px;
}
.unifi-cert-badge .check-circle {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--ink-950);
  color: var(--green-400);
  display: grid; place-items: center;
}
.unifi-head h2 { margin-top: 4px; font-size: clamp(2rem, 3.4vw, 2.8rem); }
.unifi-head p {
  margin-top: 18px;
  font-size: 16px;
  color: var(--ink-500);
  line-height: 1.6;
}
.unifi-head-actions {
  margin-top: 24px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.unifi-head-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid white;
  position: relative;
}
.unifi-head-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.unifi-head-photo-overlay {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  background: rgba(14, 10, 26, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 16px;
  color: white;
  font-size: 12px;
  display: flex; align-items: center; gap: 10px;
}
.unifi-head-photo-overlay strong { font-family: var(--font-display); font-size: 13.5px; }
.unifi-head-photo-overlay .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(164,201,57,0.25);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.unifi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.unifi-card {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.unifi-card:hover {
  border-color: var(--purple-300);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.unifi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0091d3, #0066a0);
}
.unifi-card.protect::before { background: linear-gradient(90deg, var(--purple-700), var(--purple-900)); }
.unifi-card.access::before  { background: linear-gradient(90deg, var(--green-500), var(--green-700)); }
.unifi-card.talk::before    { background: linear-gradient(90deg, #f59e0b, #d97706); }
.unifi-card.connect::before { background: linear-gradient(90deg, var(--ink-700), var(--ink-900)); }
.unifi-card-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: #e7f4fb;
  color: #0066a0;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.unifi-card.protect .unifi-card-icon { background: var(--purple-50); color: var(--purple-700); }
.unifi-card.access  .unifi-card-icon { background: var(--green-50);  color: var(--green-700); }
.unifi-card.talk    .unifi-card-icon { background: #fef3c7; color: #b45309; }
.unifi-card.connect .unifi-card-icon { background: var(--ink-100); color: var(--ink-700); }
.unifi-card-app {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  font-weight: 600;
}
.unifi-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.unifi-card-desc {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--ink-500);
  line-height: 1.5;
  flex: 1;
}
.unifi-card-list {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--ink-200);
  display: grid; gap: 7px;
}
.unifi-card-list-item {
  font-size: 12.5px;
  color: var(--ink-700);
  display: flex; gap: 8px; align-items: start;
  line-height: 1.4;
}
.unifi-card-list-item::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green-500);
  margin-top: 7px; flex-shrink: 0;
}
.unifi-card-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--ink-200);
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.unifi-card-foot .tier { color: var(--purple-700); font-weight: 700; }

.unifi-foot {
  margin-top: 32px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #0091d3, #0066a0);
  color: white;
  border-radius: var(--radius-lg);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.unifi-foot::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 18px);
  pointer-events: none;
}
.unifi-foot-text { position: relative; max-width: 560px; font-size: 14px; line-height: 1.55; }
.unifi-foot-text strong { color: white; font-family: var(--font-display); font-size: 16px; display: block; margin-bottom: 4px; }
.unifi-foot-actions { position: relative; display: flex; gap: 10px; flex-wrap: wrap; }

/* ------- UniFi Spotlight Carousel (homepage) ------- */
.unifi-spot-bg {
  background: linear-gradient(135deg, #0a1a2e 0%, #1a0e2e 50%, #2a0f47 100%);
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  color: white;
}
.unifi-spot-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 90% 10%, rgba(0, 145, 211, 0.18), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(164, 201, 57, 0.10), transparent 60%);
  pointer-events: none;
}
.unifi-spot-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 24px);
  pointer-events: none;
}
.unifi-spot-inner { position: relative; }

.unifi-spot-head {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.unifi-spot-vendor {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.unifi-spot-vendor img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
}
.unifi-spot-vendor .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}
.unifi-spot-cert {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--ink-950);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  border-radius: 999px;
}
.unifi-spot-cert .ico {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--ink-950);
  color: var(--green-400);
  display: grid; place-items: center;
}
.unifi-spot-eye {
  display: inline-flex; align-items: center; gap: 8px;
  margin-left: auto;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.unifi-spot-eye::before {
  content: ''; width: 22px; height: 1.5px; background: var(--green-500);
}

.unifi-spot-stage {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: stretch;
  min-height: 480px;
}
.unifi-spot-photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  background: rgba(255,255,255,0.04);
}
.unifi-spot-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .4s ease-out, transform 6s ease-out;
}
.unifi-spot-photo img.entering {
  opacity: 0;
  transform: scale(1.06);
}
.unifi-spot-photo img.active {
  opacity: 1;
  transform: scale(1);
}
.unifi-spot-photo-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(14, 10, 26, 0.78);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px;
  color: white;
  border: 1px solid rgba(255,255,255,0.12);
  max-width: calc(100% - 36px);
}
.unifi-spot-photo-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(164,201,57,0.25);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.unifi-spot-photo-tag strong { font-weight: 700; }

.unifi-spot-text {
  display: flex; flex-direction: column;
  justify-content: center;
}
.unifi-spot-pill {
  display: inline-flex; align-self: flex-start;
  align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  background: rgba(0, 145, 211, 0.15);
  color: #6cc7ed;
  border: 1px solid rgba(108, 199, 237, 0.25);
}
.unifi-spot-pill .platform-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6cc7ed;
}
.unifi-spot-pill.protect { background: rgba(91, 45, 140, 0.2); color: #b89bd6; border-color: rgba(184, 155, 214, 0.3); }
.unifi-spot-pill.protect .platform-dot { background: #b89bd6; }
.unifi-spot-pill.access  { background: rgba(164, 201, 57, 0.15); color: var(--green-400); border-color: rgba(184, 214, 85, 0.3); }
.unifi-spot-pill.access  .platform-dot { background: var(--green-400); }
.unifi-spot-pill.talk    { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border-color: rgba(251, 191, 36, 0.3); }
.unifi-spot-pill.talk    .platform-dot { background: #fbbf24; }
.unifi-spot-pill.connect { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.2); }
.unifi-spot-pill.connect .platform-dot { background: rgba(255,255,255,0.85); }

.unifi-spot-title {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: white;
}
.unifi-spot-title .accent {
  background: linear-gradient(135deg, var(--green-400), var(--green-500));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.unifi-spot-desc {
  margin-top: 16px;
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  max-width: 540px;
}
.unifi-spot-bullets {
  margin-top: 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}
.unifi-spot-bullet {
  display: flex; gap: 10px; align-items: center;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
}
.unifi-spot-bullet svg {
  color: var(--green-400);
  flex-shrink: 0;
}
.unifi-spot-ctas {
  margin-top: 32px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.unifi-spot-ctas .btn-accent { color: var(--ink-950); }
.unifi-spot-ctas .btn-ghost {
  background: rgba(255,255,255,0.06);
  color: white;
  border-color: rgba(255,255,255,0.2);
}
.unifi-spot-ctas .btn-ghost:hover { background: rgba(255,255,255,0.12); color: white; border-color: rgba(255,255,255,0.4); }

/* Carousel controls */
.unifi-spot-controls {
  margin-top: 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.unifi-spot-dots {
  display: flex; gap: 12px; align-items: center;
}
.unifi-spot-dot {
  width: 44px; height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: background .15s;
  position: relative;
  overflow: hidden;
}
.unifi-spot-dot:hover { background: rgba(255,255,255,0.25); }
.unifi-spot-dot.active {
  background: rgba(255,255,255,0.18);
}
.unifi-spot-dot .fill {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--green-400), var(--green-500));
  transform-origin: left;
  transform: scaleX(0);
}
.unifi-spot-dot.active .fill {
  animation: unifi-progress var(--dur, 7s) linear forwards;
}
.unifi-spot-dot.paused .fill {
  animation-play-state: paused;
}
@keyframes unifi-progress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.unifi-spot-arrows { display: flex; gap: 10px; }
.unifi-spot-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all .15s;
}
.unifi-spot-arrow:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.3);
}
.unifi-spot-meta-right {
  display: flex; align-items: center; gap: 18px;
}
.unifi-spot-counter {
  font-family: var(--font-code);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}
.unifi-spot-counter strong { color: white; font-weight: 700; }

/* ------- Blog ------- */
.blog-bg { background: var(--bg); }
.blog-feat {
  background: var(--ink-50);
  padding: 80px 0;
  border-bottom: 1px solid var(--ink-100);
}
.blog-feat-shell {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.blog-feat-photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}
.blog-feat-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-feat-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--purple-50);
  color: var(--purple-700);
  border: 1px solid var(--purple-100);
}
.blog-feat-text h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.1;
}
.blog-feat-text p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-500);
  line-height: 1.55;
  max-width: 540px;
}
.blog-meta-row {
  display: flex; align-items: center; gap: 16px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--ink-500);
}
.blog-meta-row .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}
.blog-meta-row .avatar.alt { background: linear-gradient(135deg, var(--green-500), var(--green-700)); color: var(--ink-950); }
.blog-meta-row .author { font-weight: 600; color: var(--ink-900); }
.blog-meta-row .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-300); }

/* Filter chips */
.blog-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 56px 0 36px;
}
.blog-filter {
  padding: 8px 16px;
  border-radius: 999px;
  background: white;
  border: 1.5px solid var(--ink-200);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-700);
  cursor: pointer;
  transition: all .15s;
}
.blog-filter:hover { border-color: var(--purple-300); color: var(--purple-700); }
.blog-filter.active { background: var(--purple-700); color: white; border-color: var(--purple-700); }

/* Grid of post cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  text-decoration: none;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-300);
}
.blog-card-photo {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--ink-100);
}
.blog-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease-out;
}
.blog-card:hover .blog-card-photo img { transform: scale(1.04); }
.blog-card-tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.95);
  color: var(--purple-700);
  backdrop-filter: blur(8px);
}
.blog-card-body {
  padding: 22px;
  display: flex; flex-direction: column;
  flex: 1;
}
.blog-card-body h3 {
  font-size: 18px;
  line-height: 1.25;
  color: var(--ink-900);
  text-wrap: pretty;
}
.blog-card-body p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.5;
  flex: 1;
}
.blog-card-meta {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--ink-200);
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  color: var(--ink-500);
}
.blog-card-meta .author { color: var(--ink-900); font-weight: 600; }
.blog-card-meta .read { margin-left: auto; }

.blog-empty {
  padding: 56px;
  background: var(--ink-50);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--ink-500);
  font-size: 15px;
}

/* Post page */
.post-bg {
  padding: 88px 0 24px;
  background:
    radial-gradient(900px 500px at 90% 10%, rgba(164, 201, 57, 0.10), transparent 60%),
    radial-gradient(700px 500px at 0% 90%, rgba(91, 45, 140, 0.06), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--ink-100);
}
.post-head {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.post-head .crumbs { justify-content: center; }
.post-head h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-top: 18px;
  text-wrap: balance;
}
.post-head .lead {
  margin: 20px auto 0;
  font-size: 19px;
  color: var(--ink-500);
  line-height: 1.55;
  max-width: 680px;
  text-wrap: pretty;
}
.post-byline {
  margin: 32px auto 0;
  display: flex; align-items: center; gap: 16px;
  justify-content: center;
  font-size: 13.5px;
  color: var(--ink-500);
}

.post-photo {
  max-width: 1100px;
  margin: 40px auto -80px;
  aspect-ratio: 21/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 4px solid white;
  box-shadow: var(--shadow-lg);
  background: var(--ink-100);
}
.post-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.post-body-bg {
  padding: 120px 0 80px;
  background: var(--bg);
}
.post-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-800);
}
.post-body h2 {
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}
.post-body h3 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--ink-900);
}
.post-body p { margin-bottom: 20px; }
.post-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.6em;
  float: left;
  line-height: 0.85;
  margin: 6px 8px -2px 0;
  color: var(--purple-700);
  font-weight: 700;
}
.post-body strong { color: var(--ink-900); }
.post-body ul, .post-body ol {
  margin: 0 0 24px 0;
  padding-left: 0;
  list-style: none;
}
.post-body li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
.post-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background-color: var(--green-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 6-6' stroke='%237fa321' stroke-width='2.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.post-body ol { counter-reset: postlist; }
.post-body ol li {
  counter-increment: postlist;
}
.post-body ol li::before {
  content: counter(postlist);
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--purple-700);
  color: white;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  display: grid; place-items: center;
}
.post-body blockquote {
  margin: 32px 0;
  padding: 20px 28px;
  border-left: 4px solid var(--green-500);
  background: var(--ink-50);
  border-radius: 0 12px 12px 0;
  font-size: 18px;
  font-style: italic;
  color: var(--ink-800);
}
.post-body code {
  background: var(--ink-100);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-code);
  font-size: 0.92em;
}
.post-body a { color: var(--purple-700); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: var(--purple-900); }

.post-share {
  max-width: 720px;
  margin: 56px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--ink-100);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.post-share .label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  font-weight: 600;
}
.post-share-tags {
  display: flex; gap: 8px;
}
.post-share-tag {
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  font-size: 12px;
  color: var(--ink-700);
  font-weight: 500;
}

.post-related {
  background: var(--ink-50);
  padding: 80px 0;
  border-top: 1px solid var(--ink-100);
}
.post-related-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 32px;
  gap: 40px;
  flex-wrap: wrap;
}
.post-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ------- Mobile ------- */
@media (max-width: 1024px) {
  .hero-inner, .stats-inner, .why-grid, .faq-grid, .quote-grid,
  .schedule-grid, .pricing2-shell, .csat-shell, .areas-shell,
  .est-shell, .community-shell, .comp-body, .news-shell, .hire-shell,
  .soc-shell, .ms-shell, .matrix-shell,
  .cine-hero-inner, .page-hero-grid, .image-text-block, .cta-shell { grid-template-columns: 1fr; gap: 40px; }
  .image-text-block.reverse .image-text-photo { order: -1; }
  .cine-hero { min-height: auto; }
  .cine-hero-inner { padding: 70px 28px 90px; }
  .cine-hero-visual { display: none; }
  .est-controls, .est-result, .community-text, .community-art { padding: 36px; }
  .cases-grid, .stack-grid, .lead-grid, .res-grid, .awards-grid, .advisors-grid,
  .ms-grid, .matrix-solutions, .press-grid, .ind-photo-grid, .photo-strip { grid-template-columns: 1fr 1fr; }
  .blog-feat-shell { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid, .post-related-grid { grid-template-columns: 1fr 1fr; }
  .unifi-head { grid-template-columns: 1fr; gap: 36px; }
  .unifi-head-photo { aspect-ratio: 16/9; max-width: 480px; }
  .unifi-grid { grid-template-columns: repeat(2, 1fr); }
  .unifi-spot-stage { grid-template-columns: 1fr; gap: 32px; min-height: 0; }
  .unifi-spot-photo { aspect-ratio: 16/9; }
  .unifi-spot-bullets { grid-template-columns: 1fr; }
  .unifi-spot-eye { display: none; }
  .compare-shell { overflow-x: auto; }
  .compare-row { grid-template-columns: 1.4fr repeat(4, minmax(140px, 1fr)); min-width: 720px; }
  .sticky-cta-phone { display: none; }
  .matrix-side { display: flex; overflow-x: auto; padding: 12px; border-right: none; border-bottom: 1px solid var(--ink-100); }
  .matrix-side-label { display: none; }
  .matrix-ind { white-space: nowrap; border-left: none; border-bottom: 3px solid transparent; padding: 10px 16px; }
  .matrix-ind.active { border-left-color: transparent; border-bottom-color: var(--purple-700); }
  .year-track { grid-template-columns: 1fr; gap: 28px; }
  .year-track::before { display: none; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .outcome-card { padding: 28px 0; border-right: none !important; padding-left: 0 !important; }
  .areas-left, .areas-right { padding: 36px; border-right: none; }
  .csat-shell { padding: 36px; }
  .nav-phones { display: none; }
  .hero-award { top: 12px; right: 8px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid, .approach-grid, .promise-grid, .insights-grid { grid-template-columns: 1fr 1fr; }
  .approach-step { border-right: none; border-bottom: 1px dashed var(--ink-200); padding-bottom: 24px; padding-right: 0; }
  .industries-shell { grid-template-columns: 1fr; }
  .ind-list { flex-direction: row; overflow-x: auto; max-height: none; }
  .ind-item { flex-shrink: 0; }
  .testimonial-card { flex: 0 0 calc(100% - 0px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .logos-row { grid-template-columns: repeat(3, 1fr); gap: 24px 16px; }
  .nav-links { display: none; }
  .section { padding: 64px 0; }
  .hero-visual { height: 420px; }
  .pricing2-left, .pricing2-right { padding: 40px; }
  .promise-shell { padding: 40px; }
  .booker-body { grid-template-columns: 1fr; }
  .megamenu { width: calc(100vw - 32px); max-width: 600px; }
  .mm-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .services-grid, .approach-grid, .promise-grid, .insights-grid,
  .pricing2-includes, .mm-grid, .areas-grid, .cases-grid,
  .stack-grid, .lead-grid, .res-grid, .quiz-result-breakdown,
  .advisors-grid, .ms-grid, .matrix-solutions, .press-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .est-services { grid-template-columns: 1fr; }
  .case-thumb-headline { font-size: 22px; }
  .unifi-grid { grid-template-columns: 1fr; }
  .blog-grid, .post-related-grid { grid-template-columns: 1fr; }
  .post-photo { margin: 28px auto -60px; aspect-ratio: 16/10; }
  .post-body { padding: 0 24px; font-size: 16px; }
  .post-body p:first-of-type::first-letter { font-size: 3em; }
  .comp-body { padding: 28px; }
  .quiz-shell { padding: 28px; }
  .quiz-q { font-size: 22px; }
  .news-shell, .hire-shell { padding: 32px; }
  .stack-foot { padding: 20px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .soc-text, .soc-visual { padding: 28px; }
  .soc-metrics { grid-template-columns: 1fr 1fr; }
  .csat-grid { grid-template-columns: 1fr; gap: 28px; }
  .csat-item { border-right: none; border-bottom: 1px solid var(--ink-200); padding: 0 0 24px; }
  .csat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .ind-points { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: start; }
  .quote-choices { grid-template-columns: 1fr; }
  .quote-services-grid { grid-template-columns: 1fr; }
  .chat-panel { width: calc(100vw - 32px); }
  .booker-slots { grid-template-columns: 1fr 1fr; max-height: 200px; }
}
