/* ============================================
   Figfy Design System — Light Theme
   ============================================ */

:root {
  /* Backgrounds — LIGHT THEME ONLY */
  --bg-primary: #fafafa;
  --bg-secondary: #f3f4f6;
  --bg-card: #ffffff;
  --bg-card-border: rgba(0, 0, 0, 0.08);
  --bg-card-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --bg-accent-subtle: #eef2ff; /* very light indigo wash */

  /* Brand colors */
  --brand-indigo: #6366f1;
  --brand-indigo-hover: #4f46e5;
  --brand-indigo-light: #818cf8;
  --brand-amber: #f59e0b;
  --brand-amber-light: #fbbf24;
  --brand-emerald: #22c55e;
  --brand-emerald-light: #34d399;

  /* Text — dark on light */
  --text-heading: #111827;
  --text-body: #4b5563;
  --text-muted: #9ca3af;
  --text-on-brand: #ffffff;

  /* Navigation */
  --nav-bg: #ffffff;
  --nav-border: rgba(0, 0, 0, 0.08);
  --nav-text: #374151;
  --nav-text-hover: #111827;

  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  color: var(--brand-indigo);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--brand-indigo-hover);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---- Navigation ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nav-border);
  padding: 1rem 2rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  text-decoration: none;
}

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

.nav-links a {
  color: var(--nav-text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.nav-links a.btn-primary {
  color: var(--text-on-brand);
}
.nav-links a.btn-primary:hover {
  color: var(--text-on-brand);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--brand-indigo);
  color: var(--text-on-brand);
}

.btn-primary:hover {
  background-color: var(--brand-indigo-hover);
  color: var(--text-on-brand);
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--text-heading);
  border: 1px solid var(--bg-card-border);
}

.btn-secondary:hover {
  background-color: var(--bg-secondary);
  color: var(--text-heading);
}

/* CRITICAL: Never use grey/muted text on buttons.
   All button text must be high-contrast:
   - White (#fff) on colored backgrounds
   - Dark (#111827) on light backgrounds
   See: feedback_button_contrast.md */

/* ---- Container ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Section spacing ---- */
.section {
  padding: var(--space-2xl) 0;
}

.section-lg {
  padding: var(--space-3xl) 0;
}

/* ---- Footer ---- */
.site-footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--bg-card-border);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-body);
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand-indigo);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: var(--space-lg) auto 0;
  padding: var(--space-sm) 2rem 0;
  border-top: 1px solid var(--bg-card-border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ---- Additional Button Variants ---- */
.btn-ghost {
  background: transparent;
  color: var(--text-heading);
  border: 1.5px solid #d1d5db;
}

.btn-ghost:hover {
  border-color: #9ca3af;
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-heading);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
}

/* ---- Typography Helpers ---- */
.subtitle {
  font-size: 1.25rem;
  color: var(--text-body);
  line-height: 1.8;
}

.small-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.gradient-text {
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-color {
  color: var(--brand-indigo);
}

/* ---- Pills & Tags ---- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pill-green {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
}

.pill-green::before {
  content: '\25CF';
  font-size: 0.6rem;
}

.pill-brand {
  background: rgba(99, 102, 241, 0.1);
  color: #4f46e5;
}

.pill-amber {
  background: rgba(245, 158, 11, 0.1);
  color: #b45309;
}

.tag-small {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(99, 102, 241, 0.1);
  color: #4f46e5;
  margin-top: 1rem;
}

/* ---- Section Transitions ---- */
.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06) 30%, rgba(0, 0, 0, 0.06) 70%, transparent);
}

.section {
  position: relative;
}

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

/* ---- Announcement Bar ---- */
.announcement {
  background: linear-gradient(135deg, #818cf8, #c084fc);
  padding: 1rem 0;
  text-align: center;
  position: relative;
  transition: background 0.3s ease;
}

.announcement p {
  padding: 0 2.5rem;
  color: white;
  font-size: 0.95rem;
}

.announcement a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transition: border-color 0.2s;
}

.announcement a:hover {
  border-color: white;
}

.announcement-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  transition: color 0.2s;
}

.announcement-close:hover {
  color: white;
}

/* ---- Hero Section ---- */
.hero {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  text-align: left;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 440px;
}

.hero-logo-mark {
  width: 100%;
  height: 100%;
  opacity: 0.12;
  filter: blur(1px);
}

/* Floating metric cards */
.hero-float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: var(--bg-card-shadow);
  font-size: 0.85rem;
  color: var(--text-body);
  white-space: nowrap;
}

.hero-float-card strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.hero-float-card.card-1 {
  top: 8%;
  right: 0;
  animation: float-1 6s ease-in-out infinite;
}

.hero-float-card.card-1 strong { color: #818cf8; }

.hero-float-card.card-2 {
  bottom: 25%;
  left: -5%;
  animation: float-2 7s ease-in-out infinite;
}

.hero-float-card.card-2 strong { color: #fbbf24; }

.hero-float-card.card-3 {
  bottom: 5%;
  right: 10%;
  animation: float-3 5.5s ease-in-out infinite;
}

.hero-float-card.card-3 strong { color: #34d399; }

@keyframes float-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float-2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes float-3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---- Problem Section — Equation Layout ---- */
.problem-section {
  position: relative;
  overflow: hidden;
}

.problem-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.problem-header {
  text-align: center;
  margin-bottom: 5rem;
}

.problem-header h2 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin: 0 auto;
}

.equation-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.eq-plus-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  position: relative;
}

.eq-plus-symbol {
  font-size: 6rem;
  font-weight: 900;
  color: var(--text-muted);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.eq-plus-divider::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.06) 20%, rgba(0,0,0,0.06) 80%, transparent);
  transform: translateX(-50%);
}

.eq-block {
  padding: 2.5rem;
  border-radius: 20px;
  position: relative;
}

.eq-block-software {
  background: linear-gradient(160deg, rgba(99, 102, 241, 0.05) 0%, rgba(99, 102, 241, 0.01) 100%);
  border: 1px solid rgba(99, 102, 241, 0.15);
}

.eq-block-services {
  background: linear-gradient(160deg, rgba(245, 158, 11, 0.05) 0%, rgba(245, 158, 11, 0.01) 100%);
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.block-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.block-label-software { color: #4f46e5; }
.block-label-services { color: #b45309; }

.block-heading {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.services-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.problem-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-amber);
  margin-top: 8px;
  flex-shrink: 0;
}

.eq-block-software .problem-item::before {
  background: var(--brand-indigo);
}

.problem-item:last-child { margin-bottom: 0; }

.problem-item-text h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.2rem;
}

.problem-item-text p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* Converging ribbons */
.converge-visual {
  display: flex;
  justify-content: center;
  margin-top: 0;
  position: relative;
}

.converge-arrows {
  width: 100%;
  max-width: 1100px;
  height: 100px;
}

/* Problem Result */
.problem-result {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
}

.problem-result p {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.8;
}

.problem-result strong {
  color: #dc2626;
}

.problem-equation-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.problem-equation-chip .eq-sw { color: #4f46e5; }
.problem-equation-chip .eq-sv { color: #f59e0b; }
.problem-equation-chip .eq-op { color: var(--text-muted); }

.problem-equation-chip .eq-sol {
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- The Shift Section — Split Layout ---- */
.shift-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.shift-intro h2 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.shift-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 380px;
}

.shift-outcomes {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.shift-outcome {
  padding: 2.25rem;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  display: block;
}

.shift-outcome::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(99, 102, 241, 0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.shift-outcome:hover::before {
  opacity: 1;
}

.shift-outcome:hover {
  background: rgba(99, 102, 241, 0.04);
  border-color: rgba(99, 102, 241, 0.15);
  transform: translateX(6px);
}

.shift-outcome-content h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.shift-outcome-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(192, 132, 252, 0.15));
  border: 1px solid rgba(99, 102, 241, 0.3);
  font-size: 0.85rem;
  font-weight: 800;
  color: #4f46e5;
  flex-shrink: 0;
}

.shift-outcome-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.shift-outcome-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4f46e5;
  transition: gap 0.3s ease;
}

.shift-outcome:hover .shift-outcome-link {
  gap: 0.75rem;
}

/* ---- Marketplace Preview Slideshow ---- */
.marketplace-preview {
  text-align: center;
}

.marketplace-preview-browser {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #fafafa;
}

.marketplace-preview-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f3f4f6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.toolbar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.toolbar-dot--close { background: #ff5f57; }
.toolbar-dot--minimize { background: #febc2e; }
.toolbar-dot--maximize { background: #28c840; }

.toolbar-url {
  flex: 1;
  margin-left: 12px;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.4);
  font-family: 'Inter', monospace;
  letter-spacing: 0.3px;
}

.marketplace-preview-frame {
  position: relative;
  aspect-ratio: 1440 / 900;
  background: var(--bg-primary);
}

.marketplace-preview-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  box-shadow: inset 0 0 80px 20px rgba(250, 250, 250, 0.5);
}

.marketplace-preview-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.marketplace-preview-frame img.active {
  opacity: 1;
}

.marketplace-preview-steps {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.marketplace-preview-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  cursor: default;
}

.marketplace-preview-step.active {
  color: var(--text-heading);
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
}

.marketplace-preview-step .step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.4s ease;
}

.marketplace-preview-step.active .step-dot {
  background: #4f46e5;
}

/* ---- Stakeholder Cards ---- */
.stakeholder-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.stakeholder-cards-wrapper {
  position: relative;
  margin-top: 3.5rem;
}

.stakeholder-triangle-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 550px;
  height: 550px;
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
}

.stakeholder-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.stakeholder-card-customers {
  grid-column: 1;
  grid-row: 1;
}

.stakeholder-card-partners {
  grid-column: 1;
  grid-row: 2;
}

.stakeholder-card-company {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  align-self: center;
}

.stakeholder-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.stakeholder-card:hover {
  background: rgba(99, 102, 241, 0.02);
  border-color: rgba(99, 102, 241, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stakeholder-header {
  height: 4px;
  margin-bottom: 0;
}

.stakeholder-header.indigo {
  background: linear-gradient(90deg, #6366f1, #818cf8);
}

.stakeholder-header.emerald {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.stakeholder-header.amber {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.stakeholder-content {
  padding: 2.5rem;
}

.stakeholder-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.stakeholder-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--text-heading);
}

.stakeholder-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.stakeholder-features li {
  padding: 0.75rem 0;
  position: relative;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.stakeholder-check {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 1px;
}

.stakeholder-card-customers .stakeholder-check {
  color: var(--brand-indigo);
}

.stakeholder-card-partners .stakeholder-check {
  color: var(--brand-amber);
}

.stakeholder-card-company .stakeholder-check {
  color: var(--brand-emerald);
}

.stakeholder-learn-more {
  display: block;
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.stakeholder-learn-more span {
  display: block;
  color: #4f46e5;
  font-weight: 700;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.stakeholder-learn-more:hover span {
  color: #2563eb;
  padding-left: 4px;
}

/* ---- Timeline (Getting Started) ---- */
.timeline {
  display: flex;
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #818cf8, #c084fc, #818cf8);
  border-radius: 2px;
}

.timeline-step {
  flex: 1;
  position: relative;
  padding: 0 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-dot {
  width: 42px;
  height: 42px;
  background: var(--bg-primary);
  border: 2px solid #6366f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #4f46e5;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline-step:hover .timeline-dot {
  background: linear-gradient(135deg, #6366f1, #818cf8);
  color: white;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.timeline-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-heading);
}

.timeline-step p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ---- Credibility Section ---- */
.credibility-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
}

.experience-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.experience-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.experience-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.experience-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 140px;
  flex-shrink: 0;
}

.experience-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-heading);
}

.experience-text p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

.guarantee-card {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.03));
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.guarantee-icon {
  width: 48px;
  height: 48px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.guarantee-text h4 {
  color: #15803d;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.guarantee-text p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ---- Final CTA ---- */
.final-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #111827 30%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.try-free {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #15803d;
  font-weight: 500;
}

/* ---- About Page ---- */
.about-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(99, 102, 241, 0.1);
  color: #4f46e5;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.section-pill::before {
  content: '\2022';
  color: #f59e0b;
  font-size: 1.25rem;
  line-height: 1;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.about-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.7;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
  margin: 0;
}

/* About — Problem section */
.about-problem {
  padding: 5rem 2rem;
}

.about-problem-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-section-header {
  margin-bottom: 3rem;
}

.about-section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-heading);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.about-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-problem-narrative {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-body);
}

.about-problem-narrative p {
  margin-bottom: 1.5rem;
}

.about-problem-narrative strong {
  color: var(--text-heading);
  font-weight: 600;
}

.about-stat-block {
  background-color: var(--bg-secondary);
  border-left: 3px solid var(--brand-indigo);
  padding: 2.5rem;
  border-radius: 0.5rem;
}

.about-stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-size: 1rem;
  color: var(--text-body);
  font-weight: 500;
  line-height: 1.5;
}

.about-stat-opportunity {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 0.95rem;
  color: var(--text-body);
}

.about-stat-opportunity strong {
  color: var(--text-heading);
}

/* About — Approach section */
.about-approach {
  background-color: var(--bg-secondary);
  padding: 5rem 2rem;
}

.about-approach-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-approach-intro {
  max-width: 800px;
  margin-bottom: 3.5rem;
}

.about-approach-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.about-approach-intro strong {
  color: var(--text-heading);
}

.about-approach-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-pillar {
  background-color: var(--bg-card);
  padding: 2rem;
  border-radius: 0.5rem;
  border-top: 2px solid var(--brand-indigo);
}

.about-pillar h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-pillar svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand-indigo);
  stroke-width: 2;
  fill: none;
}

.about-pillar p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
}

/* About — Values section */
.about-values {
  padding: 5rem 2rem;
}

.about-values-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-values-intro {
  margin-bottom: 3.5rem;
  max-width: 700px;
}

.about-values-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.about-value-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-value-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(99, 102, 241, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-value-icon svg {
  width: 28px;
  height: 28px;
  stroke: #818cf8;
  stroke-width: 2;
  fill: none;
}

.about-value-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-heading);
}

.about-value-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
}

/* About — CTA section */
.about-cta {
  background-color: var(--bg-secondary);
  padding: 5rem 2rem;
}

.about-cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-heading);
  letter-spacing: -0.01em;
}

.about-cta p {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.about-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Features Page ---- */
.features-hero {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.features-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.features-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.features-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  justify-content: center;
}

/* Features layout with sticky TOC */
.features-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.features-toc {
  position: sticky;
  top: 6rem;
  align-self: start;
  max-height: calc(100vh - 8rem);
  overflow-y: auto;
}

.features-toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.features-toc-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  border-radius: 0 4px 4px 0;
  transition: all 0.2s ease;
}

.toc-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.features-toc-list a:hover .toc-icon {
  opacity: 0.9;
}

.features-toc-list a.active .toc-icon {
  opacity: 1;
  color: var(--brand-indigo);
}

.features-toc-list a:hover {
  color: var(--text-heading);
  background: rgba(99, 102, 241, 0.04);
}

.features-toc-list a.active {
  color: var(--brand-indigo);
  border-left-color: var(--brand-indigo);
  background: rgba(99, 102, 241, 0.08);
  font-weight: 600;
}

.features-sections {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Mobile TOC (replaces sidebar) */
.features-toc-mobile {
  display: none;
  overflow-x: auto;
  padding: 1rem 2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--bg-card-border);
  -webkit-overflow-scrolling: touch;
}

.features-toc-mobile-list {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  white-space: nowrap;
}

.features-toc-mobile-list a {
  display: block;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.features-toc-mobile-list a.active {
  color: var(--text-heading);
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
}

/* Feature sections */
.feature-section {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-section:last-child {
  border-bottom: none;
}

.feature-section:nth-child(even) {
  background: var(--bg-secondary);
  margin: 0 -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  border-radius: 16px;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.feature-split.reversed {
  direction: rtl;
}

.feature-split.reversed > * {
  direction: ltr;
}

.feature-visual-box {
  position: relative;
  border-radius: 16px;
  padding: 1rem;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual-placeholder {
  width: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.1), rgba(192, 132, 252, 0.05));
  border-radius: 12px;
}

.feature-visual-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Feature list (accent-bordered items) */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  border-left: 3px solid var(--brand-indigo);
  padding: 0.5rem 0 0.5rem 1.25rem;
  transition: border-color 0.2s ease;
}

.feature-list li:hover {
  border-left-color: var(--brand-indigo-light);
}

.feature-list h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}

.feature-list p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* Horizontal feature list (3-col) */
.feature-list-horizontal {
  flex-direction: row;
  gap: 2rem;
  margin-top: 2.5rem;
}

.feature-list-horizontal li {
  flex: 1;
}

/* Three-column feature cards (deprecated - kept for compatibility) */
.feature-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-card-col {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.feature-card-col:hover {
  border-color: rgba(99, 102, 241, 0.2);
  transform: translateY(-2px);
}

.feature-card-col h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-card-col p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* Full-width centered feature layout */
.feature-full-centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.feature-full-centered h2 {
  margin-bottom: 1.5rem;
}

.feature-full-centered > p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Feature card grid (2-col) */
.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-card-item {
  border-left: 3px solid var(--brand-indigo);
  padding: 0.75rem 0 0.75rem 1.25rem;
  transition: border-color 0.2s ease;
}

.feature-card-item:hover {
  border-left-color: var(--brand-indigo-light, #818cf8);
}

.feature-card-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}

.feature-card-item p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* Numbered list (checkout steps) */
.feature-numbered-list {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 2rem 0 0;
}

.feature-numbered-list li {
  counter-increment: step;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-numbered-list li:first-child {
  border-top: none;
}

.feature-numbered-list li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--brand-indigo);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-numbered-list h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}

.feature-numbered-list p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* Asymmetric layout (stacked cards + visual) */
.feature-asymmetric {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
}

.feature-stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Inline feature items (compact, flowing) */
.feature-inline-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-inline-item {
  flex: 1 1 220px;
  max-width: 280px;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 10px;
  transition: all 0.25s ease;
}

.feature-inline-item:hover {
  box-shadow: var(--bg-card-shadow);
  transform: translateY(-2px);
}

.feature-inline-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}

.feature-inline-item p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* Amber pill variant (partner-facing sections) */
.pill-amber {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.pill-amber::before {
  content: '\2022';
  font-size: 1.25rem;
  display: inline-block;
  line-height: 1;
}

/* Emerald pill variant (company/admin sections) */
.pill-emerald {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.pill-emerald::before {
  content: '\2022';
  font-size: 1.25rem;
  display: inline-block;
  line-height: 1;
}

/* Amber accent cards */
.feature-card-col--amber {
  border-left: 3px solid var(--brand-amber, #f59e0b);
}

.feature-card-col--amber:hover {
  border-color: var(--brand-amber, #f59e0b);
}

/* Emerald accent cards */
.feature-card-col--emerald {
  border-left: 3px solid var(--brand-emerald, #22c55e);
}

.feature-card-col--emerald:hover {
  border-color: var(--brand-emerald, #22c55e);
}

/* Logo cloud (integration/tool logos) */
.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  margin-top: 2rem;
}

.logo-cloud-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.logo-cloud-item:hover {
  opacity: 1;
}

.logo-cloud-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.logo-cloud-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
}

.logo-cloud-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  width: 100%;
  margin-bottom: -0.5rem;
}

/* Features responsive additions */
@media (max-width: 768px) {
  .feature-card-grid {
    grid-template-columns: 1fr;
  }

  .feature-asymmetric {
    grid-template-columns: 1fr;
  }

  .feature-inline-items {
    flex-direction: column;
  }

  .feature-inline-item {
    max-width: 100%;
  }
}

/* Features CTA */
.features-cta {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--bg-primary);
  border-top: 1px solid var(--bg-card-border);
}

.features-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.features-cta > p {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
}

.features-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* ---- How It Works Page ---- */
.hiw-hero {
  padding: 8rem 2rem;
  text-align: center;
}

.hiw-hero h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 900;
  margin: 1rem 0 1.5rem 0;
  line-height: 1.2;
}

.hiw-hero .subtitle {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.7;
}

.hiw-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #818cf8;
  margin-bottom: 1.5rem;
}

.hiw-pill::before {
  content: '\2022';
  font-size: 1.25rem;
  display: inline-block;
  line-height: 1;
}

.hiw-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #818cf8, #c084fc);
  border: 1px solid #6366f1;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

/* Step 1 — Split layout */
.hiw-step-1 {
  padding: 6rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hiw-step-1-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hiw-step-1-grid h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 1rem 0 1.5rem 0;
  line-height: 1.2;
}

.hiw-step-1-grid p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-body);
}

.hiw-visual {
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.1), rgba(192, 132, 252, 0.05));
  border: 1px solid rgba(129, 140, 248, 0.2);
  border-radius: 1rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hiw-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.1), transparent 70%);
  animation: hiw-pulse 4s ease-in-out infinite;
}

@keyframes hiw-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hiw-visual svg {
  width: 60%;
  height: 60%;
  position: relative;
  z-index: 1;
}

/* Step 2 — Centered narrative */
.hiw-step-2 {
  padding: 6rem 2rem;
  background-color: var(--bg-secondary);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hiw-step-2-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hiw-step-2-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 1rem 0 1.5rem 0;
  line-height: 1.2;
}

.hiw-step-2-narrative {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: var(--text-body);
}

.hiw-support-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.hiw-support-card {
  background: var(--bg-card);
  border: 1px solid rgba(129, 140, 248, 0.15);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: left;
}

.hiw-support-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.hiw-support-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* Step 3 — Asymmetric */
.hiw-step-3 {
  padding: 6rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hiw-step-3-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.hiw-step-3-grid h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 1rem 0 1.5rem 0;
  line-height: 1.2;
}

.hiw-step-3-grid p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-body);
}

.hiw-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hiw-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.hiw-feature-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(192, 132, 252, 0.15));
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}

.hiw-feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--brand-indigo);
  stroke-width: 2;
}

.hiw-feature-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}

.hiw-feature-text p {
  font-size: 0.85rem;
  color: var(--text-body);
  margin: 0;
}

/* Step 4 — Celebratory with emerald accents (LIGHT THEME) */
.hiw-step-4 {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(34, 197, 94, 0.02));
  border-top: 1px solid rgba(34, 197, 94, 0.15);
}

.hiw-step-4-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hiw-step-4-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.08));
  border: 2px solid #22c55e;
  margin: 0 auto 1.5rem auto;
}

.hiw-step-4-badge svg {
  width: 36px;
  height: 36px;
  stroke: #22c55e;
  stroke-width: 2;
}

.hiw-step-4-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 1rem 0 1.5rem 0;
  background: linear-gradient(135deg, #22c55e, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hiw-step-4-narrative {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-body);
}

.hiw-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.hiw-benefit {
  background: var(--bg-card);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.hiw-benefit-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem auto;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw-benefit-icon svg {
  width: 20px;
  height: 20px;
  stroke: #22c55e;
  stroke-width: 2;
}

.hiw-benefit h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.hiw-benefit p {
  font-size: 0.85rem;
  color: var(--text-body);
  margin: 0;
}

/* How It Works CTA */
.hiw-cta {
  padding: 4rem 2rem;
  background-color: var(--bg-secondary);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.hiw-cta h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--text-heading);
}

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

/* ================================================================
   Solutions Page  (sol-)
   ================================================================ */

/* Hero */
.sol-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  padding: 6rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sol-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.sol-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.sol-hero-content h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-heading);
  margin-bottom: 1.25rem;
}

.sol-hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

/* Cards */
.sol-cards {
  padding: 5rem 2.5rem;
  background: var(--bg-primary);
}

.sol-cards-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.sol-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 1rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--bg-card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sol-card:hover {
  transform: translateY(-4px);
  border-color: #818cf8;
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.12);
}

.sol-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.sol-card--company .sol-card-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(129, 140, 248, 0.1));
}

.sol-card--partner .sol-card-icon {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.1));
}

.sol-card--buyer .sol-card-icon {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(192, 132, 252, 0.1));
}

.sol-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.sol-card > p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.sol-benefits {
  margin-bottom: 2rem;
}

.sol-benefits h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.sol-benefit-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.sol-benefit-list li {
  font-size: 0.875rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
}

.sol-benefit-list li::before {
  content: '✓';
  color: var(--brand-indigo);
  font-weight: 700;
  margin-right: 0.625rem;
  font-size: 1rem;
  flex-shrink: 0;
}

.sol-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-indigo);
  text-decoration: none;
  transition: gap 0.3s ease;
}

.sol-card-cta:hover {
  gap: 0.75rem;
}

/* Problem */
.sol-problem {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  padding: 6rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.sol-problem::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.sol-problem-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sol-problem-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
}

.sol-problem-text p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
}

.sol-problem-visual {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.03));
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 1rem;
  padding: 3.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

.sol-problem-visual::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.sol-problem-visual-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.sol-problem-visual-inner svg {
  width: 100%;
  max-width: 280px;
  height: auto;
}

.sol-visual-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
}

/* Bridge */
.sol-bridge {
  background: var(--bg-primary);
  padding: 5rem 2.5rem;
}

.sol-bridge-content {
  max-width: 1280px;
  margin: 0 auto;
}

.sol-bridge-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--text-heading);
  margin-bottom: 3.75rem;
}

.sol-bridge-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}

.sol-bridge-col {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--bg-card-shadow);
}

.sol-bridge-col h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1.25rem;
}

.sol-bridge-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sol-bridge-col li {
  font-size: 0.875rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
}

.sol-bridge-col--before li::before {
  content: '→';
  color: var(--bg-card-border);
  font-weight: 700;
  margin-right: 0.625rem;
  flex-shrink: 0;
}

.sol-bridge-col--after li::before {
  content: '✓';
  color: var(--brand-indigo);
  font-weight: 700;
  margin-right: 0.625rem;
  flex-shrink: 0;
}

.sol-bridge-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--brand-indigo);
}

.sol-bridge-arrow svg {
  width: 3rem;
  height: 3rem;
}

/* CTA */
.sol-cta {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  padding: 6rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sol-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.sol-cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.sol-cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.sol-cta-content p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

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

/* ============================================
   Solution Sub-Pages (shared)
   ============================================ */

.solp-hero {
  padding: 6rem 0 4rem;
}

.solp-hero-content {
  max-width: 700px;
}

.solp-hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.solp-hero .subtitle {
  text-align: left;
}

.solp-hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* ---- Problem section — narrative ---- */
.solp-problem {
  max-width: 720px;
}

.solp-problem h2 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.solp-problem p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.solp-problem ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.solp-problem li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

.solp-problem li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--brand-amber);
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

/* ---- What changes — split layout ---- */
.solp-changes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.solp-changes-text h2 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.solp-changes-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.solp-changes-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solp-changes-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-heading);
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 10px;
}

/* ---- Why teams care — narrative + checklist ---- */
.solp-why {
  max-width: 720px;
}

.solp-why h2 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.solp-why > p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.solp-why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.solp-why-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-heading);
  font-weight: 500;
}

/* ---- Outcomes — horizontal pills ---- */
.solp-outcomes {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.solp-outcomes h2 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 2rem;
}

.solp-outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.solp-outcome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 10px;
  text-align: left;
}

.solp-outcome-icon {
  flex-shrink: 0;
  color: var(--brand-emerald);
}

.solp-outcome span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
}

/* ---- Capabilities — compact list ---- */
.solp-capabilities {
  max-width: 680px;
}

.solp-capabilities h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.solp-capabilities-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.solp-capabilities-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-heading);
}

.solp-cap-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-indigo);
  flex-shrink: 0;
}

/* ---- Why subsections (Sales & Support, Partnerships) ---- */
.solp-why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.solp-why-split-panel h2 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.solp-why-split-panel > p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ============================================
   Pricing V2
   ============================================ */

.pr-v2-hero {
  padding: 6rem 0 4rem;
}

.pr-v2-hero-content {
  max-width: 680px;
}

.pr-v2-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.pr-v2-hero .subtitle {
  text-align: left;
}

.pr-v2-hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* ---- How Pricing Works — text + two component cards ---- */
.pr-v2-how {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
}

.pr-v2-how-text {
  max-width: 640px;
}

.pr-v2-how-text h2 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.pr-v2-how-text p {
  font-size: 1.1rem;
  color: var(--text-body);
}

.pr-v2-how-components {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 780px;
}

.pr-v2-how-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-indigo);
  padding: 0 1.5rem;
  flex-shrink: 0;
}

.pr-v2-how-component {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pr-v2-how-component:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.pr-v2-component-accent {
  height: 4px;
}

.pr-v2-component-accent.indigo { background: linear-gradient(90deg, #6366f1, #818cf8); }
.pr-v2-component-accent.emerald { background: linear-gradient(90deg, #10b981, #34d399); }

.pr-v2-component-inner {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.pr-v2-component-inner h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.pr-v2-component-inner p {
  font-size: 0.9rem;
  color: var(--text-body);
}


/* ---- What Pricing Should Reflect ---- */
.pr-v2-reflects {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.pr-v2-reflects-text h2 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.pr-v2-reflects-text p {
  font-size: 1.05rem;
  color: var(--text-body);
}

.pr-v2-reflects-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pr-v2-reflects-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.pr-v2-reflects-item:hover {
  border-color: rgba(99, 102, 241, 0.25);
}

.pr-v2-reflects-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
}

/* ---- What You Are Paying For ---- */
.pr-v2-included {
  max-width: 800px;
  margin: 0 auto;
}

.pr-v2-included h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.pr-v2-included-intro {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.pr-v2-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pr-v2-included-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 10px;
}

.pr-v2-included-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-heading);
}

/* ---- Why the Model Is Structured This Way ---- */
.pr-v2-why {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.pr-v2-why-text h2 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.pr-v2-why-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.pr-v2-why-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pr-v2-why-value {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-heading);
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 10px;
}

/* ---- Switch Smart Guarantee ---- */
.pr-v2-guarantee {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 14px;
  padding: 3.5rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.pr-v2-guarantee h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pr-v2-guarantee p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ============================================
   Why Figfy V2
   ============================================ */

.wf-v2-hero {
  padding: 6rem 0 4rem;
}

.wf-v2-hero-content {
  max-width: 700px;
}

.wf-v2-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.wf-v2-hero .subtitle {
  text-align: left;
  font-weight: 600;
}

.wf-v2-hero-body {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-top: 0.75rem;
}

.wf-v2-hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* ---- Narrative block (reusable) ---- */
.wf-v2-narrative {
  max-width: 680px;
  margin: 0 auto;
}

.wf-v2-narrative h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.wf-v2-narrative-body p {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ---- Combined model — text + cards ---- */
.wf-v2-combined {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.wf-v2-combined-text h2 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.wf-v2-combined-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.wf-v2-combined-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wf-v2-combined-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.wf-v2-combined-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.wf-v2-card-accent {
  height: 4px;
}

.wf-v2-card-accent.indigo { background: linear-gradient(90deg, #6366f1, #818cf8); }
.wf-v2-card-accent.amber { background: linear-gradient(90deg, #f59e0b, #fbbf24); }

.wf-v2-card-inner {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.wf-v2-card-inner h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.wf-v2-card-inner p {
  font-size: 0.9rem;
  color: var(--text-body);
}

.wf-v2-combined-bottom {
  grid-column: 1 / -1;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ---- Directories insufficient — split with X-list ---- */
.wf-v2-directories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.wf-v2-directories-text h2 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.wf-v2-directories-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.wf-v2-directories-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.wf-v2-directories-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.wf-v2-directories-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-heading);
  font-weight: 500;
}

.wf-v2-directories-callout {
  font-size: 0.95rem;
  color: var(--text-heading);
  font-weight: 600;
  font-style: italic;
  padding: 1.25rem;
  background: rgba(239, 68, 68, 0.05);
  border-left: 3px solid #ef4444;
  border-radius: 0.5rem;
}

/* ---- Choose Figfy — 4-item grid ---- */
.wf-v2-choose-header {
  max-width: 720px;
  margin-bottom: 3rem;
}

.wf-v2-choose-header h2 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
}

.wf-v2-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.wf-v2-choose-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  transition: all 0.3s ease;
}

.wf-v2-choose-item:hover {
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.wf-v2-choose-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
}

.wf-v2-choose-icon svg {
  width: 100%;
  height: 100%;
}

.wf-v2-choose-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.wf-v2-choose-item p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ---- Compare — 4 short cards ---- */
.wf-v2-compare-header {
  margin-bottom: 2.5rem;
}

.wf-v2-compare-header h2 {
  font-size: 2rem;
  font-weight: 900;
}

.wf-v2-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.wf-v2-compare-item {
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
}

.wf-v2-compare-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.wf-v2-compare-item p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ---- Uniquely Positioned ---- */
.wf-v2-positioned {
  max-width: 720px;
  margin: 0 auto;
}

.wf-v2-positioned h2 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.wf-v2-positioned-intro {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.wf-v2-positioned-assets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.wf-v2-asset {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 10px;
}

.wf-v2-asset span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
}

.wf-v2-positioned-bottom {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ---- What Changes — before/after split ---- */
.wf-v2-changes-header {
  margin-bottom: 2.5rem;
}

.wf-v2-changes-header h2 {
  font-size: 2rem;
  font-weight: 900;
}

.wf-v2-changes-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.wf-v2-changes-before,
.wf-v2-changes-after {
  padding: 2rem;
  border-radius: 14px;
}

.wf-v2-changes-before {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.wf-v2-changes-after {
  background: rgba(34, 197, 94, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.wf-v2-changes-before h3 {
  color: #dc2626;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.wf-v2-changes-after h3 {
  color: var(--brand-emerald);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.wf-v2-changes-before p,
.wf-v2-changes-after p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

.wf-v2-changes-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.wf-v2-changes-points ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wf-v2-changes-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-heading);
  font-weight: 500;
}

/* ============================================
   How It Works V2
   ============================================ */

.hiw-v2-hero {
  padding: 6rem 0 4rem;
}

.hiw-v2-hero-content {
  max-width: 700px;
}

.hiw-v2-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hiw-v2-hero .subtitle {
  text-align: left;
  font-weight: 600;
}

.hiw-v2-hero-body {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-top: 0.75rem;
}

.hiw-v2-hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* ---- Operating Model — text + two path cards ---- */
.hiw-v2-model {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hiw-v2-model-text h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hiw-v2-model-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.hiw-v2-model-paths {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hiw-v2-model-path {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hiw-v2-model-path:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.hiw-v2-path-accent {
  height: 4px;
}

.hiw-v2-path-accent.indigo {
  background: linear-gradient(90deg, #6366f1, #818cf8);
}

.hiw-v2-path-accent.amber {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.hiw-v2-path-content {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.hiw-v2-path-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.hiw-v2-path-content p {
  font-size: 0.9rem;
  color: var(--text-body);
}

/* ---- Split layout (partners, etc.) ---- */
.hiw-v2-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.hiw-v2-split-text h2 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hiw-v2-split-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
}

.hiw-v2-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hiw-v2-check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-heading);
  font-weight: 500;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.hiw-v2-check-list li:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

/* ---- Customer Experience — two-path cards ---- */
.hiw-v2-cx-header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.hiw-v2-cx-header h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.hiw-v2-cx-header p {
  font-size: 1.05rem;
  color: var(--text-body);
}

.hiw-v2-cx-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.hiw-v2-cx-path {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  transition: all 0.3s ease;
}

.hiw-v2-cx-path:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.hiw-v2-cx-path-accent {
  height: 4px;
}

.hiw-v2-cx-path-accent.indigo {
  background: linear-gradient(90deg, #6366f1, #818cf8);
}

.hiw-v2-cx-path-accent.amber {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.hiw-v2-cx-path h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2rem 2rem 0.5rem;
}

.hiw-v2-cx-path p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0 2rem 2rem;
}

/* ---- Control grid ---- */
.hiw-v2-control-header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.hiw-v2-control-header h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.hiw-v2-control-header p {
  font-size: 1.05rem;
  color: var(--text-body);
}

.hiw-v2-control-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hiw-v2-control-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.hiw-v2-control-item:hover {
  border-color: rgba(99, 102, 241, 0.25);
}

.hiw-v2-control-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
}

/* ---- Gains list ---- */
.hiw-v2-gains {
  max-width: 720px;
  margin: 0 auto;
}

.hiw-v2-gains h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.hiw-v2-gains-intro {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hiw-v2-gains-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hiw-v2-gains-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: var(--text-heading);
  font-weight: 500;
}

/* ============================================
   About V2
   ============================================ */

.about-v2-hero {
  padding: 6rem 0 4rem;
}

.about-v2-hero-content {
  max-width: 680px;
}

.about-v2-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.about-v2-hero .subtitle {
  text-align: left;
}

.about-v2-hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* ---- Why We Exist — narrative block ---- */
.about-v2-narrative {
  max-width: 680px;
  margin: 0 auto;
}

.about-v2-narrative h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.about-v2-narrative-body p {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-v2-narrative-body p:last-child {
  margin-bottom: 0;
}

/* ---- What We Believe — choice layout ---- */
.about-v2-believe {
  max-width: 720px;
  margin: 0 auto;
}

.about-v2-believe-text h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.about-v2-believe-text p {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.7;
}

.about-v2-believe-choices {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.about-v2-believe-choice {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
}

.about-v2-believe-choice span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.4;
}

.about-v2-believe-or {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

.about-v2-believe-bottom p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

/* ---- Point of View — two-column essay ---- */
.about-v2-pov {
  max-width: 960px;
  margin: 0 auto;
}

.about-v2-pov-header {
  margin-bottom: 2.5rem;
}

.about-v2-pov-header h2 {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #111827 30%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-v2-pov-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.about-v2-pov-col p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ---- What Figfy Does — inline items ---- */
.about-v2-does {
  max-width: 720px;
  margin: 0 auto;
}

.about-v2-does h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.about-v2-does-intro {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.about-v2-does-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about-v2-does-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.about-v2-does-item:hover {
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.about-v2-does-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.about-v2-does-icon svg {
  width: 100%;
  height: 100%;
}

.about-v2-does-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.about-v2-does-item p {
  font-size: 0.9rem;
  color: var(--text-body);
}

.about-v2-does-result {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ---- Who Figfy Is For ---- */
.about-v2-who {
  max-width: 680px;
  margin: 0 auto;
}

.about-v2-who h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.about-v2-who-intro {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.about-v2-who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-v2-who-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: var(--text-heading);
  font-weight: 500;
}

.about-v2-who-focus {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ---- Close belief line ---- */
.about-v2-close-belief {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.75rem;
}

/* ============================================
   Solutions Index V2
   ============================================ */

/* ---- Hero ---- */
.sol-v2-hero {
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.sol-v2-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.sol-v2-hero-content {
  max-width: 700px;
}

.sol-v2-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.sol-v2-hero .subtitle {
  text-align: left;
}

.sol-v2-hero-explore {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-top: 0.75rem;
}

.sol-v2-hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* ---- Two Ways to Explore — Split ---- */
.sol-v2-explore-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.sol-v2-explore-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.sol-v2-explore-option {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 14px;
  padding: 2.5rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.sol-v2-explore-option:hover {
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.sol-v2-explore-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
}

.sol-v2-explore-icon svg {
  width: 100%;
  height: 100%;
}

.sol-v2-explore-option h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-heading);
}

.sol-v2-explore-option p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ---- Section Headers ---- */
.sol-v2-section-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.sol-v2-section-header h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.sol-v2-section-header p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ---- Cards Grid ---- */
.sol-v2-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.sol-v2-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.sol-v2-card:hover {
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.sol-v2-card-accent {
  height: 4px;
}

.sol-v2-card-accent.indigo {
  background: linear-gradient(90deg, #6366f1, #818cf8);
}

.sol-v2-card-accent.emerald {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.sol-v2-card-content {
  padding: 2rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sol-v2-card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.25rem;
}

.sol-v2-card-icon svg {
  width: 100%;
  height: 100%;
}

.sol-v2-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.sol-v2-card-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.sol-v2-card-body {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  flex: 1;
}

.sol-v2-card-cta {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-indigo);
  transition: padding-left 0.2s ease;
}

.sol-v2-card:hover .sol-v2-card-cta {
  padding-left: 4px;
}

/* ---- The Common Thread ---- */
.sol-v2-thread {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.sol-v2-thread h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.sol-v2-thread > p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
}

.sol-v2-thread-pillars {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0;
}

.sol-v2-thread-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  max-width: 220px;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-heading);
  text-align: center;
  line-height: 1.4;
}

.sol-v2-thread-closing {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
   Homepage V2 — New Sections
   ============================================ */

/* ---- Hero Bullets ---- */
.hero-bullets {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.5;
}

.hero-bullet-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--brand-emerald);
}

/* ---- V2 Problem Grid ---- */
.v2-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.v2-problem-panel {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 14px;
  padding: 2.5rem;
}

.v2-problem-panel h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.v2-problem-intro {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.v2-problem-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.v2-problem-item:first-of-type {
  border-top: none;
}

.v2-problem-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-top: 2px;
}

.v2-problem-icon svg {
  width: 100%;
  height: 100%;
}

.v2-problem-item h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-heading);
}

.v2-problem-item p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ---- V2 Combined Solution ---- */
.v2-combined-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.v2-combined-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.v2-combined-panels {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.v2-combined-panel {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.v2-combined-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.v2-panel-accent {
  height: 4px;
}

.v2-panel-accent.indigo {
  background: linear-gradient(90deg, #6366f1, #818cf8);
}

.v2-panel-accent.amber {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.v2-panel-content {
  padding: 2.5rem;
}

.v2-panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.v2-panel-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-heading);
}

.v2-panel-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

.v2-combined-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}

.v2-combined-plus span {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-muted);
}

.v2-combined-bottom {
  text-align: center;
  max-width: 680px;
  margin: 3rem auto 0;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ---- V2 Marketplace Matters — Asymmetric Split ---- */
.v2-marketplace-matters {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.v2-mm-text h2 {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.v2-mm-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.v2-mm-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.v2-mm-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.v2-mm-feature:hover {
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.08);
}

.v2-mm-feature svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.v2-mm-feature span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
}

/* ---- V2 Steps (How It Works) — Stacked ---- */
.v2-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.v2-steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, #6366f1, #818cf8, #c084fc);
  border-radius: 2px;
}

.v2-step {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.v2-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.v2-step-number {
  width: 48px;
  height: 48px;
  background: var(--bg-primary);
  border: 2px solid var(--brand-indigo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brand-indigo);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.v2-step:hover .v2-step-number {
  background: linear-gradient(135deg, #6366f1, #818cf8);
  color: white;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.v2-step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-heading);
}

.v2-step-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ---- V2 Solutions Grid ---- */
.v2-solutions-header {
  text-align: center;
  margin-bottom: 3rem;
}

.v2-solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.v2-solution-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 14px;
  padding: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.v2-solution-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.v2-solution-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.v2-solution-card.visible:hover {
  transform: translateY(-4px);
}

.v2-solution-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
}

.v2-solution-icon svg {
  width: 100%;
  height: 100%;
}

.v2-solution-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-heading);
}

.v2-solution-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  flex: 1;
}

.v2-solution-link {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-indigo);
  transition: padding-left 0.2s ease;
}

.v2-solution-card:hover .v2-solution-link {
  padding-left: 4px;
}

/* ---- V2 Why Figfy ---- */
.v2-why-header {
  text-align: center;
  margin-bottom: 3rem;
}

.v2-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.v2-why-grid > :nth-child(4),
.v2-why-grid > :nth-child(5) {
  /* Center the last row of 2 items under a 3-col grid */
}

.v2-why-item {
  padding: 2rem;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  transition: all 0.3s ease;
}

.v2-why-item:hover {
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.v2-why-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.25rem;
}

.v2-why-icon svg {
  width: 100%;
  height: 100%;
}

.v2-why-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-heading);
}

.v2-why-item p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* TODO: mobile hamburger menu */
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .section-lg {
    padding: var(--space-2xl) 0;
  }

  /* Hero responsive */
  .hero {
    padding: 4rem 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero .subtitle {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  /* Problem section responsive */
  .equation-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .eq-plus-divider {
    padding: 1.5rem 0;
  }

  .eq-plus-divider::before {
    display: none;
  }

  .eq-plus-symbol {
    font-size: 2.5rem;
  }

  .problem-header h2 {
    font-size: 2rem;
  }

  .eq-block {
    padding: 2rem 1.5rem;
  }

  .converge-visual {
    display: none;
  }

  /* Shift section responsive */
  .shift-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .shift-intro h2 {
    font-size: 2rem;
  }

  /* Stakeholder cards responsive */
  .stakeholder-cards {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .stakeholder-card-customers,
  .stakeholder-card-partners,
  .stakeholder-card-company {
    grid-column: 1;
    grid-row: auto;
  }

  /* Timeline responsive */
  .timeline {
    flex-direction: column;
    gap: 2rem;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 20px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .timeline-step {
    padding-left: 3.5rem;
    padding-right: 0;
  }

  .timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
  }

  /* Credibility responsive */
  .experience-number {
    font-size: 2.2rem;
    min-width: 100px;
  }

  .guarantee-card {
    flex-direction: column;
    text-align: center;
  }

  /* General typography responsive */
  h2 {
    font-size: 1.8rem;
  }

  .final-cta h2 {
    font-size: 2rem;
  }

  /* About page responsive */
  .about-hero {
    padding: 4rem 1.5rem;
  }

  .about-hero h1 {
    font-size: 2.25rem;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }

  .about-problem,
  .about-approach,
  .about-values,
  .about-cta {
    padding: 3.5rem 1.5rem;
  }

  .about-section-header h2 {
    font-size: 1.75rem;
  }

  .about-problem-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-approach-pillars {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-cta h2 {
    font-size: 1.75rem;
  }

  .about-cta-buttons {
    flex-direction: column;
  }

  .about-cta-buttons .btn {
    width: 100%;
  }

  /* Features page responsive */
  .features-hero h1 {
    font-size: 2.25rem;
  }

  .features-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .features-toc {
    display: none;
  }

  .features-toc-mobile {
    display: block;
  }

  .feature-split,
  .feature-split.reversed {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }

  .feature-list-horizontal {
    flex-direction: column;
  }

  .feature-three-col {
    grid-template-columns: 1fr;
  }

  .feature-section:nth-child(even) {
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .features-cta-buttons {
    flex-direction: column;
  }

  /* How It Works responsive */
  .hiw-hero {
    padding: 4rem 2rem;
  }

  .hiw-step-1-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hiw-support-cards {
    grid-template-columns: 1fr;
  }

  .hiw-step-3-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hiw-benefits-grid {
    grid-template-columns: 1fr;
  }

  .hiw-step-1,
  .hiw-step-2,
  .hiw-step-3,
  .hiw-step-4 {
    padding: 3rem 2rem;
  }

  .hiw-cta-buttons {
    flex-direction: column;
  }

  .hiw-cta-buttons .btn {
    width: 100%;
  }

  /* Solutions responsive */
  .sol-hero {
    padding: 4rem 1.5rem;
  }

  .sol-cards {
    padding: 3.5rem 1.5rem;
  }

  .sol-cards-grid {
    grid-template-columns: 1fr;
  }

  .sol-problem {
    padding: 4rem 1.5rem;
  }

  .sol-problem-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sol-bridge {
    padding: 3.5rem 1.5rem;
  }

  .sol-bridge-flow {
    grid-template-columns: 1fr;
  }

  .sol-bridge-arrow {
    transform: rotate(90deg);
  }

  .sol-cta {
    padding: 4rem 1.5rem;
  }

  .sol-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .sol-cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Solution sub-pages responsive */
  .solp-hero h1 {
    font-size: 2rem;
  }

  .solp-hero-buttons {
    flex-direction: column;
  }

  .solp-changes {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .solp-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .solp-why-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Pricing V2 responsive */
  .pr-v2-hero h1 {
    font-size: 2.2rem;
  }

  .pr-v2-hero-buttons {
    flex-direction: column;
  }

  .pr-v2-how {
    gap: 2rem;
  }

  .pr-v2-how-components {
    flex-direction: column;
    gap: 0;
  }

  .pr-v2-how-plus {
    padding: 0.75rem 0;
    font-size: 1.5rem;
  }

  .pr-v2-reflects {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pr-v2-included-grid {
    grid-template-columns: 1fr;
  }

  .pr-v2-why {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pr-v2-guarantee {
    padding: 2rem;
  }

  /* Why Figfy V2 responsive */
  .wf-v2-hero h1 {
    font-size: 2.2rem;
  }

  .wf-v2-hero-buttons {
    flex-direction: column;
  }

  .wf-v2-combined {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wf-v2-directories {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wf-v2-choose-grid {
    grid-template-columns: 1fr;
  }

  .wf-v2-compare-grid {
    grid-template-columns: 1fr;
  }

  .wf-v2-positioned-assets {
    grid-template-columns: 1fr;
  }

  .wf-v2-changes-split {
    grid-template-columns: 1fr;
  }

  /* How It Works V2 responsive */
  .hiw-v2-hero h1 {
    font-size: 2.2rem;
  }

  .hiw-v2-hero-buttons {
    flex-direction: column;
  }

  .hiw-v2-model {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hiw-v2-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hiw-v2-cx-paths {
    grid-template-columns: 1fr;
  }

  .hiw-v2-control-grid {
    grid-template-columns: 1fr;
  }

  /* About V2 responsive */
  .about-v2-hero h1 {
    font-size: 2.2rem;
  }

  .about-v2-hero-buttons {
    flex-direction: column;
  }

  .about-v2-believe-choices {
    flex-direction: column;
    gap: 1rem;
  }

  .about-v2-believe-or {
    text-align: center;
  }

  .about-v2-pov-header h2 {
    font-size: 1.8rem;
  }

  .about-v2-pov-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Solutions Index V2 responsive */
  .sol-v2-hero h1 {
    font-size: 2.2rem;
  }

  .sol-v2-hero-buttons {
    flex-direction: column;
  }

  .sol-v2-explore-split {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .sol-v2-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .sol-v2-section-header h2 {
    font-size: 1.8rem;
  }

  .sol-v2-thread-pillars {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .sol-v2-thread-pillar {
    max-width: 100%;
  }

  /* V2 Problem grid responsive */
  .v2-problem-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* V2 Combined solution responsive */
  .v2-combined-header h2 {
    font-size: 1.8rem;
  }

  .v2-combined-panels {
    flex-direction: column;
    gap: 0;
  }

  .v2-combined-plus {
    padding: 1rem 0;
  }

  .v2-combined-plus span {
    font-size: 1.5rem;
  }

  /* V2 Marketplace matters responsive */
  .v2-marketplace-matters {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .v2-mm-text h2 {
    font-size: 1.8rem;
  }

  /* V2 Steps responsive */
  .v2-steps {
    margin-top: 2.5rem;
  }

  .v2-steps::before {
    left: 23px;
  }

  /* V2 Solutions responsive */
  .v2-solutions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* V2 Why Figfy responsive */
  .v2-why-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .v2-solutions-grid {
    grid-template-columns: 1fr;
  }
}
