/* ================================================
   FORREST ANALYTICS GROUP — STYLESHEET
   ================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ── Custom Properties ── */
:root {
  --navy-900: #050D1A;
  --navy-800: #0C1829;
  --navy-700: #162232;
  --navy-600: #1E3048;
  --navy-500: #243B55;
  --gold-300: #F0D898;
  --gold-400: #D4B462;
  --gold-500: #C9A84C;
  --gold-600: #8B6F24;
  --white: #FFFFFF;
  --off-white: #F7F6F2;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-900: #111827;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1100px;
  --section-py: 96px;
  --nav-h: 72px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.10);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.30);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur: 0.3s;

  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.1875rem; font-weight: 600; }
p { max-width: 68ch; }

/* ── Shared Layout ── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header p { max-width: none; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}
.eyebrow-light { color: var(--gold-400); }
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold-500);
  margin: 20px auto 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-900);
}
.btn-gold:hover {
  background: var(--gold-400);
  box-shadow: var(--shadow-gold);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.65);
}
.btn-navy {
  background: var(--navy-700);
  color: var(--white);
  border: 1.5px solid var(--navy-600);
}
.btn-navy:hover {
  background: var(--navy-600);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--gold-500);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.10);
}
.btn-full { width: 100%; }
.btn-loading { display: none; }

/* ── Scroll Reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   NAVIGATION
   ================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
#navbar.scrolled {
  background: var(--navy-900);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}
.nav-logo-icon {
  width: 22px;
  height: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(201,168,76,0.25));
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--dur), background var(--dur);
}
.nav-link:hover { color: var(--white); }
.nav-cta {
  background: var(--gold-500);
  color: var(--navy-900) !important;
  padding: 9px 18px;
  font-weight: 600;
}
.nav-cta:hover {
  background: var(--gold-400);
  color: var(--navy-900) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur), opacity var(--dur);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   HERO
   ================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 56px) 24px 96px;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.13) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.hero-bg-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 65% at 50% 42%, transparent 35%, var(--navy-900) 100%);
}
.hero-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}
.hero-content {
  text-align: center;
  max-width: 800px;
}
.hero-content .eyebrow { margin-bottom: 20px; }
.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-400);
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.68);
  max-width: 60ch;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stat-row {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 40px;
  width: 100%;
  max-width: 640px;
  justify-content: center;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 36px;
  gap: 6px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1.2;
}
.stat-label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  max-width: none;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.13);
  flex-shrink: 0;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.30);
  transition: color var(--dur);
  animation: bounce 2.2s ease-in-out infinite;
  z-index: 1;
}
.scroll-indicator:hover { color: rgba(255,255,255,0.65); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ================================================
   AFFILIATIONS
   ================================================ */
#affiliations {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
}
#affiliations .section-inner { padding-top: 60px; padding-bottom: 60px; }
.affiliations-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 32px;
  max-width: none;
}
.affiliations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.affiliation-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--dur) var(--ease);
}
.affiliation-card:hover { box-shadow: var(--shadow-md); }
.affil-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--navy-800);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.affil-body h3 {
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 6px;
  line-height: 1.35;
}
.affil-body p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.55;
  max-width: none;
}
.affil-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 24px;
  font-style: italic;
  max-width: none;
}

/* ================================================
   PROBLEM
   ================================================ */
#problem { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.section-sub {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 54ch;
  margin: 16px auto 0;
  text-align: center;
  line-height: 1.7;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.problem-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  margin-bottom: 18px;
}
.problem-card h3 {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-900);
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ================================================
   PROCESS
   ================================================ */
#process { background: var(--navy-900); }
#process .section-header h2 { color: var(--white); }
#process .eyebrow { color: var(--gold-400); }
#process .gold-rule { background: var(--gold-500); }
#process .process-step h3 { color: var(--white); }
#process .process-step p { color: rgba(255,255,255,0.55); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step { text-align: center; }
.process-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201,168,76,0.10);
  border: 1.5px solid rgba(201,168,76,0.30);
  color: var(--gold-400);
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.process-step h3 {
  font-size: 0.9375rem;
  color: var(--gray-900);
  margin-bottom: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 22ch;
  margin: 0 auto;
}
.process-cta { text-align: center; margin-top: 48px; }

/* ================================================
   SERVICES
   ================================================ */
#services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.service-card {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-featured {
  border-color: var(--gold-500);
  background: var(--navy-900);
  color: var(--white);
}
.service-featured h3 { color: var(--white); }
.service-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.service-icon {
  color: var(--gold-500);
  margin-bottom: 20px;
}
.service-featured .service-icon { color: var(--gold-400); }
.service-for {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-600);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
  max-width: none;
}
.service-featured .service-for { color: var(--gold-400); }
.service-card > p:not(.service-for) {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.68;
}
.service-featured > p:not(.service-for) { color: rgba(255,255,255,0.72); }
.service-list {
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.service-featured .service-list { border-color: rgba(255,255,255,0.12); }
.service-list li {
  font-size: 0.875rem;
  color: var(--gray-600);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
  max-width: none;
}
.service-featured .service-list li { color: rgba(255,255,255,0.68); }
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1.5px;
  background: var(--gold-500);
}
.service-featured .service-list li::before { background: var(--gold-400); }
.services-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 40px;
  font-style: italic;
  max-width: none;
}
.services-cta { text-align: center; margin-top: 28px; }

/* ================================================
   ABOUT
   ================================================ */
#about {
  background: var(--navy-800);
  color: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--navy-700);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.about-photo-accent {
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 2px solid var(--gold-500);
  border-radius: var(--radius-md);
  opacity: 0.35;
  z-index: 0;
}
.about-content h2 { color: var(--white); margin-bottom: 8px; }
.about-content .gold-rule { margin: 20px 0 28px; }
.about-content p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  font-size: 0.9375rem;
  line-height: 1.75;
  max-width: 56ch;
}
.about-content .btn { margin-top: 12px; }

/* ================================================
   FAQ
   ================================================ */
#faq { background: var(--off-white); }
#faq .section-inner { max-width: 780px; }
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--gray-200);
}
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: color var(--dur);
}
.faq-q:hover { color: var(--navy-700); }
.faq-q[aria-expanded="true"] { color: var(--navy-800); }
.faq-icon {
  flex-shrink: 0;
  color: var(--gold-500);
  transition: transform var(--dur) var(--ease);
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-a { padding-bottom: 22px; }
.faq-a p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.72;
  max-width: 58ch;
}

/* ================================================
   CONTACT
   ================================================ */
#contact { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--gray-900);
  margin-bottom: 8px;
}
.contact-info .gold-rule { margin: 20px 0 24px; }
.contact-info > p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.72;
  margin-bottom: 28px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gray-700);
}
.contact-detail a {
  font-size: 0.9375rem;
  color: var(--navy-700);
  font-weight: 500;
  transition: color var(--dur);
}
.contact-detail a:hover { color: var(--gold-600); }
.contact-note {
  font-size: 0.8125rem;
  color: var(--gray-400);
  font-style: italic;
  max-width: none;
}
.contact-form-wrap {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
}

/* ── Form ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.02em;
}
label span { color: var(--gold-600); }
input, select, textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--gray-900);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color var(--dur), box-shadow var(--dur);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(30,48,72,0.09);
}
input::placeholder, textarea::placeholder { color: var(--gray-400); }
textarea { resize: vertical; min-height: 120px; }
.select-wrap { position: relative; }
select { appearance: none; padding-right: 36px; cursor: pointer; }
.select-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}
#contact-form .btn-gold { margin-top: 8px; }
.form-disclaimer {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
  max-width: none;
}
.form-success {
  text-align: center;
  padding: 52px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--navy-700);
}
.form-success h3 { font-size: 1.375rem; color: var(--navy-800); }
.form-success p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  max-width: 34ch;
  text-align: center;
}

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.65);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 24px 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  max-width: none;
}
.footer-tagline {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.40);
  max-width: none;
}
.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: color var(--dur);
}
.footer-nav a:hover { color: var(--white); }
.footer-contact { text-align: right; }
.footer-contact a {
  font-size: 0.875rem;
  color: var(--gold-400);
  transition: color var(--dur);
}
.footer-contact a:hover { color: var(--gold-300); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.30);
  max-width: none;
}
.footer-disclaimer { text-align: right; font-style: italic; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .affiliations-grid { grid-template-columns: 1fr; gap: 16px; }
  .problem-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-wrap { max-width: 340px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: span 2; text-align: left; }
}
@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy-900);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link { padding: 12px 16px; font-size: 1rem; }
  .nav-cta { text-align: center; }
  .hero-stat-row { flex-direction: column; gap: 24px; }
  .hero-stat-divider { width: 48px; height: 1px; }
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .process-step p { max-width: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
  .footer-contact { grid-column: 1; text-align: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-disclaimer { text-align: center; }
  .about-photo-wrap { max-width: 280px; margin: 0 auto; }
  .about-inner { text-align: center; }
  .about-content .gold-rule { margin: 20px auto 28px; }
  .about-content p { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  :root { --section-py: 52px; --nav-h: 60px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .service-card { padding: 28px 20px; }
}

/* ================================================
   HUB PAGE
   ================================================ */

/* ── Hub Nav (minimal) ── */
.hub-nav-spacer { flex: 1; }

/* ── Hub Path Cards ── */
#hub-paths { background: var(--off-white); border-bottom: 1px solid var(--gray-200); }
.hub-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hub-path-card {
  display: flex;
  flex-direction: column;
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.hub-path-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.hub-path-card.hub-path-dark {
  background: var(--navy-900);
  border-color: var(--gold-500);
}
.hub-path-icon { color: var(--gold-500); margin-bottom: 20px; }
.hub-path-dark .hub-path-icon { color: var(--gold-400); }
.hub-path-card h2 {
  font-size: clamp(1.375rem, 2vw, 1.875rem);
  color: var(--gray-900);
  margin-bottom: 14px;
}
.hub-path-dark h2 { color: var(--white); }
.hub-path-card > p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.72;
  margin-bottom: 24px;
  flex: 1;
  max-width: 48ch;
}
.hub-path-dark > p { color: rgba(255,255,255,0.65); }
.hub-path-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.hub-path-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--gray-100);
  color: var(--gray-600);
  max-width: none;
}
.hub-path-dark .hub-path-tag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.50);
}
.hub-path-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--dur);
}
.hub-path-dark .hub-path-cta { color: var(--gold-400); }
.hub-path-card:hover .hub-path-cta { gap: 10px; }
.hub-path-cta svg { flex-shrink: 0; }

/* ── Hub About ── */
#hub-about { background: var(--navy-800); color: var(--white); }
.hub-about-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hub-about-inner h2 { color: var(--white); margin-bottom: 8px; }
.hub-about-inner .gold-rule { margin: 20px auto 28px; }
.hub-about-inner > p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9375rem;
  line-height: 1.78;
  margin-bottom: 16px;
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}
.hub-creds {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 36px;
}
.hub-cred {
  padding: 0 36px;
  text-align: center;
}
.hub-cred:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hub-cred strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
  max-width: none;
}
.hub-cred span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.44);
  max-width: none;
}

/* ── Hub Responsive ── */
@media (max-width: 768px) {
  .hub-paths { grid-template-columns: 1fr; }
  .hub-path-card { padding: 36px 28px; }
  .hub-cred {
    padding: 16px 0;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    width: 100%;
  }
  .hub-cred:last-child { border-bottom: none; }
  .hub-creds { flex-direction: column; }
}

/* ================================================
   SMALL BUSINESS SECTION
   ================================================ */

/* ── Active nav state (sub-pages) ── */
.nav-link-active {
  color: var(--white) !important;
  background: rgba(255,255,255,0.08);
}

/* ── Trust Strip ── */
#trust-strip {
  background: var(--navy-800);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
#trust-strip .section-inner { padding-top: 32px; padding-bottom: 32px; }
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 44px;
}
.trust-badge:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.12);
}
.trust-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
}
.trust-badge-text strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}
.trust-badge-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.44);
}

/* ── Industry Grid ── */
#who-for {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.industry-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-align: center;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.industry-tile:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.industry-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
}
.industry-tile span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  max-width: none;
}

/* ── Product Cards (landing page) ── */
#sb-products { background: var(--white); }
.sb-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sb-product-card {
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-align: center;
  align-items: center;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.sb-product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.sb-product-icon {
  color: var(--gold-500);
  margin-bottom: 20px;
}
.sb-product-card h3 {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.sb-product-tagline {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.sb-product-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--dur), gap var(--dur);
}
.sb-product-link:hover { color: var(--gold-500); gap: 10px; }
.sb-product-link svg { flex-shrink: 0; }

/* ── 3-step process override ── */
.process-steps-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ── Why Work With Us ── */
#why-us {
  background: var(--navy-800);
  color: var(--white);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}
.why-content h2 { color: var(--white); margin-bottom: 8px; }
.why-content .gold-rule { margin: 20px 0 28px; }
.why-content p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  line-height: 1.78;
  margin-bottom: 24px;
  max-width: 52ch;
}
.why-credentials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-credential {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
}
.why-cred-badge {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.75rem;
}
.why-cred-body strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 2px;
}
.why-cred-body span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.48);
}

/* ── Case Study Teaser ── */
#cs-teaser {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
#cs-teaser .section-inner { padding-top: 72px; padding-bottom: 72px; }
.cs-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cs-teaser-content { flex: 1; min-width: 280px; }
.cs-teaser-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  color: var(--gray-900);
  margin-bottom: 16px;
}
.cs-teaser-content p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.72;
  margin-bottom: 28px;
  max-width: 52ch;
}
.cs-teaser-stats {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-shrink: 0;
}
.cs-stat { text-align: center; }
.cs-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 6px;
}
.cs-stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gray-500);
  max-width: none;
}

/* ── Pricing Table ── */
/* AUDIT: Added .pricing-grid-2col to enforce 2-col on desktop, 1-col on mobile
   without using an inline style that overrides responsive breakpoints */
.pricing-grid-2col {
  grid-template-columns: repeat(2, 1fr) !important;
}
.pricing-section { background: var(--off-white); }
.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 32px;
  font-style: italic;
  max-width: none;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-col {
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  position: relative;
}
.pricing-col.pricing-featured {
  background: var(--navy-900);
  border-color: var(--gold-500);
  color: var(--white);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.pricing-plan-name {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--gold-600);
  margin-bottom: 20px;
  max-width: none;
}
.pricing-col.pricing-featured .pricing-plan-name { color: var(--gold-400); }
.pricing-setup-note {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 2px;
  max-width: none;
}
.pricing-col.pricing-featured .pricing-setup-note { color: rgba(255,255,255,0.44); }
.pricing-setup-amount {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
  line-height: 1;
}
.pricing-col.pricing-featured .pricing-setup-amount { color: var(--white); }
.pricing-monthly-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gray-500);
  margin-bottom: 4px;
  max-width: none;
}
.pricing-col.pricing-featured .pricing-monthly-label { color: rgba(255,255,255,0.40); }
.pricing-monthly-amount {
  font-family: var(--font-serif);
  font-size: 2.125rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 28px;
}
.pricing-monthly-amount sub {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  vertical-align: baseline;
  position: relative;
  bottom: 0;
}
.pricing-col.pricing-featured .pricing-monthly-amount { color: var(--white); }
.pricing-features {
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.pricing-col.pricing-featured .pricing-features { border-color: rgba(255,255,255,0.12); }
.pricing-features li {
  font-size: 0.875rem;
  color: var(--gray-600);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
  max-width: none;
}
.pricing-col.pricing-featured .pricing-features li { color: rgba(255,255,255,0.72); }
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1.5px;
  background: var(--gold-500);
}
.pricing-col.pricing-featured .pricing-features li::before { background: var(--gold-400); }

/* ── Built By Block ── */
.built-by {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}
.built-by-logo {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--navy-800);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.built-by-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.built-by-text p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 56ch;
}

/* ── Demo Callout Block ── */
.demo-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(34, 197, 94, 0.08);
  border: 1.5px solid rgba(34, 197, 94, 0.28);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  max-width: 780px;
  margin: 0 auto;
}
.demo-callout-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.demo-callout-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-700);
}
.demo-callout-text strong {
  display: block;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

/* ── Product Page FAQ (non-accordion) ── */
.product-section .faq-list {
  border-top: 1px solid var(--gray-200);
  max-width: 780px;
  margin: 0 auto;
}
.product-section .faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
}
.product-section .faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  font-family: var(--font-sans);
}
.product-section .faq-item p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.72;
  max-width: 66ch;
}

/* ── Product Page Hero ── */
.product-hero {
  background: var(--navy-900);
  padding: calc(var(--nav-h) + 72px) 24px 88px;
  position: relative;
  overflow: hidden;
}
.product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.10) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.product-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 65% at 50% 42%, transparent 35%, var(--navy-900) 100%);
}
.product-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255,255,255,0.40);
  transition: color var(--dur);
}
.breadcrumb a:hover { color: rgba(255,255,255,0.75); }
.breadcrumb span { color: rgba(255,255,255,0.20); font-size: 0.75rem; }
.product-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
  max-width: none;
}
.product-hero-inner h1 {
  color: var(--white);
  max-width: 20ch;
  margin-bottom: 20px;
}
.product-hero-tagline {
  font-size: 1.1875rem;
  color: rgba(255,255,255,0.68);
  max-width: 52ch;
  line-height: 1.65;
  margin-bottom: 36px;
}
.product-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Product Content Sections ── */
.product-section { background: var(--white); }
.product-section-alt {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.product-section-dark { background: var(--navy-900); }
.product-section-dark .section-header h2 { color: var(--white); }
.product-section-dark .eyebrow { color: var(--gold-400); }
.product-section-dark .gold-rule { background: var(--gold-500); }

/* process-step text on light-background product pages */
.product-section-alt .process-step h3,
.product-section .process-step h3 {
  color: var(--gray-900);
}
.product-section-alt .process-step p,
.product-section .process-step p {
  color: var(--gray-600);
  max-width: none;
}

.problem-callout {
  font-size: 1.0625rem;
  color: var(--gray-700);
  line-height: 1.8;
  text-align: center;
  padding: 28px 32px;
  background: var(--gray-50);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 28px;
  max-width: 66ch;
}
.problem-body > p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.78;
  text-align: center;
  margin-bottom: 16px;
  max-width: 66ch;
  margin-left: auto;
  margin-right: auto;
}
.product-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.outcome-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: box-shadow var(--dur);
}
.outcome-card:hover { box-shadow: var(--shadow-md); }
.outcome-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 10px;
}
.outcome-card h4 {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.outcome-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── Case Study Page ── */
.cs-disclaimer-box {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 48px;
}
.cs-disclaimer-box p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  max-width: 72ch;
}
.cs-disclaimer-box strong { font-style: normal; color: var(--gray-800); }
.cs-biz-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.cs-biz-stat {
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-align: center;
}
.cs-biz-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 8px;
}
.cs-biz-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gray-500);
  max-width: none;
}
.pain-point-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.pain-point-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1.5px solid rgba(201,168,76,0.30);
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.pain-point-card h3 {
  font-size: 1.0625rem;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.pain-point-card > div > p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.72;
  max-width: 46ch;
}
.pain-solution-box {
  background: var(--navy-900);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,168,76,0.22);
  padding: 28px;
}
.solution-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--gold-400);
  margin-bottom: 10px;
  max-width: none;
}
.pain-solution-box h4 {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.pain-solution-box p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
  max-width: none;
}
.pain-solution-box .btn {
  margin-top: 20px;
  font-size: 0.8125rem;
  padding: 10px 18px;
}
.screenshot-placeholder {
  aspect-ratio: 16/9;
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray-400);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 32px;
}
.screenshot-placeholder svg { color: var(--gray-300); }

/* ================================================
   SMALL BUSINESS RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .trust-badge { padding: 0 24px; }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .sb-products-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; }
  /* AUDIT: Force 2col pricing grid to single column at tablet and below */
  .pricing-grid-2col { grid-template-columns: 1fr !important; }
  .cs-teaser-inner { flex-direction: column; align-items: flex-start; }
  .cs-teaser-stats { width: 100%; justify-content: flex-start; }
  .cs-biz-stats { grid-template-columns: repeat(2, 1fr); }
  .pain-point-card { grid-template-columns: 1fr; gap: 24px; }
  .product-how-steps { grid-template-columns: 1fr; gap: 24px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .process-steps-3 { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .trust-badge {
    padding: 16px 0;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    width: 100%;
  }
  .trust-badge:last-child { border-bottom: none; }
  .trust-badges { flex-direction: column; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-teaser-stats { gap: 28px; flex-wrap: wrap; }
  .cs-biz-stats { grid-template-columns: repeat(2, 1fr); }
  .product-hero-inner h1 { max-width: 100%; }
  .built-by { flex-direction: column; }
}
@media (max-width: 480px) {
  .cs-biz-stats { grid-template-columns: 1fr; }
  .product-hero-actions { flex-direction: column; align-items: flex-start; }
  .pain-point-card { padding: 24px; }
  /* AUDIT: Belt-and-suspenders overflow protection for pricing section on small phones */
  .pricing-section { overflow-x: hidden; }
}

/* ── Headshot (Why Work With Us) ── */
/* AUDIT: Added headshot styles — real people buy from real people */
.why-headshot-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.why-headshot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid var(--gold-500);
  flex-shrink: 0;
}
.why-headshot-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.85;
  letter-spacing: 0.01em;
}

/* ── FAQ Section ── */
/* AUDIT: Added FAQ section styles */
#sb-faq { background: var(--off-white); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item[open] {
  border-color: var(--gold-400);
}
.faq-question {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-900);
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gold-600);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 24px 20px;
  border-top: 1px solid var(--gray-100);
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 12px 0 0;
  max-width: none;
}
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ================================================
   CASE STUDY — INTERACTIVE DEMO COMPONENTS
   ================================================ */

/* ── Demo Section Container ── */
#cs-demos {
  background: var(--navy-900);
  padding: 80px 0;
}
#cs-demos .section-inner { padding-top: 0; padding-bottom: 0; }
#cs-demos .section-label { color: var(--gold-400); }
#cs-demos h2 { color: var(--white); margin-bottom: 12px; }
#cs-demos .section-sub { color: var(--gray-400); margin-bottom: 48px; max-width: 56ch; }

/* ── Tab Bar ── */
.cs-demo-tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.cs-demo-tab {
  padding: 12px 22px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-400);
  background: transparent;
  border: 1px solid transparent;
  border-bottom: none;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  position: relative;
  bottom: -1px;
}
.cs-demo-tab:hover { color: var(--white); }
.cs-demo-tab.cs-demo-tab-active {
  color: var(--gold-400);
  background: var(--navy-800);
  border-color: rgba(255,255,255,0.10);
}

/* ── Panel Visibility ── */
.cs-demo-panel { display: none; }
.cs-demo-panel.cs-demo-panel-active { display: block; }

/* ── Shared Panel Layout ── */
.cs-demo-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}
.cs-demo-desc h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.375rem;
  margin-bottom: 12px;
}
.cs-demo-desc p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.cs-demo-desc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-demo-desc ul li {
  color: var(--gray-400);
  font-size: 0.875rem;
  padding-left: 18px;
  position: relative;
}
.cs-demo-desc ul li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--gold-500);
}

/* ── Daily Briefing — Phone Frame ── */
.cs-demo-dates {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cs-date-btn {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  background: rgba(255,255,255,0.07);
  color: var(--gray-400);
  border: 1px solid rgba(255,255,255,0.10);
  transition: all var(--dur) var(--ease);
}
.cs-date-btn:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.cs-date-btn.cs-date-btn-active {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}
.cs-phone-frame {
  background: #1C1C1E;
  border-radius: 36px;
  padding: 20px 8px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.60), 0 0 0 1px rgba(255,255,255,0.08);
  max-width: 380px;
  margin: 0 auto;
}
.cs-phone-header {
  text-align: center;
  padding: 0 16px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 14px;
}
.cs-phone-header strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.cs-phone-sub {
  font-size: 0.75rem;
  color: #8E8E93;
}
.cs-phone-date {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: #8E8E93;
  margin-bottom: 12px;
}
.cs-bubble-row {
  display: flex;
  padding: 0 8px;
  margin-bottom: 8px;
}
.cs-bubble {
  background: #3A3A3C;
  color: var(--white);
  border-radius: 18px 18px 18px 4px;
  padding: 12px 15px;
  font-size: 0.875rem;
  line-height: 1.55;
  max-width: 92%;
  white-space: pre-wrap;
}
.cs-bubble-delivered {
  display: block;
  text-align: right;
  font-size: 0.6875rem;
  color: #8E8E93;
  padding: 4px 8px 0;
}

/* ── Review Reply Demo ── */
.cs-review-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 20px;
  color: var(--gold-300);
  font-size: 0.875rem;
}
.cs-alert-icon { font-size: 1.25rem; flex-shrink: 0; }
.cs-review-demo { display: flex; flex-direction: column; gap: 12px; }
.cs-review-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cs-review-btn {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  background: rgba(255,255,255,0.07);
  color: var(--gray-400);
  border: 1px solid rgba(255,255,255,0.10);
  transition: all var(--dur) var(--ease);
}
.cs-review-btn:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.cs-review-btn.cs-review-btn-active {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}
.cs-review-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cs-review-left, .cs-review-right {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.cs-review-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.cs-review-stars { color: #FFB800; font-size: 1rem; letter-spacing: 1px; }
.cs-review-platform {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cs-review-date { font-size: 0.75rem; color: var(--gray-500); margin-left: auto; }
.cs-review-text {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.cs-review-tech {
  font-size: 0.75rem;
  color: var(--gold-400);
  font-weight: 500;
}
.cs-reply-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.cs-reply-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.55;
  padding: 12px;
  resize: vertical;
  min-height: 100px;
}
.cs-reply-textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}
.cs-reply-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.cs-btn-approve {
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--gold-500);
  color: var(--navy-900);
  transition: background var(--dur) var(--ease), transform 0.1s;
}
.cs-btn-approve:hover { background: var(--gold-400); transform: translateY(-1px); }
.cs-btn-skip {
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(255,255,255,0.07);
  color: var(--gray-400);
  border: 1px solid rgba(255,255,255,0.10);
  transition: all var(--dur) var(--ease);
}
.cs-btn-skip:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.cs-reply-approved {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4ADE80;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 0;
}

/* ── Voice Receptionist Chat ── */
.cs-chat-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cs-chat-header {
  background: rgba(255,255,255,0.05);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cs-chat-header strong {
  color: var(--white);
  font-size: 0.9375rem;
}
.cs-chat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9CA3AF;
  flex-shrink: 0;
}
.cs-chat-dot.cs-chat-dot-live {
  background: #4ADE80;
  box-shadow: 0 0 0 2px rgba(74,222,128,0.25);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 2px rgba(74,222,128,0.25); }
  50% { box-shadow: 0 0 0 5px rgba(74,222,128,0.12); }
}
.cs-chat-badge {
  margin-left: auto;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cs-badge-emergency {
  background: rgba(239,68,68,0.20);
  color: #FCA5A5;
  border: 1px solid rgba(239,68,68,0.30);
}
.cs-badge-booked {
  background: rgba(74,222,128,0.15);
  color: #86EFAC;
  border: 1px solid rgba(74,222,128,0.25);
}
.cs-chat-feed {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  max-height: 340px;
  overflow-y: auto;
}
.cs-chat-feed::-webkit-scrollbar { width: 4px; }
.cs-chat-feed::-webkit-scrollbar-track { background: transparent; }
.cs-chat-feed::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }
.cs-chat-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.cs-chat-dawn { flex-direction: row; }
.cs-chat-caller { flex-direction: row-reverse; }
.cs-chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
}
.cs-chat-dawn .cs-chat-avatar {
  background: var(--gold-500);
  color: var(--navy-900);
}
.cs-chat-caller .cs-chat-avatar {
  background: var(--navy-600);
  color: var(--white);
}
.cs-chat-bubble {
  max-width: 72%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.55;
}
.cs-chat-dawn .cs-chat-bubble {
  background: var(--navy-700);
  color: var(--white);
  border-bottom-left-radius: 4px;
}
.cs-chat-caller .cs-chat-bubble {
  background: rgba(255,255,255,0.08);
  color: var(--gray-200);
  border-bottom-right-radius: 4px;
}
.cs-chat-name {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  color: var(--gray-500);
}
.cs-chat-system {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-500);
  font-style: italic;
  padding: 4px 0;
}
.cs-chat-controls {
  padding: 14px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cs-btn-play {
  padding: 8px 20px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--gold-500);
  color: var(--navy-900);
  transition: background var(--dur) var(--ease), transform 0.1s;
}
.cs-btn-play:hover { background: var(--gold-400); transform: translateY(-1px); }
.cs-btn-skip-all {
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(255,255,255,0.07);
  color: var(--gray-400);
  border: 1px solid rgba(255,255,255,0.10);
  transition: all var(--dur) var(--ease);
}
.cs-btn-skip-all:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.cs-scenario-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.cs-scenario-btn {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  background: rgba(255,255,255,0.07);
  color: var(--gray-400);
  border: 1px solid rgba(255,255,255,0.10);
  transition: all var(--dur) var(--ease);
}
.cs-scenario-btn:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.cs-scenario-btn.cs-scenario-btn-active {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

/* ── Re-Engagement Engine ── */
.cs-reeng-total {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.cs-reeng-kpi {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cs-reeng-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.cs-reeng-kpi-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cs-reeng-demo {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: start;
}
.cs-seg-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cs-seg-btn {
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(255,255,255,0.04);
  color: var(--gray-400);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all var(--dur) var(--ease);
  line-height: 1.35;
}
.cs-seg-btn:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.cs-seg-btn.cs-seg-btn-active {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.30);
  color: var(--gold-300);
}
.cs-seg-detail {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.cs-seg-meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.cs-seg-count {
  font-size: 0.8125rem;
  color: var(--gray-500);
}
.cs-seg-customer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 14px;
}
.cs-seg-customer-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.cs-seg-msgs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cs-seg-sms, .cs-seg-email {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.cs-seg-msg-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-400);
  margin-bottom: 8px;
}
.cs-sms-bubble {
  background: #3A3A3C;
  color: var(--white);
  border-radius: 14px 14px 14px 4px;
  padding: 10px 14px;
  font-size: 0.8125rem;
  line-height: 1.55;
  display: inline-block;
  max-width: 100%;
}
.cs-sms-count {
  font-size: 0.6875rem;
  color: #8E8E93;
  text-align: right;
  margin-top: 4px;
}
.cs-email-subject {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.cs-email-body {
  font-size: 0.8125rem;
  color: var(--gray-400);
  line-height: 1.6;
  white-space: pre-wrap;
}

/* ── ROI Summary Section ── */
#cs-roi {
  background: var(--navy-800);
  padding: 80px 0;
}
#cs-roi .section-inner { padding-top: 0; padding-bottom: 0; }
#cs-roi .section-label { color: var(--gold-400); }
#cs-roi h2 { color: var(--white); margin-bottom: 12px; }
#cs-roi .section-sub { color: var(--gray-400); margin-bottom: 48px; max-width: 56ch; }

.cs-roi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.cs-roi-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.cs-roi-card:hover { border-color: var(--gold-500); box-shadow: var(--shadow-md); }
.cs-roi-product {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-600);
  margin-bottom: 10px;
}
.cs-roi-card h3 {
  color: var(--navy-900);
  font-size: 1.1875rem;
  margin-bottom: 20px;
}
.cs-roi-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.cs-roi-table th {
  text-align: left;
  padding: 6px 0;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
}
.cs-roi-table td {
  padding: 8px 0;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  vertical-align: top;
}
.cs-roi-table td:last-child { color: var(--gray-900); text-align: right; font-weight: 500; }
.cs-roi-after {
  padding: 14px 16px;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.20);
  border-radius: var(--radius-md);
  margin-top: 16px;
  font-size: 0.875rem;
  color: #15803D;
  font-weight: 500;
}

/* ── Demo Responsive ── */
@media (max-width: 1024px) {
  .cs-demo-layout { grid-template-columns: 1fr; gap: 28px; }
  .cs-reeng-demo { grid-template-columns: 1fr; }
  .cs-seg-list { flex-direction: row; flex-wrap: wrap; }
  .cs-seg-btn { width: auto; }
  .cs-roi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  #cs-demos, #cs-roi { padding: 56px 0; }
  .cs-demo-tabs { gap: 4px; }
  .cs-demo-tab { padding: 10px 14px; font-size: 0.875rem; }
  .cs-review-cols { grid-template-columns: 1fr; }
  .cs-reeng-total { gap: 20px; }
  .cs-chat-feed { max-height: 280px; }
}
@media (max-width: 480px) {
  .cs-demo-tab { padding: 8px 12px; font-size: 0.8125rem; }
  .cs-phone-frame { border-radius: 24px; }
  .cs-reeng-demo { grid-template-columns: 1fr; }
  .cs-roi-card { padding: 20px 16px; }
}
