/*
Theme Name: VisibleIQ
Theme URI: https://bevisibleiq.com
Author: Rafael De Jesus
Author URI: https://bevisibleiq.com
Description: Custom theme for VisibleIQ - AI-first organic growth agency
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: visibleiq
*/

/* ================================================================
   1. CSS VARIABLES
   ================================================================ */
:root {
  --base: #FAFAF7;
  --surface: #F5F0EB;
  --border: #E5E0DA;
  --caption: #8A847D;
  --body: #3D3833;
  --heading: #1e1e1e;
  --dark-bg: #091525;
  --dark-navy: #091525;
  --ice: #e8f4ff;
  --sky: #b3d9ff;
  --light-blue: #2da0ff;
  --primary: #0b7bfb;
  --mid-blue: #0962cc;
  --deep-blue: #0347e0;
  --dark-blue: #022b8a;
  --cta: #1e1e1e;
  --cta-hover: #333333;
  --text-on-dark: #FAFAF7;
  --body-on-dark: #F5F3F0;
  --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Newsreader', Georgia, serif;
  --font-mono: 'Geist Mono', monospace;
  --max-width-site: 1140px;
  --max-width-content: 680px;
  --max-width-toc: 220px;
  --radius: 3px;
}

/* ================================================================
   2. GLOBAL RESET & BASE STYLES
   ================================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--body);
  background: var(--base);
  line-height: 1.65;
  overflow-x: clip;
}

a { text-decoration: none; color: inherit; }

/* Scroll offset for fixed nav */
[id] {
  scroll-margin-top: 80px;
}

/* Focus states */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Stagger animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 500ms ease-out both;
}
.fade-up-0 { animation-delay: 0ms; }
.fade-up-1 { animation-delay: 80ms; }
.fade-up-2 { animation-delay: 150ms; }
.fade-up-3 { animation-delay: 220ms; }
.fade-up-4 { animation-delay: 290ms; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   3. NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease;
}
.nav.scrolled {
  background: rgba(250, 250, 247, 0.95);
  border-bottom-color: var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
/* Blog article / case study pages: nav always has bg */
.nav.nav-solid {
  background: rgba(250, 250, 247, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width-site);
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo svg {
  height: 36px;
  width: auto;
  display: block;
}
.nav-center {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
  transition: color 150ms ease;
}
.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: var(--cta);
  padding: 10px 20px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 200ms ease;
  border: none;
  cursor: pointer;
}
.nav-cta:hover { background: var(--cta-hover); }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 22px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--heading);
  position: absolute;
  left: 0;
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav-hamburger span:nth-child(1) { top: 0; }
.nav-hamburger span:nth-child(2) { top: 7px; }
.nav-hamburger span:nth-child(3) { top: 14px; }
.nav-hamburger.open span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* ================================================================
   4. MOBILE MENU (fullscreen overlay — homepage, legal, AI info)
   ================================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FAFAF7;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 80px 24px 40px;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu a {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--heading);
  text-decoration: none;
  text-align: center;
  transition: color 150ms ease;
}
.mobile-menu a:hover {
  color: var(--primary);
}
.mobile-menu .mobile-cta {
  display: block;
  width: 100%;
  max-width: 320px;
  text-align: center;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: var(--cta);
  padding: 14px 24px;
  border-radius: 3px;
  text-decoration: none;
  margin-top: 8px;
  transition: background 200ms ease;
}
.mobile-menu .mobile-cta:hover {
  background: var(--cta-hover);
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-close svg {
  width: 20px;
  height: 20px;
  color: var(--heading);
}
body.menu-open {
  overflow: hidden;
}

/* Mobile drawer (blog article + case study pages) */
.mobile-drawer {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--base);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 250ms ease, opacity 250ms ease;
}
.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer-inner {
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-drawer a {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 150ms;
}
.mobile-drawer a:last-of-type { border-bottom: none; }
.mobile-drawer a:hover { color: var(--primary); }
.mobile-drawer a.active { color: var(--primary); }
.mobile-drawer .mobile-drawer-cta {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: var(--cta);
  padding: 12px 20px;
  border-radius: 2px;
  margin-top: 16px;
  border-bottom: none;
}
.mobile-drawer .mobile-drawer-cta:hover { background: var(--cta-hover); color: #fff; }

/* ================================================================
   5. READING PROGRESS BAR (blog article + case study)
   ================================================================ */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--primary);
  z-index: 9999;
  transition: width 80ms linear;
  pointer-events: none;
}

/* ================================================================
   6. BREADCRUMBS (blog index + blog article + case study)
   ================================================================ */
/* Blog index breadcrumbs */
.breadcrumbs {
  max-width: var(--max-width-site);
  margin: 0 auto;
  padding: 80px 32px 0;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--caption);
}
.breadcrumbs a {
  color: var(--caption);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumbs a:hover { color: var(--body); }
.breadcrumbs .sep {
  margin: 0 8px;
  color: var(--border);
}

/* Blog article / case study breadcrumbs */
.breadcrumbs-wrap {
  max-width: var(--max-width-site);
  margin: 0 auto;
  padding: 16px 32px;
}
.breadcrumbs-wrap .breadcrumbs {
  padding: 0;
}
.breadcrumbs .separator {
  margin: 0 8px;
  color: var(--border);
}
.breadcrumbs .current { color: var(--body); }

/* ================================================================
   7. FOOTER (shared across most pages)
   ================================================================ */
.footer {
  background: #091525;
}
.footer-inner {
  max-width: var(--max-width-site);
  margin: 0 auto;
  padding: 32px 24px 48px;
}
.footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer-brand-tagline {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  color: var(--body-on-dark);
  max-width: 240px;
  margin-top: 12px;
  line-height: 1.55;
}
.footer-brand-email {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 13px;
  color: var(--caption);
  margin-top: 16px;
  text-decoration: none;
  display: inline-block;
  transition: color 200ms;
}
.footer-brand-email:hover {
  color: var(--text-on-dark);
}
.footer-col-heading {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: none;
  color: var(--text-on-dark);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-links a {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  color: var(--body-on-dark);
  text-decoration: none;
  transition: color 200ms;
}
.footer-links a:hover {
  color: var(--text-on-dark);
}
.footer-ai-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 32px 0 24px;
}
.footer-ai-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-ai-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  color: var(--caption);
}
.footer-ai-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-ai-links a {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  color: var(--caption);
  text-decoration: none;
  transition: color 200ms;
}
.footer-ai-links a:hover {
  color: var(--text-on-dark);
}
.footer-ai-links .dot {
  font-size: 12px;
  color: var(--caption);
  user-select: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copyright {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  color: var(--caption);
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-legal a {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  color: var(--caption);
  text-decoration: none;
  transition: color 200ms;
}
.footer-legal a:hover {
  color: var(--text-on-dark);
}
.footer-legal .dot {
  font-size: 12px;
  color: var(--caption);
  user-select: none;
}
.footer-logo svg {
  width: 120px;
  height: auto;
  display: block;
}

/* ================================================================
   8. FOOTER MINIMAL (blog article + case study narrower footer)
   ================================================================ */
.footer-narrow .footer-inner {
  max-width: 960px;
  padding: 60px 24px 32px;
}
.footer-narrow .footer-col-heading {
  font-size: 13px;
}
.footer-narrow .footer-links a {
  font-size: 13px;
}
.footer-narrow .footer-ai-label,
.footer-narrow .footer-ai-links a {
  font-size: 12px;
}

/* Footer Minimal (Get Started page — just copyright + legal) */
.footer-minimal {
  background: var(--dark-bg);
  padding: 32px 24px;
}
.footer-minimal-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-minimal .footer-copyright {
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--caption);
}
.footer-minimal .footer-legal {
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-minimal .footer-legal a {
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--caption);
  text-decoration: none;
  transition: color 200ms;
}
.footer-minimal .footer-legal a:hover {
  color: var(--text-on-dark);
}
.footer-minimal .footer-legal .dot {
  font-size: 12px;
  color: var(--caption);
  user-select: none;
}

/* ================================================================
   9. HOMEPAGE — HERO
   ================================================================ */
.hero {
  padding: 140px 0 72px;
  text-align: center;
  background: var(--base);
  position: relative;
}
.hero::before {
  display: none;
}
.hero-inner {
  max-width: 660px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.hero-qualifier {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: none; /* no all caps */
  color: var(--body);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  text-decoration: none;
  transition: all 150ms ease;
  cursor: pointer;
}
.hero-qualifier:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(11, 123, 251, 0.05);
}
.hero-headline {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: clamp(38px, 6vw, 58px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--heading);
  margin-bottom: 18px;
}
.hero-headline .highlight { color: #1e1e1e; white-space: nowrap; }
.hero-sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--body);
  max-width: 520px;
  margin: 0 auto 36px;
}
.hero-form-wrap {
  max-width: 500px;
  margin: 0 auto;
}
.hero-form {
  display: flex;
  width: 100%;
}
.hero-form input {
  flex: 1;
  min-width: 0;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--body);
  background: #fff;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: 3px 0 0 3px;
  padding: 15px 18px;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.hero-form input::placeholder { color: var(--caption); }
.hero-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--ice);
  position: relative;
  z-index: 1;
}
.hero-form button {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: var(--cta);
  border: 1.5px solid var(--cta);
  border-radius: 0 3px 3px 0;
  padding: 15px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 200ms ease, border-color 200ms ease;
}
.hero-form button:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
}

/* ================================================================
   9. HOMEPAGE — PLATFORM BAR
   ================================================================ */
.platforms {
  background: var(--base);
  padding: 32px 0;
  opacity: 0;
  animation: fadeUp 500ms ease-out 400ms both;
}
.platforms-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.platforms-label {
  font-size: 15px;
  font-weight: 400;
  color: var(--body);
  text-align: center;
  margin-bottom: 14px;
}
.platforms-label em {
  font-style: italic;
}
.platforms-mask {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.platforms-track {
  display: flex;
  width: max-content;
  animation: marquee 15s linear infinite;
  will-change: transform;
}
.platforms-track:hover {
  animation-play-state: paused;
}
.platforms-set {
  display: flex;
  align-items: center;
  gap: 52px;
  padding-right: 52px;
  flex-shrink: 0;
}
.platform-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--body);
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
  transition: opacity 200ms ease;
}
.platform-item:hover { opacity: 0.7; }
.platform-item svg {
  height: 22px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================================================================
   9. HOMEPAGE — RESULTS PROOF
   ================================================================ */
.results-proof {
  padding: 48px 0 0;
}
.results-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.results-label {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: none; /* no all caps */
  color: #1e1e1e;
  margin-bottom: 10px;
}
.results-trust {
  font-family: 'Geist', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--heading);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.results-metrics {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
}
.results-metrics .metric {
  padding: 0 36px;
  border-right: 1px solid var(--border);
}
.results-metrics .metric:last-child { border-right: none; }
.metric-number {
  font-family: 'Newsreader', serif;
  font-size: clamp(40px, 5vw, 52px);
  font-weight: 500;
  color: #1e1e1e;
  line-height: 1;
}
.metric-desc {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #8A847D;
  margin-top: 8px;
  text-transform: none; /* no all caps */
  letter-spacing: 0.5px;
}
.results-testimonial-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  margin-top: 2px;
}
.testimonial-content {
  text-align: left;
}
.testimonial-quote {
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: var(--heading);
  line-height: 1.5;
  margin: 0 0 4px 0;
}
.testimonial-attr {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--caption);
}
.results-bottom {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  color: var(--caption);
  margin-bottom: 16px;
}
.results-link {
  color: var(--primary);
  text-decoration: none;
}
.results-link:hover {
  color: var(--mid-blue);
  text-decoration: underline;
}

/* ================================================================
   9. HOMEPAGE — STATS / PROOF POINTS
   ================================================================ */
.stats {
  background: var(--base);
  padding: 80px 0;
}
.stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.stats-header {
  text-align: center;
  margin-bottom: 36px;
}
.section-label {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: none; /* no all caps */
  color: #1e1e1e;
  margin-bottom: 12px;
}
.stats-h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--heading);
  margin-bottom: 10px;
}
.stats-body {
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--body);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.stat-card {
  background: #ffffff;
  background-clip: padding-box;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px 24px;
  text-align: left;
  transition: border-color 200ms ease;
}
.stat-card:hover {
  border-color: #D5D0CA;
}
.stat-number {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-size: 52px;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-suffix {
  opacity: 0;
  transition: opacity 300ms ease;
}
.stat-suffix.show {
  opacity: 1;
}
.stat-desc {
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--body);
  margin-top: 8px;
}
.stat-source {
  font-family: 'Geist', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--caption);
  margin-top: 6px;
}

/* ================================================================
   9. HOMEPAGE — THE SHIFT (DARK SECTION)
   ================================================================ */
.shift {
  background: var(--dark-bg);
  padding: 100px 0;
}
.shift-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.shift-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 48px;
  align-items: start;
}
.shift-label {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: none; /* no all caps */
  color: var(--light-blue);
  margin-bottom: 16px;
}
.shift-h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 3.5vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-on-dark);
  margin-bottom: 16px;
}
.shift-body {
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--body-on-dark);
  margin-bottom: 28px;
}
.shift-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.shift-stat {
  display: flex;
  flex-direction: column;
}
.shift-stat-number {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--light-blue);
  line-height: 1;
  letter-spacing: -0.01em;
}
.shift-stat-desc {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--body-on-dark);
  margin-top: 4px;
  line-height: 1.45;
}
.shift-stat-source {
  font-family: 'Geist', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--caption);
  margin-top: 2px;
}

/* Buyer journey diagram */
.journey {
  position: relative;
}
.old-path {
  margin-bottom: 28px;
  padding: 18px 16px;
  background: rgba(107, 102, 95, 0.05);
  border: 1px solid rgba(107, 102, 95, 0.1);
  border-radius: 3px;
  position: relative;
}
.old-path::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 14px;
  background: rgba(107, 102, 95, 0.2);
}
.old-path-label {
  font-family: 'Geist', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none; /* no all caps */
  color: #6B665F;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.old-path-label::after {
  content: 'Declining';
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #8A847D;
  background: rgba(138, 132, 125, 0.1);
  padding: 1px 6px;
  border-radius: 2px;
}
.old-path-flow {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.old-step {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #6B665F;
  padding: 5px 0;
  white-space: nowrap;
}
.old-arrow {
  font-size: 10px;
  color: #6B665F;
  opacity: 0.35;
  flex-shrink: 0;
  padding: 0 6px;
}
.old-step:last-child {
  opacity: 0.4;
  text-decoration: line-through;
  text-decoration-color: rgba(107, 102, 95, 0.3);
}
.new-path {
  padding-top: 14px;
}
.new-path-label {
  font-family: 'Geist', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none; /* no all caps */
  color: var(--light-blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.new-path-label::after {
  content: 'Growing';
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--light-blue);
  background: rgba(45, 160, 255, 0.1);
  padding: 1px 6px;
  border-radius: 2px;
}
.new-path-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 20px;
}
.new-path-flow::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(45, 160, 255, 0.15) 0%,
    var(--primary) 35%,
    var(--primary) 55%,
    rgba(11, 123, 251, 0.3) 100%
  );
  border-radius: 1px;
}
.new-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px 9px 0;
  position: relative;
}
.new-step::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(45, 160, 255, 0.25);
  border: 1.5px solid rgba(45, 160, 255, 0.5);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.new-step-text {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--body-on-dark);
  line-height: 1.35;
}
.new-step-icons {
  display: flex;
  gap: 5px;
  margin-left: auto;
  flex-shrink: 0;
}
.new-step-icons svg {
  width: 15px;
  height: 15px;
  opacity: 0.6;
}
.new-step.highlight-step {
  background: rgba(11, 123, 251, 0.08);
  border: 1px solid rgba(11, 123, 251, 0.2);
  border-radius: 3px;
  margin: 4px 0 4px -2px;
  padding: 11px 14px 11px 12px;
}
.new-step.highlight-step::before {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(11, 123, 251, 0.5), 0 0 20px rgba(11, 123, 251, 0.2);
  width: 10px;
  height: 10px;
}
.new-step.highlight-step .new-step-text {
  color: var(--text-on-dark);
  font-weight: 500;
  font-size: 14px;
}
.highlight-tag {
  font-family: 'Geist', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none; /* no all caps */
  color: var(--primary);
  background: rgba(11, 123, 251, 0.12);
  border: 1px solid rgba(11, 123, 251, 0.15);
  padding: 3px 8px;
  border-radius: 2px;
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
}
.new-step.revenue-step {
  margin-top: 2px;
}
.new-step.revenue-step .new-step-text {
  color: var(--primary);
  font-weight: 500;
}
.new-step.revenue-step::before {
  background: var(--primary);
  border-color: var(--primary);
  width: 10px;
  height: 10px;
}
.shift-close {
  text-align: center;
  margin-top: 56px;
  grid-column: 1 / -1;
}
.shift-close-text {
  font-family: 'Geist', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-on-dark);
  margin-bottom: 24px;
}
.shift-cta {
  display: inline-block;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-bg);
  background: var(--text-on-dark);
  padding: 13px 26px;
  border-radius: 3px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 200ms ease;
}
.shift-cta:hover {
  background: #E5E0DA;
}

/* ================================================================
   9. HOMEPAGE — PROBLEM BRIDGE
   ================================================================ */
.problem-bridge {
  padding: 80px 24px 0;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.problem-bridge .bridge-text {
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--heading);
  margin-bottom: 8px;
}
.problem-bridge .bridge-source {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  color: var(--caption);
  font-weight: 400;
}
.bridge-divider {
  width: 240px;
  height: 1px;
  background: var(--border);
  margin: 32px auto;
}

/* ================================================================
   9. HOMEPAGE — SERVICES
   ================================================================ */
.services-section {
  padding: 0 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.services-header {
  text-align: center;
  margin-bottom: 32px;
}
.services-header .section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none; /* no all caps */
  color: #1e1e1e;
  margin-bottom: 12px;
}
.services-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 12px;
}
.services-header .subtitle {
  font-size: 16px;
  color: var(--caption);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}
.services-flow-container {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 0;
}
.service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.service-card + .service-card {
  border-left: none;
}
.service-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  z-index: 2;
  position: relative;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.25;
  margin-bottom: 4px;
  min-height: 76px;
  display: flex;
  align-items: flex-start;
}
.service-card .card-tagline {
  font-family: 'Geist', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 14px;
}
.service-card .card-description {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.platform-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.platform-logos .logo-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--caption);
}
.platform-logos .logo-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.card-separator {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}
.deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.deliverable-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--body);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 4px 10px;
  white-space: nowrap;
}

/* ================================================================
   9. HOMEPAGE — CONVERGING FLOW
   ================================================================ */
.converge-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}
.converge-svg {
  width: 100%;
  height: 80px;
  display: block;
  margin-top: 0;
}
.converge-single-line {
  display: none;
  width: 0;
  height: 40px;
  border-left: 1.5px solid #1a2744;
  margin: 0 auto;
}
.converge-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
}
.outcome-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 3px;
}
.outcome-visibility {
  width: 192px;
  border: 1.5px solid #7a8a9e;
  color: var(--heading);
  background: #ffffff;
}
.outcome-pipeline {
  width: 164px;
  border: 2px solid #1a2744;
  color: #1a2744;
  background: #ffffff;
}
.outcome-revenue {
  width: 140px;
  background: #1a2744;
  color: var(--text-on-dark);
  border: none;
  box-shadow: 0 6px 20px rgba(26,39,68,0.3);
}
.converge-headline {
  font-family: 'Geist', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--heading);
  text-align: center;
  margin-top: 0;
  line-height: 1.5;
}
.converge-form {
  display: flex;
  max-width: 440px;
  margin: 16px auto 0;
}
.converge-form input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 3px 0 0 3px;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  color: var(--body);
  background: #fff;
  outline: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.converge-form input:focus {
  border-color: var(--primary);
}
.converge-form input::placeholder {
  color: var(--caption);
}
.converge-form button {
  padding: 13px 24px;
  background: var(--cta);
  color: #fff;
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 14px;
  border: none;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.converge-form button:hover {
  background: var(--cta-hover);
}
.form-error {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  color: #dc2626;
  text-align: center;
  margin-top: 8px;
  display: none;
}
.form-error.show {
  display: block;
}

/* ================================================================
   9. HOMEPAGE — METHODOLOGY (DARK)
   ================================================================ */
.methodology-section {
  background-color: #091525;
  padding: 80px 24px;
}
.methodology-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.methodology-header {
  text-align: center;
  margin-bottom: 64px;
}
.methodology-header .section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none; /* no all caps */
  color: #ffffff;
  margin-bottom: 12px;
}
.methodology-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: #FAFAF7;
  line-height: 1.2;
  margin-bottom: 12px;
}
.methodology-header .subtitle {
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}
.steps-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.steps-container::before {
  content: '';
  position: absolute;
  top: 23px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 0;
}
.steps-container::after {
  content: '';
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 4px;
  overflow: hidden;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}
.steps-container.animating::after {
  opacity: 1;
  background: linear-gradient(90deg,
    rgba(45, 160, 255, 0) 0%,
    rgba(45, 160, 255, 0.8) 50%,
    rgba(45, 160, 255, 0) 100%
  );
  background-size: 30% 100%;
  background-repeat: no-repeat;
  animation: pulse-line 2.4s linear infinite;
}
@keyframes pulse-line {
  0% { background-position: -30% 0; }
  100% { background-position: 130% 0; }
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.step.visible {
  opacity: 1;
  transform: translateY(0);
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #091525;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 20px;
  line-height: 1;
  padding-top: 1px;
  font-weight: 500;
  color: #2da0ff;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.step-name {
  font-size: 14px;
  font-weight: 600;
  color: #FAFAF7;
  margin-bottom: 6px;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.step-desc {
  font-size: 13px;
  color: #ffffff;
  line-height: 1.5;
  max-width: 160px;
}
.step-revenue .step-number {
  border-color: #2da0ff;
}
.step-revenue .step-name {
  color: #2da0ff;
}
.methodology-footer {
  text-align: center;
  margin-top: 56px;
}
.methodology-footer-text {
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #C8C3BC;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}
.methodology-footer-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 13px 26px;
  background: #FAFAF7;
  color: #1A1614;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.methodology-footer-btn:hover {
  background: #E5E0DA;
}

/* ================================================================
   9. HOMEPAGE — USP SECTION
   ================================================================ */
.usp-section {
  padding: 80px 0;
  background: var(--base);
}
.usp-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.usp-header {
  text-align: center;
  margin-bottom: 48px;
}
.usp-label {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: none; /* no all caps */
  color: #1e1e1e;
  margin-bottom: 12px;
}
.usp-heading {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 3.5vw, 36px);
  letter-spacing: -0.02em;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 14px;
}
.usp-subtitle {
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--caption);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.usp-card {
  background: transparent;
  border: none;
  padding: 36px 32px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 400ms ease-out, transform 400ms ease-out, background 300ms ease;
}
.usp-card:nth-child(3n+2),
.usp-card:nth-child(3n+3) {
  border-left: 1px solid var(--border);
}
.usp-card:nth-child(n+4) {
  border-top: 1px solid var(--border);
}
.usp-card:hover {
  background: linear-gradient(to bottom, transparent 0%, #e8f4ff 100%);
}
.usp-card:nth-child(n+4):hover {
  background: linear-gradient(to bottom, #e8f4ff 0%, transparent 100%);
}
.usp-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.usp-card:nth-child(1),
.usp-card:nth-child(2),
.usp-card:nth-child(3) { transition-delay: 0ms; }
.usp-card:nth-child(4),
.usp-card:nth-child(5),
.usp-card:nth-child(6) { transition-delay: 150ms; }
.usp-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  color: var(--heading);
}
.usp-card-heading {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--heading);
  line-height: 1.3;
  margin-bottom: 8px;
}
.usp-desc {
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--caption);
  line-height: 1.7;
}

/* ================================================================
   9. HOMEPAGE — WHAT HAPPENS NEXT (TIMELINE)
   ================================================================ */
.whn {
  padding: 16px 0 80px;
  position: relative;
}
.whn-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}
.whn-header {
  text-align: center;
  margin-bottom: 64px;
}
.whn-label {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: none; /* no all caps */
  color: #1e1e1e;
  margin-bottom: 14px;
}
.whn-headline {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--heading);
  margin-bottom: 16px;
}
.whn-subline {
  font-family: 'Geist', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--caption);
  line-height: 1.55;
  max-width: 520px;
  margin: 0 auto;
}
.whn-steps {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.whn-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}
.whn-line-bg {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 100%;
  background: var(--border);
}
.whn-line-fill {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, var(--border) 0%, var(--primary) 100%);
  clip-path: inset(0 0 100% 0);
}
.whn-step {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  z-index: 1;
}
.whn-step + .whn-step {
  margin-top: 88px;
}
.whn-node {
  width: 48px;
  height: 48px;
  border: 2px solid var(--primary);
  background: var(--base);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  justify-self: center;
  flex-shrink: 0;
}
@keyframes nodePulse {
  0%   { box-shadow: 0 0 0 8px rgba(11, 123, 251, 0.15); }
  100% { box-shadow: 0 0 0 16px rgba(11, 123, 251, 0); }
}
.whn-step.visible .whn-anim-node {
  animation: nodePulse 800ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.whn-node-num {
  font-family: 'Newsreader', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
}
.step-time-anchor {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: none; /* no all caps */
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}
.whn-text-title {
  font-family: 'Geist', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.whn-text-desc {
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--body);
  line-height: 1.65;
}
.whn-text-left {
  text-align: left;
  padding-right: 44px;
}
.whn-text-right {
  text-align: left;
  padding-left: 44px;
}
.whn-image-left {
  padding-right: 44px;
}
.whn-image-right {
  padding-left: 44px;
}
.step-image {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.step-image:hover {
  transform: scale(1.02);
  border-color: rgba(11, 123, 251, 0.3);
}
.whn-anim-node {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 400ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.whn-anim-text {
  opacity: 0;
  transition: opacity 600ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
}
.whn-anim-image {
  opacity: 0;
  transition: opacity 600ms cubic-bezier(0.23, 1, 0.32, 1) 150ms,
              transform 600ms cubic-bezier(0.23, 1, 0.32, 1) 150ms;
}
.whn-step-left .whn-anim-text { transform: translateX(-20px); }
.whn-step-right .whn-anim-text { transform: translateX(20px); }
.whn-step-left .whn-anim-image { transform: translateX(20px); }
.whn-step-right .whn-anim-image { transform: translateX(-20px); }
.whn-step.visible .whn-anim-node {
  opacity: 1;
  transform: scale(1);
}
.whn-step.visible .whn-anim-text,
.whn-step.visible .whn-anim-image {
  opacity: 1;
  transform: translateX(0);
}
.whn-footer {
  text-align: center;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
.whn-divider {
  width: 280px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 48px;
}
.whn-closing {
  font-family: 'Geist', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--heading);
  margin-bottom: 28px;
}
.whn-cta {
  display: inline-block;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: var(--cta);
  padding: 16px 40px;
  border-radius: 3px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 200ms ease;
}
.whn-cta:hover {
  background: var(--cta-hover);
}

/* ================================================================
   9. HOMEPAGE — FAQ SECTION
   ================================================================ */
.faq-section {
  padding: 56px 0 64px;
  background: var(--base);
}
.faq-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.faq-header {
  text-align: center;
  margin-bottom: 32px;
}
.faq-label {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: none; /* no all caps */
  color: #1e1e1e;
  margin-bottom: 12px;
}
.faq-headline {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--heading);
}
.faq-grid {
  max-width: 1100px;
  margin: 0 auto;
}
.faq-row {
  display: flex;
  gap: 0;
  align-items: start;
  border-bottom: 1px solid var(--border);
}
.faq-row:last-child {
  border-bottom: none;
}
.faq-item {
  flex: 1;
  padding: 24px 0;
}
.faq-item:first-child {
  padding-right: 40px;
  border-right: 1px solid var(--border);
}
.faq-item:last-child {
  padding-left: 40px;
}
.faq-question {
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.3;
  margin-bottom: 10px;
}
.faq-answer {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ================================================================
   9. HOMEPAGE — FINAL CTA
   ================================================================ */
.final-cta {
  background: var(--base, #FAFAF7);
  padding: 80px 0 100px;
}
.final-cta-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}
.cta-grad-card {
  background: linear-gradient(180deg, rgba(232,244,255,0.5) 0%, rgba(240,247,255,0.3) 40%, #FAFAF7 100%);
  border: 1px solid rgba(179, 217, 255, 0.3);
  border-bottom: none;
  border-radius: 3px;
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 56px 40px;
  text-align: center;
}
.cta-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
  opacity: 0.65;
  transition: opacity 200ms ease;
}
.cta-platforms:hover {
  opacity: 1;
}
.cta-platforms .cta-logo-item {
  display: inline-flex;
  align-items: center;
}
.cta-platforms .cta-logo-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.cta-grad-headline {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 36px);
  color: var(--heading, #1e1e1e);
  line-height: 1.25;
  margin-bottom: 12px;
}
.cta-grad-subline {
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--body, #3D3833);
  line-height: 1.5;
  margin-bottom: 28px;
}
#cta-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}
#cta-form input[type="email"] {
  flex: 1;
  padding: 13px 16px;
  background: #FFFFFF;
  border: 1px solid #E5E0DA;
  border-right: none;
  border-radius: 3px 0 0 3px;
  color: #1e1e1e;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 200ms ease;
}
#cta-form input[type="email"]::placeholder {
  color: #8A847D;
}
#cta-form input[type="email"]:focus {
  border-color: #0b7bfb;
}
#cta-form button {
  padding: 13px 20px;
  background: #1e1e1e;
  color: #FAFAF7;
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 14px;
  border: none;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 200ms ease;
}
#cta-form button:hover {
  background: #333333;
}
.cta-author-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  color: var(--caption, #8A847D);
}
.cta-author-line {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-author-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.cta-author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.cta-positioning {
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--caption, #8A847D);
  margin: 0;
}

/* ================================================================
   10. GET STARTED PAGE (Page 2 — email capture)
   ================================================================ */
.gs-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 64px);
  margin-top: 64px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 48px 60px;
}
.gs-left {
  display: flex;
  flex-direction: column;
}
.gs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: none; /* no all caps */
  letter-spacing: 1.2px;
  color: var(--primary);
  border: 1px solid rgba(11,123,251,0.2);
  border-radius: 20px;
  padding: 6px 14px;
  width: fit-content;
  margin-bottom: 24px;
}
.gs-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.gs-headline {
  font-weight: 700;
  font-size: clamp(32px, 4vw, 42px);
  color: var(--heading);
  line-height: 1.12;
  margin-bottom: 14px;
}
.gs-subline {
  font-size: 17px;
  color: var(--body);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 32px;
}
.gs-founder {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.gs-founder-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #ddd;
}
.gs-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-founder-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--heading);
}
.gs-founder-role {
  font-size: 13px;
  color: var(--caption);
}
.gs-bestfor {
  padding: 0;
  max-width: 440px;
  margin-top: 8px;
}
.gs-bestfor-title {
  font-weight: 600;
  font-size: 13px;
  text-transform: none; /* no all caps */
  letter-spacing: 1px;
  color: var(--caption);
  margin-bottom: 14px;
}
.gs-bestfor-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gs-bestfor-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
}
.gs-bestfor-list li::before {
  content: '\2713';
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  margin-top: 1px;
  flex-shrink: 0;
}
.gs-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gs-booking-card {
  background: linear-gradient(180deg, #e8f4ff 0%, #FAFAF7 100%);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 32px 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gs-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.gs-platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gs-platform-icon svg {
  width: 20px;
  height: 20px;
  opacity: 0.55;
}
.gs-card-headline {
  font-weight: 600;
  font-size: 22px;
  color: var(--heading);
  text-align: center;
  margin-bottom: 4px;
}
.gs-card-subline {
  font-size: 14px;
  color: var(--caption);
  text-align: center;
  margin-bottom: 22px;
}
.gs-email-form {
  display: flex;
  width: 100%;
  max-width: 380px;
}
.gs-email-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 3px 0 0 3px;
  font-size: 15px;
  color: var(--heading);
  outline: none;
  transition: border-color 200ms;
}
.gs-email-form input::placeholder { color: var(--caption); }
.gs-email-form input:focus { border-color: var(--primary); }
.gs-email-form button {
  padding: 14px 24px;
  background: var(--cta);
  color: var(--text-on-dark);
  font-weight: 500;
  font-size: 15px;
  border: none;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 200ms;
}
.gs-email-form button:hover { background: var(--cta-hover); }
.gs-email-error {
  font-size: 13px;
  color: #dc2626;
  margin-top: 8px;
  text-align: center;
  display: none;
}
.gs-note {
  font-size: 12px;
  color: var(--caption);
  text-align: center;
  margin-top: 14px;
}
.gs-card-divider {
  width: 100%;
  max-width: 320px;
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}
.gs-card-testimonial {
  text-align: center;
  max-width: 340px;
}
.gs-card-testimonial blockquote {
  font-size: 14px;
  font-style: italic;
  color: var(--body);
  line-height: 1.6;
  margin: 0 0 10px 0;
}
.gs-card-testimonial-attr {
  font-size: 12px;
  color: var(--caption);
}
.gs-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 28px;
}
.gs-stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.gs-stat-value {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--primary);
}
.gs-stat-label {
  font-size: 13px;
  color: var(--caption);
}
.gs-stat-dot {
  font-size: 13px;
  color: var(--caption);
  margin: 0 12px;
  user-select: none;
}
/* Calendar embed */
#cal-embed-container {
  animation: ctaFadeIn 400ms ease;
}
@keyframes ctaFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   10b. BOOK CALL PAGE (Page 3 — form + calendar)
   ================================================================ */
.bc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  margin-top: 64px;
}

/* Left: Dark panel */
.bc-dark {
  background: var(--dark-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}
.bc-dark::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(11,123,251,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.bc-dark-inner {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.bc-speak-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: none; /* no all caps */
  letter-spacing: 1.5px;
  color: var(--body-on-dark);
  margin-bottom: 16px;
}
.bc-founder-photo {
  width: 480px;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 2px solid rgba(255,255,255,0.06);
}
.bc-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bc-dark-name {
  font-weight: 600;
  font-size: 20px;
  color: var(--text-on-dark);
  margin-bottom: 3px;
}
.bc-dark-role {
  font-size: 14px;
  color: var(--body-on-dark);
}
.bc-dark-divider {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 32px 0;
}
.bc-dark-what {
  font-size: 13px;
  font-weight: 500;
  text-transform: none; /* no all caps */
  letter-spacing: 1.2px;
  color: var(--body-on-dark);
  margin-bottom: 20px;
}
.bc-dark-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 500px;
  text-align: left;
}
.bc-dark-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text-on-dark);
  line-height: 1.55;
}
.bc-dark-bullets li::before {
  content: '\2713';
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* Right: Form panel */
.bc-light {
  background: linear-gradient(180deg, #f7f9fc 0%, var(--base) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 56px;
  border-left: 1px solid var(--border);
}
.bc-form-wrap {
  width: 100%;
  max-width: 400px;
  transition: opacity 300ms ease, transform 300ms ease;
}
.bc-form-headline {
  font-weight: 600;
  font-size: 24px;
  color: var(--heading);
  margin-bottom: 4px;
}
.bc-form-subline {
  font-size: 14px;
  color: var(--caption);
  margin-bottom: 32px;
}
.bc-field {
  margin-bottom: 20px;
}
.bc-field label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: var(--heading);
  margin-bottom: 6px;
}
.bc-field input,
.bc-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--heading);
  outline: none;
  transition: border-color 200ms;
}
.bc-field input:focus,
.bc-field textarea:focus {
  border-color: var(--primary);
}
.bc-field input::placeholder,
.bc-field textarea::placeholder {
  color: var(--caption);
}
.bc-field input.locked {
  background: #f0f0ed;
  color: var(--body);
  cursor: default;
}
.bc-field textarea {
  resize: vertical;
  min-height: 76px;
}
.bc-optional {
  font-weight: 400;
  color: var(--caption);
  font-size: 12px;
  margin-left: 4px;
}
.bc-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--cta);
  color: var(--text-on-dark);
  font-weight: 500;
  font-size: 15px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 200ms;
  margin-top: 4px;
}
.bc-submit:hover {
  background: var(--cta-hover);
}

/* Calendar layer */
.bc-cal-headline {
  font-weight: 600;
  font-size: 20px;
  color: var(--heading);
  margin-bottom: 4px;
}
.bc-cal-subline {
  font-size: 14px;
  color: var(--caption);
  margin-bottom: 24px;
}

/* ================================================================
   11. BLOG INDEX
   ================================================================ */
/* Blog header */
.blog-header {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.blog-header h1 {
  font-family: 'Geist', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 8px;
}
.blog-header .subtitle {
  font-family: 'Geist', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--caption);
  line-height: 1.5;
}
.search-bar {
  position: relative;
  width: 280px;
  flex-shrink: 0;
}
.search-bar input {
  width: 100%;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  padding: 10px 14px 10px 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--body);
  outline: none;
  transition: border-color 0.2s;
}
.search-bar input::placeholder { color: var(--caption); }
.search-bar input:focus { border-color: var(--primary); }
.search-bar svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: var(--caption);
}

/* Category filter tabs */
.category-filter {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}
.category-filter-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.category-filter-inner::-webkit-scrollbar { display: none; }
.cat-tab {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--caption);
  background: transparent;
  border: none;
  padding: 12px 0;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.cat-tab:hover { color: var(--body); }
.cat-tab.active {
  color: var(--heading);
  border-bottom-color: var(--primary);
}

/* Article count */
.article-count {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 32px 0;
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  color: var(--caption);
}

/* Featured post */
.featured-post {
  max-width: 1140px;
  margin: 0 auto;
  padding: 32px 32px 48px;
  border-bottom: 1px solid var(--border);
}
.featured-post[data-category="case-studies"] {
  border-left: 3px solid #6450C8;
}
.featured-post a {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 48px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.featured-post a:hover .fp-title { color: var(--primary); }
.featured-post a:hover .fp-img-inner { border-color: var(--caption); }
.fp-img-inner {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--ice) 0%, var(--surface) 60%, rgba(11,123,251,0.08) 100%);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.fp-img-inner .thumb-label {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: none; /* no all caps */
  letter-spacing: 1.5px;
  color: var(--primary);
  opacity: 0.5;
}
.fp-img-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  opacity: 0.4;
}
.fp-category {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: none; /* no all caps */
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 12px;
}
.fp-title {
  font-family: 'Geist', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.fp-excerpt {
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fp-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  color: var(--caption);
}
.fp-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.fp-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.fp-author-name { font-weight: 500; color: var(--body); }
.meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--caption);
  flex-shrink: 0;
}

/* Blog grid */
.blog-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 32px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Blog card (shared blog index + related posts) */
.blog-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  border-color: var(--caption);
  transform: translateY(-2px);
}
.blog-card:hover .card-title { color: var(--primary); }
.blog-card:hover .card-thumb-inner { border-bottom-color: var(--caption); }

/* Styled placeholder thumbnails */
.card-thumb-inner {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}
/* Category-specific gradient backgrounds */
.card-thumb-inner[data-cat="ai-search"] {
  background: linear-gradient(135deg, var(--ice) 0%, rgba(11,123,251,0.06) 50%, var(--surface) 100%);
}
.card-thumb-inner[data-cat="seo-content"] {
  background: linear-gradient(135deg, #f0f7f0 0%, rgba(52,168,83,0.05) 50%, var(--surface) 100%);
}
.card-thumb-inner[data-cat="digital-pr"] {
  background: linear-gradient(135deg, #fff5f0 0%, rgba(234,67,53,0.05) 50%, var(--surface) 100%);
}
.card-thumb-inner[data-cat="case-studies"] {
  background: linear-gradient(135deg, #f5f0ff 0%, rgba(100,80,200,0.04) 50%, var(--surface) 100%);
}
.card-thumb-inner[data-cat="research"] {
  background: linear-gradient(135deg, #fdf8f0 0%, rgba(217,119,6,0.05) 50%, var(--surface) 100%);
}
.card-thumb-inner .thumb-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Geist', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: none; /* no all caps */
  letter-spacing: 2px;
  color: var(--caption);
  opacity: 0.35;
}
.card-thumb-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.card-thumb-inner[data-cat="ai-search"]::after { background: var(--primary); opacity: 0.3; }
.card-thumb-inner[data-cat="seo-content"]::after { background: #34A853; opacity: 0.3; }
.card-thumb-inner[data-cat="digital-pr"]::after { background: #EA4335; opacity: 0.3; }
.card-thumb-inner[data-cat="case-studies"]::after { background: #6450C8; opacity: 0.25; }
.card-thumb-inner[data-cat="research"]::after { background: #d97706; opacity: 0.3; }
.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-category {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: none; /* no all caps */
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 8px;
}
.card-title {
  font-family: 'Geist', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.35;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.card-excerpt {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--body);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
  flex: 1;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  color: var(--caption);
  flex-wrap: wrap;
}
.card-meta .author { font-weight: 500; color: var(--body); }

/* Blog card thumbnail (article/case study related posts) */
.blog-card .thumbnail {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--caption);
}
.blog-card .card-content { padding: 20px; }
.blog-card .card-meta .meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--caption);
}

/* Newsletter (blog index) */
.newsletter {
  max-width: 1140px;
  margin: 48px auto 0;
  padding: 0 32px;
}
.newsletter-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 48px 40px;
  text-align: center;
}
.newsletter-inner h2 {
  font-family: 'Geist', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
}
.newsletter-inner p {
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  color: var(--body);
  margin-bottom: 24px;
}
.nl-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
}
.nl-form input {
  flex: 1;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 3px 0 0 3px;
  color: var(--body);
  outline: none;
  transition: border-color 0.2s;
}
.nl-form input::placeholder { color: var(--caption); }
.nl-form input:focus { border-color: var(--primary); }
.nl-form button {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  background: var(--heading);
  color: #FAFAF7;
  border: none;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.nl-form button:hover { background: var(--cta-hover); }

/* Load more */
.load-more-wrap {
  text-align: center;
  padding: 48px 32px 0;
}
.load-more {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 12px 32px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.load-more:hover {
  border-color: var(--caption);
  background: var(--surface);
}

/* Bottom CTA banner (blog index) */
.bottom-cta {
  background: var(--dark-bg);
  padding: 72px 32px;
  margin-top: 72px;
  text-align: center;
}
.bottom-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.bottom-cta h2 {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 12px;
}
.bottom-cta p {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--body-on-dark);
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.bottom-cta-btn {
  display: inline-block;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #FAFAF7;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 3px;
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.bottom-cta-btn:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.5);
}

/* Bottom CTA form (article/case study) */
.bottom-cta .cta-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
}
.bottom-cta .cta-form input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius) 0 0 var(--radius);
  background: rgba(255,255,255,0.06);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-on-dark);
  outline: none;
  transition: border-color 200ms;
}
.bottom-cta .cta-form input::placeholder { color: var(--caption); }
.bottom-cta .cta-form input:focus { border-color: var(--primary); }
.bottom-cta .cta-form button {
  padding: 13px 24px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  transition: opacity 200ms;
  white-space: nowrap;
}
.bottom-cta .cta-form button:hover { opacity: 0.9; }
.bottom-cta .cta-error {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #D4644A;
  margin-top: 8px;
  display: none;
}
.bottom-cta .cta-error.show { display: block; }
.bottom-cta .cta-subtext {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--caption);
  margin-top: 12px;
}

/* ================================================================
   12. BLOG ARTICLE
   ================================================================ */
/* Article header */
.article-header-wrap {
  max-width: var(--max-width-site);
  margin: 0 auto;
  padding: 0 32px;
}
.article-header {
  max-width: var(--max-width-content);
  margin-left: 284px;
  padding: 32px 0 0;
}
.article-header .category-tag {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: none; /* no all caps */
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 16px;
  display: inline-block;
}
.article-header h1 {
  font-family: var(--font-sans);
  font-size: 38px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 20px;
}
.article-header .meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.article-header .meta-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--caption);
  flex-shrink: 0;
}
.article-header .meta-text {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--caption);
}
.article-header .meta-text .author-name {
  font-weight: 500;
  color: var(--body);
}
.article-header .meta-text .dot { margin: 0 4px; }

/* Featured image */
.featured-image-wrap {
  max-width: var(--max-width-site);
  margin: 0 auto;
  padding: 0 32px;
}
.featured-image-inner {
  max-width: 840px;
  margin-left: 284px;
}
.featured-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--caption);
}

/* Article layout */
.article-layout {
  max-width: var(--max-width-site);
  margin: 0 auto;
  padding: 48px 32px 0;
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

/* Sticky TOC */
.toc {
  position: sticky;
  top: 80px;
  width: var(--max-width-toc);
  flex-shrink: 0;
  align-self: flex-start;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.toc::-webkit-scrollbar { width: 0; }
.toc-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: none; /* no all caps */
  letter-spacing: 1.5px;
  color: var(--caption);
  margin-bottom: 16px;
}
.toc-list {
  list-style: none;
  border-left: 1px solid var(--border);
}
.toc-list li { margin: 0; padding: 0; }
.toc-list a {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--caption);
  text-decoration: none;
  padding: 6px 0 6px 16px;
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: color 0.2s, border-color 0.2s;
  line-height: 1.4;
}
.toc-list a:hover { color: var(--body); }
.toc-list a.active {
  color: var(--heading);
  border-left-color: var(--primary);
  font-weight: 500;
}
.toc-back-top {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--caption);
  text-decoration: none;
  margin-top: 16px;
  padding-left: 16px;
  transition: color 0.2s;
}
.toc-back-top:hover { color: var(--body); }
.toc-back-top svg { width: 12px; height: 12px; }

/* Mobile TOC */
.toc-mobile { display: none; }

/* Article body typography */
.article-body {
  max-width: var(--max-width-content);
  flex: 1;
  min-width: 0;
}
.article-body p {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 400;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 24px;
}
.article-body h2 {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.25;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.article-body h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.article-body h3 {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.3;
  margin-top: 32px;
  margin-bottom: 12px;
}
.article-body a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(11, 123, 251, 0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
}
.article-body a:hover { text-decoration-color: var(--primary); }
.article-body strong {
  font-weight: 600;
  color: var(--heading);
}
.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
.article-body li {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 8px;
}
.article-body ul li { list-style-type: disc; }
.article-body ol li { list-style-type: decimal; }
.article-body blockquote {
  border-left: 3px solid var(--primary);
  padding: 0 0 0 20px;
  margin: 32px 0;
}
.article-body blockquote p {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 0;
}
.article-body pre {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  overflow-x: auto;
}
.article-body code {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
}
.article-body p code,
.article-body li code {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2px 6px;
  font-size: 15px;
}
.article-body img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 24px 0;
}
.article-body figure { margin: 32px 0; }
.article-body figcaption {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--caption);
  margin-top: 8px;
  text-align: center;
  line-height: 1.5;
}

/* Data tables */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-family: var(--font-sans);
  font-size: 15px;
}
.article-body thead th {
  font-weight: 600;
  font-size: 13px;
  text-transform: none; /* no all caps */
  letter-spacing: 0.5px;
  color: var(--caption);
  text-align: left;
  padding: 10px 16px;
  border-bottom: 2px solid var(--border);
  background: transparent;
}
.article-body tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--body);
  vertical-align: top;
  line-height: 1.5;
}
.article-body tbody tr:last-child td { border-bottom: none; }
.article-body tbody td:first-child {
  font-weight: 600;
  color: var(--heading);
  white-space: nowrap;
}

/* Stat callout */
.stat-callout {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--heading);
  line-height: 1.3;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 32px 0;
  text-align: center;
}
.stat-callout .stat-number {
  font-size: 48px;
  font-weight: 500;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}
.stat-callout .stat-label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--caption);
  letter-spacing: 0.02em;
}

/* Figure placeholder */
.figure-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--caption);
}

/* Inline CTA */
.inline-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 40px 0;
}
.inline-cta h4 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
  margin-top: 0;
}
.inline-cta p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 16px;
}
.inline-cta .cta-button {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  background: var(--heading);
  color: var(--base);
  border: 1px solid var(--heading);
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.2s;
}
.inline-cta .cta-button:hover { opacity: 0.85; }

/* WordPress block button overrides (inside article body) */
.article-body .wp-block-button__link,
.article-body .wp-block-button .wp-block-button__link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  background: #1e1e1e;
  color: #FFFFFF;
  border: 1px solid #1e1e1e;
  border-radius: 3px;
  text-decoration: none;
  transition: background 200ms ease;
  box-shadow: none;
}
.article-body .wp-block-button__link:hover,
.article-body .wp-block-button .wp-block-button__link:hover {
  background: #0b7bfb;
  border-color: #0b7bfb;
  color: #FFFFFF;
}

/* WordPress block quote overrides (for testimonials in post content) */
.article-body .wp-block-quote.case-testimonial {
  border-left: 3px solid #0b7bfb;
  padding: 0 0 0 24px;
  margin: 32px 0;
  background: transparent;
}
.article-body .wp-block-quote.case-testimonial p {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 12px;
}
.article-body .wp-block-quote.case-testimonial cite {
  font-family: var(--font-sans);
  font-size: 14px;
  font-style: normal;
  color: var(--caption);
}
.article-body .wp-block-quote.case-testimonial cite strong {
  color: var(--heading);
  font-weight: 600;
}

/* WordPress block group overrides (for inline CTA boxes) */
.article-body .wp-block-group {
  margin: 40px 0;
}
.article-body .wp-block-group h4 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
  margin-top: 0;
}

/* WordPress block columns overrides (for results grid) */
.article-body .wp-block-columns {
  margin: 32px 0;
  gap: 24px;
}

/* Content upgrade CTA */
.content-upgrade {
  background: var(--base);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 40px 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.content-upgrade-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.content-upgrade-icon svg { width: 20px; height: 20px; }
.content-upgrade-body { flex: 1; }
.content-upgrade-body strong {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  display: block;
  margin-bottom: 4px;
}
.content-upgrade-body span {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--caption);
  line-height: 1.5;
}
.content-upgrade-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  align-self: center;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.content-upgrade-link:hover { opacity: 0.75; }

/* Author section */
.author-section {
  display: flex;
  gap: 20px;
  padding: 32px 0;
  margin-top: 48px;
  border-top: 1px solid var(--border);
  max-width: var(--max-width-content);
}
.author-section .author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--caption);
  flex-shrink: 0;
}
.author-section .author-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}
.author-section .author-name {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  text-decoration: none;
}
a.author-name:hover { color: var(--primary); }
.author-section .author-social {
  display: flex;
  gap: 6px;
}
.author-section .author-social a {
  color: var(--caption);
  text-decoration: none;
  transition: color 0.2s;
}
.author-section .author-social a:hover { color: var(--heading); }
.author-section .author-social svg { width: 14px; height: 14px; }
.author-section .author-role {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--caption);
  margin-bottom: 8px;
}
.author-section .author-bio {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
}

/* Social sharing */
.social-sharing {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  max-width: var(--max-width-content);
}
.social-sharing-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--caption);
  text-transform: none; /* no all caps */
  letter-spacing: 0.5px;
  margin-right: 4px;
}
.social-sharing a,
.social-sharing button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--caption);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  background: none;
  cursor: pointer;
  position: relative;
}
.social-sharing a:hover,
.social-sharing button:hover {
  border-color: var(--caption);
  color: var(--heading);
}
.social-sharing svg { width: 16px; height: 16px; }
.copy-tooltip {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--heading);
  color: var(--base);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.copy-tooltip.show { opacity: 1; }

/* Related posts */
.related-posts {
  border-top: 1px solid var(--border);
  padding: 48px 32px;
  margin-top: 48px;
  max-width: var(--max-width-site);
  margin-left: auto;
  margin-right: auto;
}
.related-posts h3 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 32px;
}
.related-posts .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Newsletter signup (article/case study) */
.newsletter-signup {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  background: var(--surface);
  max-width: var(--max-width-site);
  margin: 0 auto;
}
.newsletter-signup h3 {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
}
.newsletter-signup > p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--caption);
  margin-bottom: 24px;
}
.newsletter-signup .form-row {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
}
.newsletter-signup input[type="email"] {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--base);
  color: var(--body);
}
.newsletter-signup input[type="email"]::placeholder { color: var(--caption); }
.newsletter-signup input[type="email"]:focus { outline: none; border-color: var(--primary); }
.newsletter-signup button {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  background: var(--heading);
  color: var(--base);
  border: 1px solid var(--heading);
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.newsletter-signup button:hover { opacity: 0.85; }
.newsletter-privacy {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--caption);
  margin-top: 12px;
}

/* ================================================================
   13. CASE STUDY
   ================================================================ */
/* Case study article header variant (no left offset, flex layout) */
.article-header-wrap--case {
  max-width: 960px;
  display: flex;
  gap: 48px;
}
.article-header-wrap--case .article-header {
  margin-left: 0;
}
/* Case study category tag color */
.article-header .category-tag--case {
  color: #6450C8;
}
/* Case study featured image aspect ratio */
.featured-image--case {
  aspect-ratio: 16 / 7;
}

/* TL;DR card */
.tldr-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid #6450C8;
  border-radius: 3px;
  padding: 32px;
  margin-bottom: 48px;
}
.tldr-card h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--heading);
  text-transform: none; /* no all caps */
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.tldr-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}
.tldr-stat { text-align: center; }
.tldr-stat-number {
  display: block;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: 28px;
  color: #0b7bfb;
}
.tldr-stat-label {
  display: block;
  font-size: 13px;
  color: var(--caption);
  margin-top: 4px;
}
.tldr-card > p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
}

/* Answer capsule */
.answer-capsule {
  background: var(--surface);
  border-left: 3px solid #0b7bfb;
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 3px 3px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
}

/* Results grid */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
  align-items: start;
}
.result-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  min-height: 160px;
}
.result-number {
  display: block;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: 36px;
  color: #0b7bfb;
  margin-bottom: 4px;
}
.result-label {
  display: block;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  margin-bottom: 8px;
}
.result-context {
  font-size: 13px;
  color: var(--caption);
  line-height: 1.5;
  margin: 0;
}

/* Case testimonial */
.case-testimonial {
  border-left: 3px solid var(--primary);
  padding-left: 24px;
  margin: 32px 0;
}
.case-testimonial blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.7;
  color: var(--body);
  margin: 0 0 20px;
  border: none;
  padding: 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0b7bfb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--heading);
  margin: 0;
}
.testimonial-role {
  font-size: 13px;
  color: var(--caption);
  margin: 0;
}

/* Case study article layout variant (narrower) */
.article-layout--case {
  max-width: 960px;
  gap: 48px;
}

/* ================================================================
   14. LEGAL PAGES (privacy, terms)
   ================================================================ */
.legal-content {
  max-width: 680px;
  margin: 0 auto;
  padding: calc(64px + 64px) 24px 80px;
}
.legal-content h1 {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--heading);
  margin-bottom: 8px;
}
.legal-updated {
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--caption);
  margin-bottom: 48px;
}
.legal-content h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--heading);
  margin-top: 40px;
  margin-bottom: 16px;
}
.legal-content p {
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content li {
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-content a {
  color: var(--primary);
  text-decoration: none;
  transition: color 150ms;
}
.legal-content a:hover {
  color: var(--mid-blue);
}

/* ================================================================
   15. AI INFO PAGE
   ================================================================ */
.ai-info-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 128px 24px 80px;
}
.ai-info-content h1 {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--heading);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.ai-info-content .intro {
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 48px;
}
.ai-info-content h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--heading);
  letter-spacing: -0.01em;
  margin-top: 48px;
  margin-bottom: 16px;
}
.ai-info-content h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--heading);
  margin-top: 32px;
  margin-bottom: 12px;
}
.ai-info-content p {
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 16px;
}
.ai-info-content a {
  color: var(--primary);
  text-decoration: none;
  transition: color 150ms ease;
}
.ai-info-content a:hover {
  color: var(--mid-blue);
}

/* ================================================================
   16. 404 PAGE
   ================================================================ */
.page-404 {
  max-width: 600px;
  margin: 0 auto;
  padding: 160px 24px 120px;
  text-align: center;
}
.page-404 h1 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 80px;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
}
.page-404 h2 {
  font-family: 'Geist', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 12px;
}
.page-404 p {
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 32px;
}
.page-404 .back-home {
  display: inline-block;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: var(--cta);
  padding: 12px 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 200ms ease;
}
.page-404 .back-home:hover {
  background: var(--cta-hover);
}

/* ================================================================
   17. RESPONSIVE — ALL BREAKPOINTS CONSOLIDATED
   ================================================================ */

/* ── 1024px and (min-width: 769px) — USP grid override ── */
@media (max-width: 1024px) and (min-width: 769px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .usp-card { border-left: none; border-top: none; }
  .usp-card:nth-child(2n) { border-left: 1px solid var(--border); }
  .usp-card:nth-child(n+3) { border-top: 1px solid var(--border); }
}

/* ── 1024px ── */
@media (max-width: 1024px) {
  .nav-inner { padding: 0 24px; }

  /* Homepage */
  .hero { padding: 120px 0 64px; }
  .stats-grid { max-width: 700px; }
  .shift-grid { gap: 36px; }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card:last-child {
    grid-column: 1 / -1;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
    border-left: 1px solid var(--border);
    border-top: none;
  }
  .converge-svg {
    display: none;
  }
  .converge-single-line {
    display: block;
  }

  /* Methodology */
  .steps-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }
  .steps-container::before,
  .steps-container::after {
    display: none;
  }
  .step {
    flex: 0 0 calc(33.33% - 22px);
  }

  /* Get started */
  .gs-layout { grid-template-columns: 1fr 380px; padding: 40px 24px 60px; gap: 40px; }
  .gs-booking-card { padding: 32px 24px; }
}

/* ── 900px ── */
@media (max-width: 900px) {
  /* Blog index grid */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Blog article */
  .article-header-wrap { padding: 0 20px; }
  .article-header { margin-left: 0; padding: 24px 0 0; }
  .article-header h1 { font-size: 28px; }
  .featured-image-wrap { padding: 0 20px; }
  .featured-image-inner { margin-left: 0; max-width: 100%; }
  .article-layout { flex-direction: column; gap: 0; padding: 0 20px; }
  .toc { display: none; }
  .toc-mobile {
    display: block;
    padding: 0 20px;
    margin-bottom: 32px;
  }
  .toc-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--caption);
    text-transform: none; /* no all caps */
    letter-spacing: 1px;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    cursor: pointer;
  }
  .toc-mobile-toggle svg { width: 14px; height: 14px; transition: transform 0.2s; }
  .toc-mobile-toggle.open svg { transform: rotate(180deg); }
  .toc-mobile-list { display: none; list-style: none; padding: 12px 0 0; }
  .toc-mobile-list.open { display: block; }
  .toc-mobile-list a {
    display: block;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--caption);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s;
  }
  .toc-mobile-list a:hover { color: var(--body); }
  .article-body { max-width: 100%; }
  .article-body h2 { font-size: 24px; }
  .article-body p, .article-body li { font-size: 16px; }
  .stat-callout { font-size: 28px; }
  .stat-callout .stat-number { font-size: 36px; }
  .article-body table { font-size: 14px; display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .article-body thead th { font-size: 11px; padding: 8px 10px; }
  .article-body tbody td { padding: 10px; }
  .article-body tbody td:first-child { white-space: normal; }
  .content-upgrade { flex-direction: column; gap: 12px; padding: 20px; }
  .content-upgrade-link { align-self: flex-start; }
  .inline-cta { padding: 24px 20px; }
  .article-body blockquote p { font-size: 18px; }
  .article-body h3 { font-size: 20px; }
  .article-body img { max-width: 100%; height: auto; }
  .author-section { flex-direction: column; align-items: flex-start; max-width: 100%; }
  .social-sharing { max-width: 100%; flex-wrap: wrap; }
  .related-posts { padding: 48px 20px; }
  .related-posts .grid { grid-template-columns: 1fr; gap: 24px; }
  .newsletter-signup { margin: 0 20px; padding: 40px 24px; }
  .breadcrumbs-wrap { padding: 16px 20px; }
  .breadcrumbs .current {
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: bottom;
  }
  .bottom-cta { padding: 60px 20px; }
  .bottom-cta .cta-form { flex-direction: column; max-width: 360px; }
  .bottom-cta .cta-form input { border-radius: var(--radius); margin-bottom: 8px; }
  .bottom-cta .cta-form button { border-radius: var(--radius); }

  /* Case study specifics at 900px */
  .article-header-wrap--case { padding: 0 20px; flex-direction: column; gap: 0; }
  .article-header-wrap--case > [style*="width: 220px"] { display: none; }
  .article-header-wrap--case .article-header { margin-left: 0; max-width: 100%; }
  .tldr-card { margin: 0 0 32px; max-width: 100%; }
  .tldr-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .results-grid { grid-template-columns: 1fr; gap: 20px; }
  .tldr-card { padding: 24px 20px; }
  /* Override inline-styled wrappers for case study */
  main > div[style*="display: flex"][style*="gap: 48px"] {
    flex-direction: column !important;
    gap: 0 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  main > div[style*="display: flex"][style*="gap: 48px"] > [style*="width: 220px"] {
    display: none !important;
  }
}

/* ── 768px ── */
@media (max-width: 768px) {
  .nav-center { display: none; }
  .nav-cta-desktop { display: none; }
  .nav-hamburger { display: block; }
  .nav-inner { padding: 0 20px; }

  /* Homepage hero */
  .hero { padding: 100px 0 56px; }
  .hero-inner { padding: 0 20px; }
  .hero-qualifier { margin-bottom: 22px; }
  .hero h1 { font-size: clamp(28px, 7vw, 40px); margin-bottom: 14px; }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-form {
    flex-direction: column;
    gap: 8px;
  }
  .hero-form input {
    border-right: 1.5px solid var(--border);
    border-radius: 3px;
    width: 100%;
  }
  .hero-form input:focus { border-color: var(--primary); }
  .hero-form button {
    border-radius: 3px;
    width: 100%;
    text-align: center;
  }

  /* Platform bar */
  .platforms { padding: 28px 0 32px; }
  .platforms-label { margin-bottom: 18px; }
  .platforms-set { gap: 40px; padding-right: 40px; }

  /* Results */
  .results-metrics { flex-direction: column; gap: 24px; }
  .results-testimonial-row { flex-direction: column; align-items: center; text-align: center; }
  .testimonial-content { text-align: center; }
  .testimonial-attr { text-align: center; }

  /* Stats */
  .stats { padding: 64px 0; }
  .stats-inner { padding: 0 20px; }
  .stats-grid { grid-template-columns: 1fr; max-width: 500px; }
  .stat-number { font-size: 44px; }

  /* Shift */
  .shift { padding: 72px 0; }
  .shift-inner { padding: 0 20px; }
  .shift-grid { grid-template-columns: 1fr; gap: 48px; }
  .shift-h2 { font-size: clamp(22px, 6vw, 30px); }
  .old-path-flow { gap: 4px; }
  .old-step { font-size: 11px; }
  .shift-close { margin-top: 40px; }
  .highlight-tag { font-size: 8px; padding: 2px 5px; }

  /* Services & methodology */
  .problem-bridge { padding: 64px 20px 0; }
  .services-section { padding: 0 20px; }
  .services-header h2 { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .service-card + .service-card { border-left: 1px solid var(--border); border-top: none; }
  .service-card h3 { min-height: auto; }
  .service-card:last-child { max-width: none; margin: 0; }
  .converge-section { padding: 40px 20px 48px; }
  .converge-form { flex-direction: column; gap: 8px; }
  .converge-form input { border-radius: 3px; }
  .converge-form button { border-radius: 3px; }
  .methodology-section { padding: 64px 20px; }
  .methodology-header h2 { font-size: 28px; }
  .steps-container { flex-direction: column; align-items: center; gap: 32px; }
  .step { flex: none; width: 100%; max-width: 280px; }
  .step-desc { max-width: 240px; }

  /* USP */
  .usp-grid { grid-template-columns: 1fr; }
  .usp-card { border-left: none !important; border-top: none; padding: 32px 24px; }
  .usp-card:nth-child(n+2) { border-top: 1px solid var(--border); }
  .usp-card:nth-child(1) { transition-delay: 0ms; }
  .usp-card:nth-child(2) { transition-delay: 60ms; }
  .usp-card:nth-child(3) { transition-delay: 120ms; }
  .usp-card:nth-child(4) { transition-delay: 180ms; }
  .usp-card:nth-child(5) { transition-delay: 240ms; }
  .usp-card:nth-child(6) { transition-delay: 300ms; }

  /* Get started */
  .gs-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 20px 60px;
    gap: 32px;
  }
  .gs-right { width: 100%; }
  .gs-booking-card { padding: 32px 24px 36px; width: 100%; max-width: 100%; }
  .gs-subline { max-width: 100%; }
  .gs-bestfor { max-width: 100%; }
  .gs-email-form { max-width: 100%; }
  .gs-platforms { gap: 10px; }
  .gs-platform-icon svg { height: 18px; width: 18px; }
  .gs-stats-row { justify-content: flex-start; }
  #cal-embed-container { max-width: 100% !important; }

  /* Book call */
  .bc-layout { grid-template-columns: 1fr; }
  .bc-dark { padding: 40px 24px; }
  .bc-founder-photo { width: 100%; max-width: 400px; height: auto; aspect-ratio: 3/2; }
  .bc-light { border-left: none; border-top: 1px solid var(--border); padding: 40px 24px; }

  /* Footer */
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Blog index */
  .breadcrumbs { padding: 76px 20px 0; }
  .blog-header {
    padding: 20px 20px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .blog-header h1 { font-size: 30px; }
  .search-bar { width: 100%; }
  .category-filter { padding: 0 20px; }
  .category-filter-inner { gap: 24px; }
  .article-count { padding: 16px 20px 0; }
  .featured-post { padding: 32px 20px 40px; }
  .featured-post a { grid-template-columns: 1fr; gap: 24px; }
  .fp-title { font-size: 24px; }
  .blog-grid { grid-template-columns: 1fr; gap: 24px; padding: 40px 20px 0; }
  .card-content { padding: 20px; }
  .newsletter { padding: 0 20px; margin-top: 40px; }
  .newsletter-inner { padding: 32px 24px; }
  .nl-form { flex-direction: column; gap: 12px; }
  .nl-form input { border-right: 1px solid var(--border); border-radius: 3px; }
  .nl-form button { border-radius: 3px; }
  .load-more-wrap { padding: 40px 20px 0; }
  .bottom-cta { padding: 56px 20px; margin-top: 56px; }

  /* AI Info page */
  .ai-info-content { padding: 100px 20px 60px; }
  .ai-info-content h1 { font-size: 26px; }
  .ai-info-content h2 { font-size: 20px; }
}

/* ── 767px (What Happens Next + FAQ mobile) ── */
@media (max-width: 767px) {
  .whn { padding: 72px 0 64px; }
  .whn-inner { padding: 0 24px; }
  .whn-header { margin-bottom: 48px; }
  .whn-steps { padding-left: 52px; }
  .whn-line { left: 24px; transform: none; }
  .whn-step {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
  }
  .whn-step + .whn-step { margin-top: 60px; }
  .whn-node {
    position: absolute;
    left: -52px;
    top: 0;
    width: 42px;
    height: 42px;
  }
  .whn-text-left,
  .whn-text-right {
    text-align: left;
    padding: 0;
    margin-bottom: 16px;
  }
  .whn-image-left,
  .whn-image-right { padding: 0; }
  .step-image { width: 100%; height: auto; }
  .step-image:hover { transform: none; border-color: var(--border); }
  .whn-step .whn-text { order: 1; }
  .whn-step .whn-node { order: 0; }
  .whn-step .whn-image { order: 2; }
  .whn-step-left .whn-anim-text,
  .whn-step-right .whn-anim-text,
  .whn-step-left .whn-anim-image,
  .whn-step-right .whn-anim-image {
    transform: translateY(14px);
  }
  .whn-step.visible .whn-anim-text,
  .whn-step.visible .whn-anim-image {
    transform: translateY(0);
  }
  .whn-footer { margin-top: 64px; }
  .whn-text-title { font-size: 20px; }
  .whn-text-desc { font-size: 15px; }

  /* FAQ mobile */
  .faq-section { padding: 52px 0; }
  .faq-inner { padding: 0 20px; }
  .faq-row { flex-direction: column; gap: 0; }
  .faq-item { padding: 24px 0; }
  .faq-item:first-child { padding-right: 0; border-right: none; border-bottom: 1px solid var(--border); }
  .faq-item:last-child { padding-left: 0; }

  /* Final CTA mobile */
  .final-cta { padding: 56px 0 72px; }
  .final-cta-inner { padding: 0 16px; }
  .cta-grad-card { padding: 32px 24px; }
  .cta-platforms { flex-wrap: wrap; }
  #cta-form { flex-direction: column; gap: 12px; }
  #cta-form input[type="email"] { border-right: 1px solid #E5E0DA; border-radius: 3px; }
  #cta-form button { border-radius: 3px; }
  .cta-author-stats { gap: 8px; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  /* Prevent text overflow */
  body { overflow-wrap: break-word; word-wrap: break-word; }

  /* Homepage hero */
  .hero-qualifier { font-size: 10px; padding: 5px 10px; letter-spacing: 0.06em; }
  .hero-sub { font-size: 15px; }
  .old-path-flow { flex-wrap: wrap; }
  .new-step-icons { display: none; }

  /* Homepage results */
  .metric-number { font-size: clamp(32px, 9vw, 40px); }
  .results-trust { font-size: 16px; }

  /* Homepage stats */
  .stat-number { font-size: 38px; }
  .stat-card { padding: 24px 20px; }

  /* Shift */
  .shift-h2 { font-size: 22px; }
  .shift-close-text { font-size: 15px; }

  /* Services & methodology */
  .services-header h2,
  .methodology-header h2 { font-size: 24px; }
  .service-card { padding: 24px 20px; }
  .service-card h3 { font-size: 20px; }
  .methodology-header { margin-bottom: 40px; }
  .step-desc { max-width: 220px; }
  .converge-section { padding: 32px 20px 40px; }
  .converge-headline { font-size: 16px; }
  .outcome-box { padding: 12px 20px; font-size: 14px; }

  /* USP */
  .usp-section { padding: 56px 0; }
  .usp-inner { padding: 0 20px; }
  .usp-card { padding: 24px 20px; }
  .usp-heading { font-size: 24px; }

  /* What Happens Next */
  .whn-inner { padding: 0 20px; }
  .whn-header { margin-bottom: 36px; }
  .whn-closing { font-size: 19px; }
  .whn-cta { padding: 14px 32px; font-size: 14px; }

  /* FAQ */
  .faq-headline { font-size: 22px; }
  .faq-question { font-size: 15px; }
  .faq-answer { font-size: 13px; }

  /* Final CTA */
  .cta-grad-card { padding: 28px 20px; }
  .cta-grad-headline { font-size: 24px; }
  .cta-grad-subline { font-size: 15px; }
  .cta-platforms { gap: 12px; }
  .cta-platforms .cta-logo-item svg { width: 18px; height: 18px; }

  /* Footer 480px */
  .footer-columns { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-inner { padding: 64px 20px 48px; }
  .footer-ai-row { flex-direction: column; align-items: flex-start; gap: 4px; }

  /* Get started 480px */
  .gs-layout { padding: 24px 16px 40px; gap: 28px; }
  .gs-booking-card { padding: 32px 20px; }
  .gs-headline { font-size: clamp(26px, 7vw, 32px); }
  .gs-subline { font-size: 16px; }
  .gs-card-headline { font-size: 20px; }
  .gs-card-subline { font-size: 13px; }
  .gs-email-form { flex-direction: column; }
  .gs-email-form input { border-right: 1px solid var(--border); border-radius: 3px; margin-bottom: 8px; }
  .gs-email-form button { border-radius: 3px; }
  .gs-stats-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .gs-stat-dot { display: none; }
  .gs-platforms { gap: 8px; }
  .gs-platform-icon svg { height: 16px !important; width: 16px !important; }

  /* Book call 480px */
  .bc-dark { padding: 32px 16px; }
  .bc-light { padding: 32px 16px; }
  .bc-founder-photo { max-width: 100%; }
  .bc-dark-bullets li { font-size: 15px; }
  .bc-form-headline { font-size: 22px; }
  .bc-form-wrap { max-width: 100%; }
  .bc-cal-wrap { max-width: 100%; }
  .footer-logo svg { width: 100px; }

  /* Blog index 480px */
  .breadcrumbs { padding: 72px 16px 0; font-size: 12px; }
  .blog-header { padding: 16px 16px 32px; gap: 16px; }
  .blog-header h1 { font-size: 26px; }
  .blog-header .subtitle { font-size: 15px; }
  .category-filter { padding: 0 16px; }
  .category-filter-inner { gap: 16px; }
  .cat-tab { font-size: 13px; padding: 10px 0; }
  .article-count { padding: 12px 16px 0; }
  .featured-post { padding: 24px 16px 32px; }
  .fp-title { font-size: 21px; }
  .fp-excerpt { font-size: 14px; }
  .fp-meta { font-size: 12px; }
  .blog-grid { padding: 32px 16px 0; gap: 20px; }
  .card-content { padding: 16px; }
  .card-title { font-size: 16px; }
  .card-excerpt { font-size: 13px; margin-bottom: 12px; }
  .card-meta { font-size: 12px; }
  .newsletter { padding: 0 16px; margin-top: 32px; }
  .newsletter-inner { padding: 28px 20px; }
  .newsletter-inner h2 { font-size: 19px; }
  .newsletter-inner p { font-size: 14px; margin-bottom: 20px; }
  .load-more-wrap { padding: 32px 16px 0; }
  .bottom-cta { padding: 48px 16px; margin-top: 48px; }
  .bottom-cta h2 { font-size: 21px; }
  .bottom-cta p { font-size: 14px; }
  .footer-inner { padding: 48px 16px 40px; }

  /* Blog article 480px */
  .article-header h1 { font-size: 26px; }
  .article-header .meta-text { font-size: 13px; }
  .stat-callout { font-size: 24px; padding: 24px 0; }
  .stat-callout .stat-number { font-size: 32px; }
  .stat-callout .stat-label { font-size: 13px; }
  .inline-cta h4 { font-size: 18px; }
  .inline-cta p { font-size: 14px; }
  .newsletter-signup h3 { font-size: 20px; }
  .newsletter-signup { padding: 32px 20px; }
  .newsletter-signup .form-row { flex-direction: column; }

  /* Case study 480px */
  .tldr-stats { gap: 12px; }
  .tldr-stat-number { font-size: 22px; }
  .tldr-stat-label { font-size: 12px; }
  .result-item { padding: 24px 16px; min-height: 120px; }
  .result-number { font-size: 28px; }
  .stat-callout { font-size: 22px; }
  .stat-callout .stat-number { font-size: 28px; }
  .article-body blockquote p { font-size: 17px; }
  .case-testimonial { padding-left: 16px; }
  .case-testimonial blockquote { font-size: 15px; }
  .blog-card .card-title { font-size: 16px; }

  /* Legal 480px */
  .nav-inner { padding: 0 16px; }
  .legal-content { padding: calc(64px + 48px) 16px 48px; }
  .legal-content h1 { font-size: 26px; }
  .legal-content h2 { font-size: 20px; margin-top: 32px; }
  .legal-updated { margin-bottom: 32px; }
  .legal-content ul { padding-left: 20px; }

  /* Case study header 480px */
  .article-header-wrap--case .article-header h1 { font-size: 24px; }
}

/* ── 390px (very narrow screens) ── */
@media (max-width: 390px) {
  .hero-qualifier { font-size: 9px; padding: 4px 8px; }
  .hero-form input { font-size: 14px; padding: 13px 14px; }
  .hero-form button { font-size: 13px; padding: 13px 18px; }
  .hero-inner,
  .usp-inner,
  .whn-inner,
  .faq-inner,
  .footer-inner { padding-left: 16px; padding-right: 16px; }
  .stats-inner,
  .shift-inner,
  .results-inner { padding-left: 16px; padding-right: 16px; }
  .problem-bridge,
  .services-section,
  .methodology-section,
  .converge-section { padding-left: 16px; padding-right: 16px; }
  .final-cta-inner { padding-left: 12px; padding-right: 12px; }
  .step-number { width: 40px; height: 40px; font-size: 17px; }
  .whn-steps { padding-left: 44px; }
  .whn-node { left: -44px; width: 36px; height: 36px; }
  .whn-node-num { font-size: 17px; }
  .whn-line { left: 18px; }
}

/* ── 375px ── */
@media (max-width: 375px) {
  .nav-inner { padding: 0 16px; }

  /* Get started 375px */
  .gs-layout { padding: 28px 14px 40px; gap: 24px; }
  .gs-booking-card { padding: 24px 16px 28px; }
  .gs-platforms { gap: 7px; }
  .gs-platform-icon svg { height: 15px !important; width: 15px !important; }
  .gs-email-form input { padding: 12px 14px; font-size: 14px; }
  .gs-email-form button { padding: 12px 20px; font-size: 14px; }
  .footer-inner { padding: 40px 14px 32px; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .step,
  .usp-card,
  .whn-anim-node,
  .whn-anim-text,
  .whn-anim-image {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .platforms-track {
    animation-duration: 30s !important;
  }
  html {
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   SERVICES DROPDOWN
   ============================================================ */
.nav-dropdown { position: relative; }
.nav-dropdown::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 16px; }
.nav-dropdown-menu { visibility: hidden; opacity: 0; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(4px); background: var(--base); border: 1px solid var(--border); padding: 8px 0; min-width: 240px; z-index: 1000; transition: opacity 250ms ease, transform 250ms ease, visibility 250ms ease; }
.nav-dropdown:hover .nav-dropdown-menu { visibility: visible; opacity: 1; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a { display: block; padding: 10px 20px; font-family: 'Geist', sans-serif; font-size: 14px; font-weight: 500; color: var(--body); text-decoration: none; transition: background 150ms ease, color 150ms ease; }
.nav-dropdown-menu a:hover { background: var(--surface); color: var(--heading); }
.nav-dropdown-menu a.active { color: var(--primary); font-weight: 600; }
.mobile-services-group { width: 100%; text-align: center; }
.mobile-services-toggle { justify-content: center !important; }
.mobile-services-sub { overflow: hidden; max-height: 0; transition: max-height 300ms ease; display: flex !important; flex-direction: column; align-items: center; gap: 0; }
.mobile-services-sub.open { max-height: 200px; }
.mobile-services-sub a { padding: 10px 0 !important; font-size: 15px; text-align: center; }


/* ==================== NEW FOOTER v5 ==================== */
.footer { background: #091525; position: relative; padding: 72px 0 0; }

.footer-inner { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.8fr 0.9fr 0.9fr 1.2fr; gap: 24px; padding-bottom: 48px; }
.footer-brand { display: flex; flex-direction: column; }
.footer-logo svg { height: 36px; width: auto; }
.footer-brand-tagline { font-size: 17px !important; color: #fff !important; line-height: 1.55; margin-top: 20px; margin-bottom: 32px; max-width: 380px; }
.footer-cta-form { display: flex; flex-direction: column; }
.footer-cta-label { font-size: 24px; font-weight: 600; color: #fff; margin-bottom: 18px; display: block; }
.footer-cta-row { display: flex; max-width: 480px; }
.footer-cta-row input { flex: 1; padding: 14px 16px; font-family: inherit; font-size: 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-right: none; border-radius: 3px 0 0 3px; color: #fff; outline: none; transition: border-color 0.2s; min-width: 240px; }
.footer-cta-row input::placeholder { color: rgba(255,255,255,0.3); }
.footer-cta-row input:focus { border-color: #0b7bfb; }
.footer-cta-row button { padding: 14px 16px; font-family: inherit; font-size: 13px; font-weight: 600; background: #FAFAF7; color: #1e1e1e; border: none; border-radius: 0 3px 3px 0; cursor: pointer; white-space: nowrap; transition: opacity 0.2s; flex-shrink: 0; }
.footer-cta-row button:hover { opacity: 0.9; }
.footer-col-heading { font-size: 14px !important; font-weight: 600 !important; color: #fff !important; margin-bottom: 24px !important; text-transform: none !important; letter-spacing: 0 !important; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.footer-links li { margin-bottom: 6px !important; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-contact-link { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; text-decoration: none; padding: 8px; margin: -8px -8px 16px -8px; border-radius: 8px; transition: background 0.2s; }
.footer-contact-link:hover { background: rgba(255,255,255,0.04); }
.footer-contact-link img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.1); }
.footer-contact-info { display: flex; flex-direction: column; }
.footer-contact-name { font-weight: 600; font-size: 14px; color: #fff; display: flex; align-items: center; gap: 6px; }
.verified-tick { width: 16px; height: 16px; flex-shrink: 0; }
.footer-contact-role { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.footer-links-icons a { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.65); }
.footer-links-icons svg { flex-shrink: 0; opacity: 0.55; transition: opacity 0.2s; }
.footer-links-icons a:hover svg { opacity: 1; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 0; }
.footer-ai-row { display: flex; align-items: center; gap: 18px; padding: 28px 0 8px; }
.footer-ai-label { font-size: 20px; font-weight: 600; color: #fff; white-space: nowrap; letter-spacing: 0.2px; }
.footer-ai-icons { display: flex; align-items: center; gap: 8px; }
.ai-icon { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background 0.3s, border-color 0.3s, box-shadow 0.3s; }
.ai-icon:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.ai-icon.chatgpt:hover { box-shadow: 0 0 12px rgba(255,255,255,0.15); }
.ai-icon.perplexity:hover { box-shadow: 0 0 12px rgba(32,184,205,0.25); }
.ai-icon.claude:hover { box-shadow: 0 0 12px rgba(217,119,87,0.25); }
.ai-icon.googleai:hover { box-shadow: 0 0 12px rgba(66,133,244,0.25); }
.footer-ai-right { margin-left: auto; }
.footer-ai-right a { color: rgba(255,255,255,0.5); display: flex; align-items: center; transition: color 0.2s; }
.footer-ai-right a:hover { color: #0A66C2; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 4px; align-items: center; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: #fff; }
.footer-legal .dot { color: rgba(255,255,255,0.15); font-size: 10px; margin: 0 6px; }

/* Remove gap between dark CTA and footer */
.final-cta { margin-bottom: 0 !important; }
.final-cta + .footer, .footer { margin-top: 0 !important; }

/* Kill gap between page content and footer */
main + .footer { margin-top: -2px; }
.footer { border-top: none !important; }
main { padding-bottom: 0 !important; margin-bottom: 0 !important; }

/* Seamless CTA to footer transition on service pages */
.final-cta + main + .footer,
main + .footer {
  margin-top: -1px !important;
  padding-top: 72px !important;
}
.footer::before {
  display: none !important;
}

.footer::before { display: none !important; height: 0 !important; }
