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

:root {
  --blue-50: #EFF6FF;
  --blue-100: #DBEAFE;
  --blue-200: #BFDBFE;
  --blue-400: #60A5FA;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;
  --blue-800: #1E40AF;
  --blue-900: #1E3A8A;
  --navy: #0F2351;
  --slate-50: #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-900: #0F172A;
  --white: #FFFFFF;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-ui: 'Sora', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--slate-700);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--blue-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--slate-600);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--blue-600); }

.nav-cta {
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 600;
  background: var(--blue-600);
  color: white !important;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  background: var(--blue-700) !important;
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 120px 2rem 80px;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at top right, var(--blue-50) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--slate-200);
}

/* Grid lines decoration */
.hero-grid {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.035;
  pointer-events: none;
  overflow: hidden;
}

.hero-grid svg {
  width: 100%;
  height: 100%;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.02em;
  max-width: 780px;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--blue-600);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--slate-600);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  font-family: var(--font-ui);
  font-size: 14.5px;
  font-weight: 600;
  background: var(--blue-600);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.25);
}

.btn-secondary {
  font-family: var(--font-ui);
  font-size: 14.5px;
  font-weight: 500;
  background: transparent;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 1.5px solid var(--slate-300);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}

.btn-secondary:hover {
  border-color: var(--blue-400);
  color: var(--blue-600);
  background: var(--blue-50);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--slate-200);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-ui);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stat-num span { color: var(--blue-600); }

.hero-stat-label {
  font-size: 13px;
  color: var(--slate-500);
  margin-top: 4px;
  font-weight: 400;
}

/* ── SECTION SHARED ── */
section { padding: 100px 2rem; }

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--blue-600);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--slate-500);
  max-width: 580px;
  line-height: 1.75;
  font-weight: 300;
}

/* ── SERVICES ── */
#services {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.services-header {
  max-width: 660px;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--slate-200);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
  transition: background 0.2s;
}

.service-card:first-child { border-radius: 14px 0 0 14px; }
.service-card:last-child { border-radius: 0 14px 14px 0; }

.service-card:hover { background: var(--blue-50); }

.service-num {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue-400);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-50);
  border: 1.5px solid var(--blue-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 1.75;
}

.service-card h3 {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 14.5px;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.75rem;
}

.service-tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--blue-50);
  color: var(--blue-700);
  border: 1px solid var(--blue-200);
  padding: 4px 10px;
  border-radius: 100px;
}

.service-link {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
  transition: gap 0.2s;
}

.service-link:hover { gap: 10px; }

/* ── HOW IT WORKS ── */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.steps-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--slate-200);
  position: relative;
}

.step:last-child { border-bottom: none; }

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue-600);
  color: white;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
  letter-spacing: 0;
}

.step-content h4 {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.65;
  font-weight: 300;
}

.how-visual {
  background: var(--navy);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.how-visual::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(59,130,246,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.visual-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.visual-card:last-child { margin-bottom: 0; }

.visual-card-label {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}

.visual-card-value {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.01em;
}

.visual-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(59,130,246,0.25);
  border: 1px solid rgba(96,165,250,0.35);
  border-radius: 100px;
  padding: 3px 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  color: #93C5FD;
  margin-top: 8px;
}

.visual-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #60A5FA;
}

/* ── ABOUT ── */
#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.about-left .section-sub {
  max-width: none;
  margin-bottom: 2rem;
}

.about-left p {
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.about-credentials {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1rem 1.25rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
}

.credential-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-50);
  border: 1.5px solid var(--blue-200);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credential-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 1.75;
}

.credential-text strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.credential-text span {
  font-size: 12.5px;
  color: var(--slate-500);
  font-weight: 300;
}

/* Right column — competency areas */
.competency-panel {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 2.5rem;
}

.competency-panel h4 {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 1.5rem;
}

.competency-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--slate-200);
}

.competency-item:last-child { border-bottom: none; }

.competency-name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.competency-bar-bg {
  height: 4px;
  background: var(--slate-200);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 0.3rem;
}

.competency-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  border-radius: 100px;
  transition: width 1s ease;
}

.competency-detail {
  font-size: 12px;
  color: var(--slate-500);
  font-weight: 300;
}

/* ── ENGAGEMENT MODELS ── */
#engagement {
  background: var(--navy);
  color: white;
}

#engagement .section-eyebrow { color: var(--blue-400); }
#engagement .section-title { color: white; }
#engagement .section-sub { color: rgba(255,255,255,0.6); }

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 3rem;
}

.engagement-card {
  background: var(--navy);
  padding: 2.25rem;
  transition: background 0.2s;
}

.engagement-card:first-child { border-radius: 14px 0 0 14px; }
.engagement-card:last-child { border-radius: 0 14px 14px 0; }
.engagement-card:hover { background: rgba(59,130,246,0.12); }

.engagement-card.featured {
  background: rgba(59,130,246,0.15);
  border: 1.5px solid rgba(96,165,250,0.3);
}

.engagement-badge {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(59,130,246,0.3);
  color: #93C5FD;
  border: 1px solid rgba(96,165,250,0.3);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.engagement-card h3 {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.engagement-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.engagement-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.engagement-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}

.engagement-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: rgba(59,130,246,0.3);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8l3 3 6-6' stroke='%2393C5FD' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
}

/* ── CONTACT ── */
#contact {
  background: var(--white);
  border-top: 1px solid var(--slate-200);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-left .section-sub {
  max-width: none;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-50);
  border: 1.5px solid var(--blue-200);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 1.75;
}

.contact-item a {
  font-family: var(--font-ui);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--blue-600); }

.contact-item span {
  font-size: 13px;
  color: var(--slate-500);
  display: block;
  font-weight: 300;
  margin-top: 1px;
}

/* Contact form */
.contact-form {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--slate-600);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: white;
  border: 1.5px solid var(--slate-200);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--slate-700);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  font-weight: 300;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  padding: 13px 28px;
  background: var(--blue-600);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--font-ui);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}

.form-submit:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
}

.form-disclaimer {
  font-size: 12px;
  color: var(--slate-400);
  text-align: center;
  margin-top: 1rem;
  font-weight: 300;
}

.form-disclaimer a {
  color: var(--slate-400);
  text-decoration: none;
}

.form-disclaimer a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: var(--slate-900);
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.01em;
}

.footer-logo span { color: var(--blue-400); }

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-copy {
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

.footer-copy a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
}

/* ── UTILITY ── */
.divider-line {
  width: 48px;
  height: 3px;
  background: var(--blue-500);
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .services-grid,
  .engagement-grid { grid-template-columns: 1fr; }
  .service-card:first-child,
  .service-card:last-child,
  .engagement-card:first-child,
  .engagement-card:last-child {
    border-radius: 0;
  }
  .how-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stats { gap: 2rem; }
  .nav-links { display: none; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow,
.hero h1,
.hero-sub,
.hero-actions,
.hero-stats {
  will-change: opacity, transform;
}

.hero-eyebrow { animation: fadeUp 0.5s ease both; }
.hero h1      { animation: fadeUp 0.5s 0.1s ease both; }
.hero-sub     { animation: fadeUp 0.5s 0.2s ease both; }
.hero-actions { animation: fadeUp 0.5s 0.3s ease both; }
.hero-stats   { animation: fadeUp 0.5s 0.4s ease both; }

/* ── PRIVACY PAGE ── */
.privacy-hero {
  padding: 120px 2rem 80px;
  position: relative;
  background: var(--white);
  overflow: hidden;
  border-bottom: 1px solid var(--slate-200);
}

.privacy-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at top right, var(--blue-50) 0%, transparent 70%);
  pointer-events: none;
}

.privacy-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.privacy-date {
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--slate-500);
  display: block;
  margin-top: 0.75rem;
  margin-bottom: 1.75rem;
}

.privacy-lead {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.75;
  font-weight: 300;
  max-width: 580px;
}

#privacy-content {
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--slate-200);
  border-radius: 16px;
  overflow: hidden;
  max-width: 800px;
}

.privacy-section {
  background: var(--white);
  padding: 2rem 2.5rem;
}

.privacy-section:first-child { border-radius: 14px 14px 0 0; }
.privacy-section:last-child  { border-radius: 0 0 14px 14px; }

.privacy-section h2 {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.privacy-section p {
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1rem;
}

.privacy-section p:last-child { margin-bottom: 0; }

.privacy-section ul {
  margin: 0.75rem 0 1rem 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.privacy-section li {
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.7;
  font-weight: 300;
}

.privacy-section a {
  color: var(--blue-600);
  text-decoration: none;
  font-weight: 400;
}

.privacy-section a:hover { text-decoration: underline; }

.privacy-note {
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 13.5px;
  color: var(--slate-600);
  font-weight: 300;
  line-height: 1.65;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .privacy-section:first-child,
  .privacy-section:last-child { border-radius: 0; }
}

/* ══════════════════════════════════════════════════════
   EXTRACTED INLINE STYLES — index.html
   ══════════════════════════════════════════════════════ */

/* Services grid — 2-column layout override */
.services-grid-2col {
  grid-template-columns: repeat(2, 1fr);
}

/* Service card corner variants */
.service-card-top-left  { border-radius: 14px 0 0 0; }
.service-card-top-right { border-radius: 0 14px 0 0; }
.service-card-bottom-left  { border-radius: 0 0 0 14px; }
.service-card-bottom-right { border-radius: 0 0 14px 0; }

/* Vendor service card background */
.service-card-vendor { background: #FFFAF7; }

/* Audience label pill — "For enterprise organisations" */
.service-audience-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.service-audience-enterprise {
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
}

.service-audience-vendor {
  color: #E8611A;
  background: rgba(232,97,26,0.07);
  border: 1px solid rgba(232,97,26,0.2);
}

/* Vendor-coloured service number */
.service-num-vendor { color: #E8611A; }

/* Vendor-coloured service icon */
.service-icon-vendor {
  background: rgba(232,97,26,0.07);
  border-color: rgba(232,97,26,0.2);
}

/* Vendor-coloured service tag */
.service-tag-vendor {
  background: rgba(232,97,26,0.07);
  color: #c94f12;
  border-color: rgba(232,97,26,0.2);
}

/* "Ideal for" descriptive paragraph inside service card */
.service-ideal-for {
  font-size: 13.5px;
  color: var(--slate-500);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

/* Vendor-coloured service link */
.service-link-vendor { color: #E8611A; }

/* Process section (How It Works) */
.section-process {
  background: white;
  border-top: 1px solid var(--slate-200);
}

/* How-visual snapshot label */
.how-visual-snapshot-label {
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}

/* Visual card value — large number variant */
.visual-card-value-large {
  font-size: 28px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.03em;
}

.visual-card-value-large span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

/* Visual card value — small text variant */
.visual-card-value-small { font-size: 13.5px; }

/* How-visual bottom footnote */
.how-visual-footnote-wrapper {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.how-visual-footnote {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  line-height: 1.6;
}

/* Sectors served panel */
.sectors-served-box {
  margin-top: 1.5rem;
  background: var(--blue-50);
  border: 1.5px solid var(--blue-200);
  border-radius: 14px;
  padding: 1.75rem;
}

.sectors-served-label {
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 1rem;
}

.sectors-served-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Engagement section header block */
.engagement-header {
  max-width: 600px;
  margin-bottom: 0;
}

.engagement-header .divider-line {
  width: 48px;
  height: 3px;
  background: var(--blue-500);
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

/* Engagement CTA footer area */
.engagement-cta-footer {
  text-align: center;
  margin-top: 2.5rem;
}

.engagement-cta-note {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

/* btn-primary displayed inline-flex (engagement CTA) */
.btn-primary-inline { display: inline-flex; }

/* Contact details with top spacing */
.contact-details-spaced { margin-top: 2.5rem; }

/* Contact form heading */
.contact-form-title {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.form-success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #DCFCE7;
  border: 2px solid #86EFAC;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.form-success-heading {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-success-note {
  font-size: 13.5px;
  color: var(--slate-500);
  font-weight: 300;
}

/* Form error state */
.form-error-box {
  display: none;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.form-error-msg {
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: #DC2626;
  margin: 0;
}

.form-error-msg a { color: #DC2626; }

/* Honeypot field — hidden from real users */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── ArchWin promo section (index.html #archwin) ── */
.section-archwin {
  background: var(--navy);
  color: white;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.archwin-bg-geometry {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.archwin-bg-circle-blue {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(46,109,164,0.25) 0%, transparent 70%);
}

.archwin-bg-circle-orange {
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232,97,26,0.08) 0%, transparent 70%);
}

.archwin-section-content {
  position: relative;
  z-index: 2;
}

.archwin-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
}

.archwin-header-text { max-width: 620px; }

.archwin-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8611A;
  background: rgba(232,97,26,0.12);
  border: 1px solid rgba(232,97,26,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.archwin-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E8611A;
  display: inline-block;
}

.archwin-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.archwin-heading em {
  font-style: italic;
  color: #4A8CC4;
}

.archwin-intro-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  font-weight: 300;
  max-width: 560px;
}

.archwin-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  background: #E8611A;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  align-self: flex-end;
}

.archwin-problem-strip {
  background: rgba(232,97,26,0.1);
  border: 1px solid rgba(232,97,26,0.25);
  border-radius: 14px;
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
}

.archwin-problem-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8611A;
  margin-bottom: 1rem;
}

.archwin-problem-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-weight: 300;
  max-width: 820px;
}

.archwin-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.archwin-feature-card {
  background: rgba(255,255,255,0.04);
  padding: 2rem;
  transition: background 0.2s;
}

.archwin-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(46,109,164,0.2);
  border: 1px solid rgba(74,140,196,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.archwin-feature-title {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.archwin-feature-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  font-weight: 300;
}

.archwin-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.archwin-who-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.archwin-who-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.archwin-who-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}

.archwin-who-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #E8611A;
  flex-shrink: 0;
}

.archwin-founder-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.archwin-founder-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8611A;
  margin-bottom: 0.75rem;
}

.archwin-founder-text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.archwin-view-tiers-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  background: #E8611A;
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 1rem;
}

.archwin-founder-email-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

.archwin-founder-email-note a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════
   EXTRACTED INLINE STYLES — archwin.html
   ══════════════════════════════════════════════════════ */

/* Active nav link highlight */
.nav-link-active { color: var(--blue-600); }

/* Orange variant of btn-primary (ArchWin) */
.btn-primary-orange {
  background: #E8611A;
}

/* Dark-background variant of btn-secondary */
.btn-secondary-dark {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}

/* Orange eyebrow label */
.section-eyebrow-orange { color: #E8611A; }

/* Orange divider line */
.divider-line-orange {
  width: 48px;
  height: 3px;
  background: #E8611A;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

/* Problem pain-point list */
.problem-pain-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Individual pain-point item card */
.problem-pain-item {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-left: 3px solid #E8611A;
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
}

.problem-pain-title {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.problem-pain-desc {
  font-size: 13px;
  color: var(--slate-500);
  font-weight: 300;
}

/* Problem section 2-col grid */
.problem-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Tiers section header column */
.aw-tiers-header {
  max-width: 660px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

/* Muted eyebrow (white/40) */
.section-eyebrow-muted { color: rgba(255,255,255,0.4); }

/* White section title */
.section-title-white { color: white; }

/* Blue-arch italic inside white section title */
.section-title-em-blue { color: var(--blue-arch-lt, #4A8CC4); }

/* Muted section sub (50% white) */
.section-sub-muted { color: rgba(255,255,255,0.5); }

/* Most Popular tab on featured tier */
.aw-tier-featured-tab {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-arch, #2E6DA4);
  color: white;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 10px 10px;
}

/* Growth tier badge top-margin modifier */
.aw-tier-badge-growth-offset { margin-top: 1rem; }

/* Add-on footnote below tiers grid */
.aw-tiers-footnote {
  margin-top: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.aw-tiers-footnote-text {
  font-size: 13.5px;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}

.aw-addons-link {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Add-ons header — constrained width */
.aw-addons-header { max-width: 580px; }

/* Founder section eyebrow badge */
.aw-founder-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange, #E8611A);
  background: rgba(232,97,26,0.12);
  border: 1px solid rgba(232,97,26,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.aw-founder-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange, #E8611A);
  display: inline-block;
}

.aw-founder-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.aw-founder-heading em {
  font-style: italic;
  color: #4A8CC4;
}

.aw-founder-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

/* Founder slot indicators row */
.aw-slots-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.aw-slot-item {
  background: rgba(232,97,26,0.15);
  border: 1px solid rgba(232,97,26,0.3);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 160px;
}

.aw-slot-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.4rem;
}

.aw-slot-value {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--orange, #E8611A);
}

.aw-founder-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  background: var(--orange, #E8611A);
  color: white;
  padding: 15px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.aw-founder-no-commitment {
  margin-top: 1rem;
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

/* Objections header — constrained width */
.aw-objections-header { max-width: 560px; }

/* Cross-reference section (shared archwin / arb pages) */
.cross-ref-section {
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  padding: 60px 2rem;
}

.cross-ref-box {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cross-ref-text { max-width: 600px; }

/* Blue eyebrow badge inside cross-ref box */
.cross-ref-eyebrow-blue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* Orange eyebrow badge inside cross-ref box */
.cross-ref-eyebrow-orange {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E8611A;
  background: rgba(232,97,26,0.07);
  border: 1px solid rgba(232,97,26,0.2);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.cross-ref-heading {
  font-family: var(--font-ui);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.cross-ref-desc {
  font-size: 14px;
  color: var(--slate-600);
  font-weight: 300;
  line-height: 1.7;
}

/* Blue CTA button inside cross-ref box */
.cross-ref-cta-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  background: var(--blue-600);
  color: white;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

/* Orange CTA button inside cross-ref box */
.cross-ref-cta-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  background: #E8611A;
  color: white;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

/* Final CTA elements shared across pages */
.section-eyebrow-center {
  justify-content: center;
  text-align: center;
}

.divider-line-center {
  margin: 0 auto 1.5rem;
}

.section-title-center { text-align: center; }

.section-sub-center {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.cta-btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-contact-note {
  margin-top: 1.5rem;
  font-size: 13px;
  color: var(--slate-400);
  font-weight: 300;
  text-align: center;
}

/* ══════════════════════════════════════════════════════
   EXTRACTED INLINE STYLES — arb-as-a-service.html
   ══════════════════════════════════════════════════════ */

/* Section backgrounds — inline section styles */
.section-bg-white-border-top {
  background: var(--white);
  border-top: 1px solid var(--slate-200);
}

.section-bg-slate-borders {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.section-bg-white {
  background: var(--white);
}

.section-bg-navy {
  background: var(--navy);
}

.section-bg-navy-border {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Sprint box inner content wrapper */
.sprint-inner { position: relative; z-index: 2; }

.sprint-header-label {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 0.75rem;
}

.sprint-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.sprint-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  margin-bottom: 2rem;
}

.sprint-badge-row {
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ARB tiers section eyebrow */
.section-eyebrow-blue { color: var(--blue-400); }

/* Engagement card with left-rounded corners (Tier 1) */
.engagement-card-left-radius { border-radius: 14px 0 0 14px; }

/* Engagement card with right-rounded corners (Tier 3) */
.engagement-card-right-radius { border-radius: 0 14px 14px 0; }

/* Tier intro/description note */
.tier-intro-note {
  margin: 1rem 0 1.5rem;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

/* Health check section text */
.healthcheck-text {
  font-size: 14.5px;
  color: var(--slate-600);
  font-weight: 300;
  line-height: 1.75;
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

.healthcheck-text a {
  color: var(--blue-600);
  text-decoration: none;
  font-weight: 400;
}

.healthcheck-btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.healthcheck-note {
  margin-top: 1.5rem;
  font-size: 12.5px;
  color: var(--slate-400);
  font-weight: 300;
}

/* RAG rating section inside competency panel */
.rag-section {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--slate-200);
}

.rag-header-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.rag-row {
  display: flex;
  gap: 10px;
}

.rag-block {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
  border-radius: 8px;
}

.rag-block-red {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}

.rag-block-amber {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
}

.rag-block-green {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}

.rag-block-value {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
}

.rag-block-range {
  font-size: 11px;
  font-weight: 400;
  margin-top: 2px;
}

.rag-block-red .rag-block-value,
.rag-block-red .rag-block-range  { color: #DC2626; }
.rag-block-amber .rag-block-value,
.rag-block-amber .rag-block-range { color: #D97706; }
.rag-block-green .rag-block-value,
.rag-block-green .rag-block-range { color: #16A34A; }

/* ARB Final CTA section inner */
.cta-section-inner {
  text-align: center;
  max-width: 700px;
}

.section-eyebrow-blue-center {
  color: var(--blue-400);
  justify-content: center;
  display: block;
}

.cta-sub-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

/* Ghost/outline button on dark background */
.btn-ghost-dark {
  font-family: var(--font-ui);
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost-dark:hover {
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.cta-email-note {
  margin-top: 2rem;
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

.cta-email-note a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
